1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-24 15:06:14 +00:00
bedrock-samples/metadata/json_schemas/UseModifiers v1.20.50.json
Mike Ammerlaan 1440438305 v1.21.30.3
2024-09-17 09:13:33 -07:00

24 lines
916 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "435751873",
"title": "minecraft:use_modifiers v1.20.50",
"description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".",
"type": "object",
"properties": {
"movement_modifier": {
"description": "Modifier value to scale the players movement speed when item is in use.",
"type": "number",
"minimum": 0.0,
"maximum": 1.0
},
"use_duration": {
"description": "How long the item takes to use in seconds.",
"type": "number",
"minimum": 0.0
}
},
"$metaProperties": {
"CEREAL_DOCUMENTATION_TAG": false,
"CEREAL_JSON_SCHEMA": "UseModifiers v1.20.50"
}
}