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

13 lines
641 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$id": "blockception.minecraft.behavior.condition.random_chance",
"type": "object",
"additionalProperties": false,
"description": "Sets a random chance of the specified value.",
"title": "Random Chance",
"properties": {
2022-07-22 19:41:04 +02:00
"condition": { "type": "string", "title": "Condition", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED" },
"chance": { "type": "number", "default": 0, "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "title": "Chance" },
2021-07-01 16:42:21 +02:00
"max_chance": { "type": "number", "default": 0, "description": "The maximum random chance value allowed.", "title": "Maximum Chance" }
2021-06-06 10:07:19 +00:00
}
}