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

13 lines
558 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.has_mark_variant",
2020-11-01 17:22:42 +01:00
"type": "object",
"additionalProperties": false,
"description": "Returns the condition true if the actor's mark variant is matched to the value.",
2021-03-21 15:18:38 +01:00
"title": "Has Mark Variant",
2020-11-01 17:22:42 +01:00
"properties": {
2021-03-21 15:18:38 +01:00
"condition": { "type": "string", "title": "Condition", "description": "TODO" },
"value": { "type": "integer", "default": "0", "description": "Tests for the actor's mark variant (if it has one)", "title": "Value" }
2020-11-01 17:22:42 +01:00
}
}