Update loot table schemas (#391)
* update loot table schemas * remove entity_properties and use new int_or_range definition * remove entity_properties from conditions.json as well
This commit is contained in:
15
source/behavior/loot_tables/conditions/has_property.json
Normal file
15
source/behavior/loot_tables/conditions/has_property.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.condition.has_property",
|
||||
"type": "object",
|
||||
"title": "Has Property",
|
||||
"description": "Checks whether the current actor exposes a property in the given domain.",
|
||||
"additionalProperties": false,
|
||||
"required": ["condition", "domain"],
|
||||
"properties": {
|
||||
"condition": { "const": "has_property" },
|
||||
"domain": {
|
||||
"type": "string",
|
||||
"description": "Property domain identifier."
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user