Wiki

Clone wiki

Loot Overhaul / Loot Conditions - Tool Type

Loot Conditions - Tool Type

Structure:

Property Type Description
type String or String List The tool types to check for. Known values are pickaxe, axe, shovel, hoe, sword, shears, and bow. It's possible for mods to add new ones.

Description:

Changes the drops based on tool type killed or harvested with.

Example Usage: Single type

"conditions": [
    {
        "condition": "lootoverhaul:tool_type",
        "type": "shears"
    }
]
Example Usage: Array
"conditions": [
    {
        "condition": "lootoverhaul:tool_type",
        "type": [
            "pickaxe",
            "axe"
        ]
    }
]

Previous - Silk Touch Back Next - Weather

Updated