Files
minecraft-bedrock-json-schemas/source/behaviour/loot_tables/conditions/random_chance_with_looting.json
2021-03-21 15:18:38 +01:00

19 lines
821 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.condition.random_chance_with_looting",
"type": "object",
"additionalProperties": false,
"description": "Sets a random chance of the specified value. Looting enchantment increase the random chance multiplier.",
"title": "Random Chance With Looting",
"properties": {
"condition": { "type": "string", "title": "Condition", "description": "TODO" },
"chance": { "type": "number", "default": 0, "description": "The random chance of the value.", "title": "Chance" },
"looting_multiplier": {
"type": "number",
"default": 0,
"description": "The multiplier for the chance if the target entity has the looting enchant that affects the actor.",
"title": "Looting Multiplier"
}
}
}