* - Fix typo "torse" -> "torso" * - Added "main_hand" as an equipment location * - Added support for "beta" version of script modules * - Update point lights to local light * - Added precipitation_interactions * - Added control flags field to more goals * - Update fire_resistant to not accept direct values * - Added swing_duration component * - Added emissive block rendering * - Added emit_vibrations field to use_modifiers * - Added underwater ambient sounds - Added chance field to ambient sound addition * - Added alpha_masked_tint * - Added apply_knockback_to_blocking_targets field to projectile
29 lines
871 B
JSON
29 lines
871 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
|
|
},
|
|
"emit_vibrations": {
|
|
"title": "Emit Vibrations",
|
|
"description": "Whether vibrations are emitted when the item starts or stops being used.",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
}
|
|
}
|