Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Allows the mob to move around on its own while mounted seeking a target to attack. Also will allow an entity to target another entity for an attack.
Mount Pathing Behavior Properties
Name | Default Value | Type | Description | Example Values |
---|---|---|---|---|
priority | not set | Integer number | As priority approaches 0, the priority is increased. The higher the priority, the sooner this behavior will be executed as a goal. | Cat: 1 , Cave Spider: 5 , Chicken: 2 |
speed_multiplier | 1 | Decimal number | Movement speed multiplier of the mob when using this AI Goal | Cat: 1.25 , Chicken: 1.5 |
target_dist | 0 | Decimal number | The distance at which this mob wants to be away from its target | Skeleton Horse: 4 |
track_target | false | Boolean true/false | If true, this mob will chase after the target as long as it's a valid target | Cat: true |
Samples
Cat
"minecraft:behavior.mount_pathing": {
"priority": 1,
"speed_multiplier": 1.25,
"target_dist": 0,
"track_target": true
}
Cave Spider
"minecraft:behavior.mount_pathing": {
"priority": 5,
"speed_multiplier": 1.25,
"target_dist": 0,
"track_target": true
}
Chicken
"minecraft:behavior.mount_pathing": {
"priority": 2,
"speed_multiplier": 1.5,
"target_dist": 0,
"track_target": true
}
Husk
"minecraft:behavior.mount_pathing": {
"priority": 2,
"speed_multiplier": 1.25,
"target_dist": 0,
"track_target": true
}
Panda
"minecraft:behavior.mount_pathing": {
"priority": 5,
"speed_multiplier": 1.5,
"target_dist": 0,
"track_target": true
}
Skeleton Horse
"minecraft:behavior.mount_pathing": {
"priority": 2,
"speed_multiplier": 1.5,
"target_dist": 4,
"track_target": true
}
Sheepomelon
"minecraft:behavior.mount_pathing": {
"priority": 3,
"speed_multiplier": 1.5,
"target_dist": 0,
"track_target": true
}