Files
minecraft-bedrock-json-schemas/behaviour/entities/1.16.100/components/minecraft.strength.json
2020-11-18 10:02:20 +01:00

24 lines
629 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.16.100.minecraft.strength",
"description": "Defines the entity's strength to carry items.",
"type": "object",
"title": "Strength 1.16.100",
"additionalProperties": false,
"required": [],
"properties": {
"max": {
"type": "integer",
"default": 5,
"description": "The maximum strength of this entity",
"title": "Maximum"
},
"value": {
"type": "integer",
"default": 1,
"description": "The initial value of the strength",
"title": "Value"
}
}
}