Files
minecraft-bedrock-json-schemas/source/behavior/loot_tables/conditions/entity_properties.json

23 lines
1.0 KiB
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$id": "blockception.minecraft.behavior.condition.entity_properties",
"type": "object",
"additionalProperties": false,
"description": "Returns true if the actor properties defined were executed.",
"title": "Entity Properties",
"properties": {
2021-07-01 16:37:41 +02:00
"condition": { "type": "string", "title": "Condition", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
2021-06-19 15:05:41 +02:00
"entity": { "type": "string", "default": "this", "description": "The entity to test. The value must be only `this`.", "title": "Entity" },
2021-06-06 10:07:19 +00:00
"properties": {
"type": "object",
"default": {},
2021-06-19 15:05:41 +02:00
"description": "The entity's properties. `on_fire`, `on_ground` is used for now.",
2021-06-06 10:07:19 +00:00
"title": "Properties",
"additionalProperties": false,
"properties": {
2021-07-01 16:37:41 +02:00
"on_fire": { "title": "On Fire", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" },
"on_ground": { "title": "On Fire", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" }
2021-06-06 10:07:19 +00:00
}
}
}
}