Loot Conditions Dimension - Tmtravlr/LootOverhaul GitHub Wiki
Property | Type | Description |
---|---|---|
dimension | String or String List | The dimension names. (Optional, must have this or dimension_id) |
dimension_id | Integer or Integer List | The dimension number ids. (Optional, must have this or dimension) |
Will pass if inside one of these dimensions.
Example Usage:
"conditions": [
{
"condition": "lootoverhaul:dimension",
"dimension": [
"overworld",
"the_end"
]
}
]
Or:
"conditions": [
{
"condition": "lootoverhaul:dimension",
"dimension": "the_nether"
}
]
And it is also compatible with dimension ids:
"conditions": [
{
"condition": "lootoverhaul:dimension",
"dimension_id": [
0,
1
]
}
]
Or:
"conditions": [
{
"condition": "lootoverhaul:dimension",
"dimension_id": -1
}
]
Previous - Difficulty | Back | Next - Dimension Has Sky |
---|