Wiki

Clone wiki

Loot Overhaul / Loot Conditions - Weather

Loot Conditions - Weather

Structure:

Property Type Description
weather String or String List The weather to check for. Valid options are CLEAR, OVERCAST (like in a desert when it rains elsewhere), RAIN, SNOW, and THUNDER

Description:

Will pass if this is the weather at the loot's position.

Example Usage: (only applies if in rainy, snowy, or stormy weather)

"conditions": [
    {
        "condition": "lootoverhaul:weather",
        "weather": [
            "RAIN",
            "SNOW",
            "THUNDER"
        ]
    }
]
Or you don't need an array for just one value: (only clear weather)
"conditions": [
    {
        "condition": "lootoverhaul:weather",
        "weather": "CLEAR"
    }
]

Previous - Tool Type Back No Next

Updated