1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-06 16:29:53 +00:00
Files
2025-09-23 09:16:49 -07:00

25 lines
841 B
JSON

{
"$id": "435751873",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Modifies use behavior, including how long the item takes to use and the player's movement speed.",
"properties": {
"emit_vibrations": {
"description": "Whether vibrations are emitted when the item starts or stops being used. Default value: true.",
"type": "boolean"
},
"movement_modifier": {
"description": "Multiplier applied to the player's movement speed while the item is in use.",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"use_duration": {
"description": "Time, in seconds, that the item takes to use. Default value: 0.",
"minimum": 0,
"type": "number"
}
},
"title": "minecraft:use_modifiers",
"type": "object",
"x-format-version": "1.20.50"
}