1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-09-29 02:32:53 +00:00
Files
2025-09-09 10:02:11 -07:00

34 lines
1.2 KiB
JSON

{
"$id": "3715727616",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Throwable items can be thrown by the player, such as a snowball.",
"properties": {
"do_swing_animation": {
"description": "Determines whether the item should use the swing animation when thrown. Default is set to false.",
"type": "boolean"
},
"launch_power_scale": {
"description": "The scale at which the power of the throw increases. Default is set to 1.0.",
"type": "number"
},
"max_draw_duration": {
"description": "The maximum duration to draw a throwable item. Default is set to 0.0.",
"type": "number"
},
"max_launch_power": {
"description": "The maximum power to launch the throwable item. Default is set to 1.0.",
"type": "number"
},
"min_draw_duration": {
"description": "The minimum duration to draw a throwable item. Default is set to 0.0.",
"type": "number"
},
"scale_power_by_draw_duration": {
"description": "Whether or not the power of the throw increases with duration charged. Default is set to false.",
"type": "boolean"
}
},
"title": "minecraft:throwable",
"type": "object",
"x-format-version": "1.20.50"
}