Tool for villager enchantment trading

This is a tool for villager enchantment trading which shows the best price and best enchants for gear.

It is a web app that runs in the browser. It is written in HTML, CSS, and JavaScript.




Usage

  1. Open the website.
  2. Search the enchantment / category (WIP).
  3. Or scroll the website and open any of the categories.



Contributing

Larger changes(html, css, js)

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Editing the json file

  • Edit the json file in the browser.
  • Or fork the repo, edit the json file, and create a pull request.



Adding a new enchantment

Template


{
    "icon": "ICON_TYPE",
    "title": "TITLE_FOR_DISPLAY",
    "enchant":{
        "name": "ENCHANTMENT_NAME",
        "lvl": ENCHANTMENT_LEVEL,
        "cost": ENCANTMENT_COST_IN_EMERALDS
    }
}



Example


{
    "icon": "rod",
    "title": "Best fishing rod",
    "enchant": {
        "name": "Lure",
        "lvl": 3,
        "cost": 12
    }
}

Shows the following:


image




You can add more enchant to the same category by using the same title.

{
    "icon": "rod",
    "title": "Best fishing rod",
    "enchant": {
        "name": "Lure",
        "lvl": 3,
        "cost": 12
    }
},
{
    "icon": "rod",
    "title": "Best fishing rod",
    "enchant": {
        "name": "Mending",
        "lvl": 0,
        "cost": 14
    }
}

image




Values for enchantments


ENCHANTMENT LEVEL RETURN VALUE
Protection 1 1
Protection 0 Will display nothing e.g Mending doesnt have a level
ENCHANTMENT COST RETURN VALUE
Protection 1 1
Protection >=0 Will display ' ? ' e.g the cost is not know yet



Icon types


ICON-TYPE ICON CSS CLASS
helmet platebody .helmet
platebody platebody .platebody
leggings platebody .leggings
boots platebody .boots
bow platebody .bow
crossbow platebody .crossbow
trident platebody .trident
rod platebody .rod
misc platebody .misc
sword platebody .sword
tools platebody .tools

License

MIT