forked from Greymerk/minecraft-roguelike
-
Notifications
You must be signed in to change notification settings - Fork 10
Equipment Loot Items
Fnar edited this page Jul 7, 2021
·
5 revisions
These are the common equipment pieces which may or may not be enchanted. Quality and enchantment levels are influenced by the specified level.
- Object
- "type": String - "armour" or "weapon" or "tool"
- "level": Integer - Required, Accepts values inclusive [0-4], representing the Dungeon level.
- "equipment": String - Optional, one Equipment as a String. Chooses one at random if left absent.
- "quality": String - Optional, one Quality as a String. Chooses one at random if left absent.
- "ench": Determines whether this piece of equipment might be enchanted at the given level
- Boolean - Optional, default true
- enchanted at Minecraft Levels 0,5], [1,10], [5,19], [15,29], [30,40 respectively for provided levels [0,1,2,3,4] (usually mirrors dungeon depth level)
{"type": "armour", "level": 0}{"type": "weapon", "level": 0, "ench": true}{"type": "tool", "level": 0, "quality": "wood"}