@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
64 lines • 1.81 kB
JSON
{
"fields": [
{
"id": "cooldown_time",
"title": "Cooldown Time",
"description": "The dash cooldown in seconds. Default value is 1.000000.",
"defaultValue": 1,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/camel.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:camel_saddled/minecraft:dash/",
"content": 2.75
}
]
}
},
{
"id": "horizontal_momentum",
"title": "Horizontal Momentum",
"description": "Horizontal momentum of the dash.",
"defaultValue": 1,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/camel.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:camel_saddled/minecraft:dash/",
"content": 20
}
]
}
},
{
"id": "vertical_momentum",
"title": "Vertical Momentum",
"description": "Vertical momentum of the dash.",
"defaultValue": 1,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/camel.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:camel_saddled/minecraft:dash/",
"content": 0.6
}
]
}
}
],
"description": "Ability for a rideable entity to dash.",
"title": "Dash",
"samples": {
"/vanilla/behavior_pack/entities/camel.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:camel_saddled/minecraft:dash/",
"content": {
"cooldown_time": 2.75,
"horizontal_momentum": 20,
"vertical_momentum": 0.6
}
}
]
},
"id": "minecraft:dash"
}