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