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

21 lines
956 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.condition.entity_properties",
2020-11-01 17:22:42 +01:00
"type": "object",
"additionalProperties": false,
"description": "Returns true if the actor properties defined were executed.",
2021-03-21 15:18:38 +01:00
"title": "Entity Properties",
2020-11-01 17:22:42 +01:00
"properties": {
2021-03-21 15:18:38 +01:00
"condition": { "type": "string", "title": "Condition", "description": "TODO" },
"entity": { "type": "string", "default": "this", "description": "The entity to test. The value must be only \"this\".", "title": "Entity" },
2020-11-01 17:22:42 +01:00
"properties": {
"type": "object",
"default": {},
"description": "The entity's properties. \"on_fire\", \"on_ground\" is used for now.",
"title": "Properties",
"additionalProperties": false,
2021-03-21 15:18:38 +01:00
"properties": { "on_fire": { "title": "On Fire", "description": "TODO", "type": "boolean" }, "on_ground": { "title": "On Fire", "description": "TODO", "type": "boolean" } }
2020-11-01 17:22:42 +01:00
}
}
}