{
  "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/fox.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:fox_day/minecraft:behavior.find_cover/",
            "content": 5
          }
        ]
      }
    },
    {
      "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/fox.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:fox_thunderstorm/minecraft:behavior.find_cover/",
            "content": 1
          },
          {
            "path": "/minecraft:entity/component_groups/minecraft:fox_day/minecraft:behavior.find_cover/",
            "content": 1
          }
        ]
      }
    },
    {
      "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/fox.json": [
          {
            "path": "/minecraft:entity/component_groups/minecraft:fox_day/minecraft:behavior.find_cover/",
            "content": 9
          }
        ]
      }
    }
  ],
  "description": "Allows the mob to seek shade.",
  "title": "Find Cover Behavior",
  "samples": {
    "/vanilla/behavior_pack/entities/fox.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:fox_thunderstorm/minecraft:behavior.find_cover/",
        "content": {
          "priority": 0,
          "speed_multiplier": 1,
          "cooldown_time": 0
        }
      },
      {
        "path": "/minecraft:entity/component_groups/minecraft:fox_day/minecraft:behavior.find_cover/",
        "content": {
          "priority": 9,
          "speed_multiplier": 1,
          "cooldown_time": 5
        }
      }
    ]
  },
  "id": "minecraft:behavior.find_cover"
}