mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-24 15:06:14 +00:00
24 lines
916 B
JSON
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"
|
|
}
|
|
} |