Loot Conditions And - Tmtravlr/LootOverhaul GitHub Wiki
Property | Type | Description |
---|---|---|
conditions | Condition Object List | The conditions to check; all must pass. |
Will pass of all if its conditions pass
Example Usage: (will pass if in a 'sandy' biome and it's clear out)
"conditions": [
{
"condition": "lootoverhaul:and",
"conditions": [
{
"condition": "lootoverhaul:in_biome_type",
"biome_types": [
"SANDY"
]
},
{
"condition": "lootoverhaul:weather",
"weather": "CLEAR"
}
]
}
]
Previous - Not | Back | Next - Or |
---|