23 lines
661 B
JSON
23 lines
661 B
JSON
|
|
{
|
||
|
|
"$id": "blockception.minecraft.behavior.items.minecraft:use_modifiers",
|
||
|
|
"additionalProperties": false,
|
||
|
|
"required": ["use_duration"],
|
||
|
|
"type": "object",
|
||
|
|
"title": "Use Modifiers",
|
||
|
|
"description": "How long to use before item is done being used.",
|
||
|
|
"properties": {
|
||
|
|
"movement_modifier": {
|
||
|
|
"title": "Movement Modifier",
|
||
|
|
"description": "Modifier value to scale the players movement speed when item is in use.",
|
||
|
|
"type": "number",
|
||
|
|
"minimum": 0
|
||
|
|
},
|
||
|
|
"use_duration": {
|
||
|
|
"title": "Use Duration",
|
||
|
|
"description": "How long the item takes to use in seconds.",
|
||
|
|
"type": "number",
|
||
|
|
"minimum": 0
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|