* - Added VV * - Updated block culling * - Added remove_in_peaceful * - Added leashable_to * - Updated leashable * - Added body_rotation_always_follows_head * - Added particle count to destruction_particles * - Added uv_lock * - Added liquid_settings to jigsaws * - Added missing jigsaw fields * - Added random_offset * - Updated color grading description for one field * - Added damaged_by_entity loot table condition * - Added y offset to interact > spawn_items * - Added is_riding_self filter * - Added hides_player_location to wearable * - Added henyey_greenstein_g to fog * - Added block component movable * - Removed internal markers for VV client biome components * - Removed experimental marker for air controlled
52 lines
2.2 KiB
JSON
52 lines
2.2 KiB
JSON
{
|
|
"$id": "blockception.minecraft.behavior.loot_tables.conditions",
|
|
"description": "A minecraft loot table condition.",
|
|
"title": "Condition",
|
|
"allOf": [
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "entity_properties" } } },
|
|
"then": { "$ref": "./conditions/entity_properties.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "has_mark_variant" } } },
|
|
"then": { "$ref": "./conditions/has_mark_variant.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "match_tool" } } },
|
|
"then": { "$ref": "./conditions/match_tool.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "killed_by_player" } } },
|
|
"then": { "$ref": "./conditions/killed_by_player.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "killed_by_player_or_pets" } } },
|
|
"then": { "$ref": "./conditions/killed_by_player_or_pets.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "killed_by_entity" } } },
|
|
"then": { "$ref": "./conditions/killed_by_entity.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "damaged_by_entity" } } },
|
|
"then": { "$ref": "./conditions/damaged_by_entity.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "random_chance" } } },
|
|
"then": { "$ref": "./conditions/random_chance.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "random_chance_with_looting" } } },
|
|
"then": { "$ref": "./conditions/random_chance_with_looting.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "random_difficulty_chance" } } },
|
|
"then": { "$ref": "./conditions/random_difficulty_chance.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "condition": { "type": "string", "const": "random_regional_difficulty_chance" } } },
|
|
"then": { "$ref": "./conditions/random_regional_difficulty_chance.json" }
|
|
}
|
|
]
|
|
}
|