{
  "fields": [
    {
      "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/armadillo.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:baby_unrolled/minecraft:behavior.follow_parent/",
            "content": 1.25
          }
        ],
        "/vanilla/behavior_pack/entities/axolotl.json": [
          {
            "path": "/minecraft:entity/component_groups/axolotl_baby/minecraft:behavior.follow_parent/",
            "content": 1.1
          }
        ],
        "/vanilla/behavior_pack/entities/bee.json": [
          {
            "path": "/minecraft:entity/component_groups/bee_baby/minecraft:behavior.follow_parent/",
            "content": 1.1
          }
        ],
        "/vanilla/behavior_pack/entities/camel.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:camel_baby/minecraft:behavior.follow_parent/",
            "content": 2.5
          }
        ],
        "/vanilla/behavior_pack/entities/donkey.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:donkey_baby/minecraft:behavior.follow_parent/",
            "content": 1
          }
        ],
        "/vanilla/behavior_pack/entities/goat.json": [
          {
            "path": "/minecraft:entity/component_groups/goat_baby/minecraft:behavior.follow_parent/",
            "content": 1
          }
        ],
        "/vanilla/behavior_pack/entities/polar_bear.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:baby/minecraft:behavior.follow_parent/",
            "content": 1.25
          }
        ]
      }
    },
    {
      "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/armadillo.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:baby_unrolled/minecraft:behavior.follow_parent/",
            "content": 5
          }
        ],
        "/vanilla/behavior_pack/entities/axolotl.json": [
          {
            "path": "/minecraft:entity/component_groups/axolotl_baby/minecraft:behavior.follow_parent/",
            "content": 5
          }
        ],
        "/vanilla/behavior_pack/entities/bee.json": [
          {
            "path": "/minecraft:entity/component_groups/bee_baby/minecraft:behavior.follow_parent/",
            "content": 11
          }
        ],
        "/vanilla/behavior_pack/entities/dolphin.json": [
          {
            "path": "/minecraft:entity/component_groups/dolphin_baby/minecraft:behavior.follow_parent/",
            "content": 4
          }
        ],
        "/vanilla/behavior_pack/entities/donkey.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:donkey_baby/minecraft:behavior.follow_parent/",
            "content": 4
          }
        ],
        "/vanilla/behavior_pack/entities/fox.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:fox_baby/minecraft:behavior.follow_parent/",
            "content": 9
          }
        ],
        "/vanilla/behavior_pack/entities/goat.json": [
          {
            "path": "/minecraft:entity/component_groups/goat_baby/minecraft:behavior.follow_parent/",
            "content": 6
          }
        ],
        "/vanilla/behavior_pack/entities/hoglin.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:hoglin_baby/minecraft:behavior.follow_parent/",
            "content": 6
          }
        ],
        "/vanilla/behavior_pack/entities/panda.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:panda_baby/minecraft:behavior.follow_parent/",
            "content": 13
          }
        ]
      }
    }
  ],
  "requires": [
    {
      "id": "minecraft:is_baby",
      "type": "entity_component",
      "description": "Requires the `minecraft:is_baby` component in order to have an adult mob tagged as a parent for the entity."
    }
  ],
  "description": "Allows the mob to follow their parent around.",
  "title": "Follow Parent Behavior",
  "samples": {
    "/vanilla/behavior_pack/entities/armadillo.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:baby_unrolled/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.25
        }
      }
    ],
    "/vanilla/behavior_pack/entities/axolotl.json": [
      {
        "path": "/minecraft:entity/component_groups/axolotl_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/bee.json": [
      {
        "path": "/minecraft:entity/component_groups/bee_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 11,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/camel.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:camel_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 2.5
        }
      }
    ],
    "/vanilla/behavior_pack/entities/chicken.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:chicken_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/dolphin.json": [
      {
        "path": "/minecraft:entity/component_groups/dolphin_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/donkey.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:donkey_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/fox.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:fox_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 9,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/goat.json": [
      {
        "path": "/minecraft:entity/component_groups/goat_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 6,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/hoglin.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:hoglin_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 6,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/horse.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:horse_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/llama.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:llama_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/mule.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:mule_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/panda.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:panda_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 13,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/pig.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:pig_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 6,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/polar_bear.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1.25
        }
      }
    ],
    "/vanilla/behavior_pack/entities/rabbit.json": [
      {
        "path": "/minecraft:entity/component_groups/baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 6,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/skeleton_horse.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:skeleton_horse_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/strider.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:strider_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 6,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/trader_llama.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:llama_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie_horse.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:horse_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1.25
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:llama_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 4,
          "speed_multiplier": 1.25
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:llama_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/1_dream_turkey/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/component_groups/mamm_cds:turkey_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/2_dreams_come_true/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/component_groups/mamm_cds:turkey_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.1
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/complete/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/component_groups/mamm_cds:turkey_baby/minecraft:behavior.follow_parent/",
        "content": {
          "priority": 5,
          "speed_multiplier": 1.1
        }
      }
    ]
  },
  "id": "minecraft:behavior.follow_parent"
}