diff --git a/source/behavior/loot_tables/conditions/entity_properties.json b/source/behavior/loot_tables/conditions/entity_properties.json index 047cd4fa..d9a008d5 100644 --- a/source/behavior/loot_tables/conditions/entity_properties.json +++ b/source/behavior/loot_tables/conditions/entity_properties.json @@ -5,7 +5,7 @@ "description": "Returns true if the actor properties defined were executed.", "title": "Entity Properties", "properties": { - "condition": { "type": "string", "title": "Condition", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }, + "condition": { "type": "string", "title": "Condition", "description": "Returns true if the actor properties defined were executed.", "$comment": "UNDOCUMENTED" }, "entity": { "type": "string", "default": "this", "description": "The entity to test. The value must be only `this`.", "title": "Entity" }, "properties": { "type": "object", @@ -14,8 +14,18 @@ "title": "Properties", "additionalProperties": false, "properties": { - "on_fire": { "title": "On Fire", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" }, - "on_ground": { "title": "On Fire", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" } + "on_fire": { + "title": "On Fire", + "description": "Checks if the entity is on fire or not", + "$comment": "UNDOCUMENTED", + "type": "boolean" + }, + "on_ground": { + "title": "On Ground", + "description": "Checks if the entity is on the ground or not", + "$comment": "UNDOCUMENTED", + "type": "boolean" + } } } } diff --git a/source/behavior/loot_tables/conditions/has_mark_variant.json b/source/behavior/loot_tables/conditions/has_mark_variant.json index 10d82138..7a2770a2 100644 --- a/source/behavior/loot_tables/conditions/has_mark_variant.json +++ b/source/behavior/loot_tables/conditions/has_mark_variant.json @@ -5,7 +5,17 @@ "description": "Returns the condition true if the actor's mark variant is matched to the value.", "title": "Has Mark Variant", "properties": { - "condition": { "type": "string", "title": "Condition", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }, - "value": { "type": "integer", "default": "0", "description": "Tests for the actor's mark variant (if it has one)", "title": "Value" } + "condition": { + "type": "string", + "title": "Condition", + "description": "Returns the condition true if the actor's mark variant is matched to the value.", + "$comment": "UNDOCUMENTED" + }, + "value": { + "type": "integer", + "default": "0", + "description": "Tests for the actor's mark variant (if it has one)", + "title": "Value" + } } }