* update loot table schemas * remove entity_properties and use new int_or_range definition * remove entity_properties from conditions.json as well
20 lines
544 B
JSON
20 lines
544 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.condition.bool_property",
|
|
"type": "object",
|
|
"title": "Bool Property",
|
|
"description": "Checks whether a boolean property matches the requested value.",
|
|
"additionalProperties": false,
|
|
"required": ["condition", "domain", "value"],
|
|
"properties": {
|
|
"condition": { "const": "bool_property" },
|
|
"domain": {
|
|
"type": "string",
|
|
"description": "Property domain identifier."
|
|
},
|
|
"value": {
|
|
"type": "boolean",
|
|
"description": "Expected boolean value."
|
|
}
|
|
}
|
|
}
|