Skip to content

Follow Mob

Task Types

A goal that causes the mob to follow an entity.

Type ID: ra_additions:follow_mob

Fields

Field Type Default Description
priority Int optional The priority of the goal, the lower, the more important.
speed Double optional The speed it should follow at
can_be_scared Boolean optional Can the entity be scared?
bientity_condition Bientity Condition optional A condition to check if it should follow the target.

Example

{
  "type": "ra_additions:follow_mob",
  "priority": 0,
  "speed": 1,
  "can_be_scared": false,
  "bientity_condition": {
    "type": "apoli:target_condition",
    "condition": {
      "type": "apoli:entity_type",
      "entity_type": "minecraft:creeper"
    }
  }
}