Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/events/damage.json

13 lines
572 B
JSON
Raw Normal View History

2021-08-22 00:15:58 +02:00
{
2022-06-07 21:39:02 +02:00
"$id": "blockception.minecraft.behavior.block.events.damage",
2021-08-22 00:15:58 +02:00
"type": "object",
"description": "Deals damage to the target.",
2022-06-07 21:39:02 +02:00
"title": "Damage",
2021-08-22 00:15:58 +02:00
"additionalProperties": false,
"properties": {
"amount": { "type": "integer", "default": 0, "description": "The amount of damage to deal.", "title": "Amount" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" },
"type": { "type": "string", "default": "", "description": "The type of damage to deal.", "title": "Type" }
}
}