Loot

You find & create loot-tables in the 'loot' folder.

Example

{
    "name": "Tutorial Loot",
    "rarity": 1,
    "maxPicked": 2,
    "minPicked": 1,
    "Loot": [
    {
        "type": "stone",
        "maxAmount": 3,
        "slotTypes": "STORAGE"
    },
    {    "type": "golden_boots",
         "lore": ["Amenhotep's Soul\nSoul of the king"],
         "enchantments": [{
            "enchantment": "binding_curse",
            "minLevel": 1,
            "maxLevel": 1
        }]
    }
}

name

The name of this loot table

rarity

The rarity as in 1 in X chance

maxPicked

The maximum amount of loot that can be picked in this table at a time.

minPicked

The minimum amount of loot that can be picked in this table at a time.

type

This is the item or block type. Only materials such as diamond_sword or dirt are acceptable

maxAmount

The maximum amount of this loot

minAmount

The minimum amount of this loot

Last updated