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

16 lines
421 B
JSON
Raw Normal View History

{
"$id": "blockception.minecraft.behavior.condition.has_variant",
"type": "object",
"title": "Has Variant",
"description": "Checks the variant value of the current actor.",
"additionalProperties": false,
"required": ["condition", "variant"],
"properties": {
"condition": { "const": "has_variant" },
"value": {
"type": "integer",
"description": "Expected variant identifier."
}
}
}