1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-29 19:00:22 +00:00
Files
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

24 lines
723 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "3173009623",
"x-format-version": "1.20.50",
"x-minecraft-version": "1.21.90-beta.3",
"title": "minecraft:damage",
"description": "The damage component determines how much extra damage the item does on attack.",
"oneOf": [
{
"type": "integer",
"minimum": 0.0
},
{
"type": "object",
"properties": {
"value": {
"description": "Specifies how much extra damage the item does, must be a positive number.",
"type": "integer",
"minimum": 0.0
}
}
}
]
}