Files
minecraft-bedrock-json-schemas/source/behavior/loot_tables/functions/set_damage.json

25 lines
763 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$id": "blockception.minecraft.behavior.loot_tables.set_damage",
"additionalProperties": false,
"description": "The function set_damage",
"title": "Set Damage",
2021-06-09 11:12:18 +02:00
"type": "object",
2021-06-06 10:07:19 +00:00
"properties": {
2021-06-16 16:19:12 +02:00
"function": { "type": "string", "const": "set_damage", "description": "UNDOCUMENTED", "title": "Function" },
2021-06-06 10:07:19 +00:00
"damage": {
2021-06-16 16:19:12 +02:00
"description": "UNDOCUMENTED",
2021-06-09 11:12:18 +02:00
"title": "Damage",
2021-06-06 10:07:19 +00:00
"oneOf": [
{ "type": "integer" },
2021-06-09 11:12:18 +02:00
{
"type": "object",
"properties": {
2021-06-16 16:19:12 +02:00
"min": { "type": "integer", "description": "UNDOCUMENTED", "title": "Minimum" },
"max": { "type": "integer", "description": "UNDOCUMENTED", "title": "Maximum" }
2021-06-09 11:12:18 +02:00
}
}
]
2021-06-06 10:07:19 +00:00
}
}
}