mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-21 21:56:13 +00:00
26 lines
775 B
JSON
26 lines
775 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "3173009623",
|
|
"title": "minecraft:damage v1.20.50",
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"$metaProperties": {
|
|
"CEREAL_DOCUMENTATION_TAG": false,
|
|
"CEREAL_JSON_SCHEMA": "Damage v1.20.50"
|
|
}
|
|
} |