@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
116 lines • 3.88 kB
JSON
{
"fields": [
{
"id": "cooldown_time",
"title": "Cooldown Time",
"description": "Time in seconds the mob has to wait before using the goal again",
"defaultValue": 0,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": 10
}
]
}
},
{
"id": "duration",
"title": "Duration",
"description": "Amount of time in seconds that the entity will chat with another entity",
"defaultValue": 1,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": 30
}
]
}
},
{
"id": "mingle_distance",
"title": "Mingle Distance",
"description": "The distance from its partner that this entity will mingle. If the entity type is not the same as the entity, this value needs to be identical on both entities.",
"defaultValue": 2,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": 2
}
]
}
},
{
"id": "mingle_partner_type",
"title": "Mingle Partner Type",
"description": "The entity type that this entity is allowed to mingle with",
"defaultValue": "empty",
"dataType": 17,
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": "minecraft:villager_v2"
}
]
}
},
{
"id": "speed_multiplier",
"title": "Speed Multiplier",
"description": "Movement speed multiplier of the mob when using this AI Goal",
"defaultValue": 1,
"dataType": 3,
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": 0.5
}
]
}
},
{
"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/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": 7
}
]
}
}
],
"description": "Allows an entity to go to the village bell and mingle with other entities",
"title": "Mingle Behavior",
"samples": {
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/job_specific_goals/minecraft:behavior.mingle/",
"content": {}
},
{
"path": "/minecraft:entity/component_groups/gather_schedule_villager/minecraft:behavior.mingle/",
"content": {
"priority": 7,
"speed_multiplier": 0.5,
"duration": 30,
"cooldown_time": 10,
"mingle_partner_type": "minecraft:villager_v2",
"mingle_distance": 2
}
}
]
},
"id": "minecraft:behavior.mingle"
}