@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
62 lines • 1.94 kB
JSON
{
"fields": [
{
"id": "probability",
"title": "Probability",
"description": "The probability that the mob will use the goal.",
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/panda.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:panda_baby/minecraft:behavior.roll/",
"content": 0.0016
},
{
"path": "/minecraft:entity/component_groups/minecraft:panda_playful/minecraft:behavior.roll/",
"content": 0.013
}
]
}
},
{
"id": "priority",
"title": "Priority",
"hideSamples": true,
"description": "As priority approaches 0, the priority is increased. The higher the priority, the sooner this behavior will be executed as a goal.",
"dataType": 0,
"samples": {
"/vanilla/behavior_pack/entities/panda.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:panda_baby/minecraft:behavior.roll/",
"content": 12
},
{
"path": "/minecraft:entity/component_groups/minecraft:panda_playful/minecraft:behavior.roll/",
"content": 12
}
]
}
}
],
"description": "This allows the mob to roll forward.",
"title": "Roll Behavior",
"samples": {
"/vanilla/behavior_pack/entities/panda.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:panda_baby/minecraft:behavior.roll/",
"content": {
"priority": 12,
"probability": 0.0016
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:panda_playful/minecraft:behavior.roll/",
"content": {
"priority": 12,
"probability": 0.013
}
}
]
},
"id": "minecraft:behavior.roll"
}