Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/attack_damage.json
DW623 8a7533a941 Updating Undocumented (#180)
* Updating UnDocumented
Updating Undocumented and Fix Component errors
* Update source/behavior/entities/format/components/is_stackable.json
* Update source/behavior/entities/format/components/is_stackable.json

---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
2023-08-14 08:21:03 +02:00

21 lines
481 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.attack_damage",
"type": "object",
"title": "Attack Damage",
"additionalProperties": false,
"required": ["value"],
"properties": {
"value": {
"type": "integer",
"description": "How much an attack should damage a target.",
"title": "Value"
}
},
"description": "Specifies how much damage is dealt by the entity when it attacks.",
"examples": [
{
"value": 4
}
]
}