{
  "format_version": "1.26.0",
  "minecraft:entity": {
    "description": {
      "identifier": "minecraft:wolf",
      "is_summonable": true,
      "is_spawnable": true,
      "properties": {
        "minecraft:sound_variant": {
          "client_sync": true,
          "default": "default",
          "type": "enum",
          "values": [
            "default",
            "big",
            "cute",
            "grumpy",
            "mad",
            "puglin",
            "sad"
          ]
        },
        "minecraft:has_increased_max_health": {
          "client_sync": false,
          "default": false,
          "type": "bool"
        },
        "minecraft:is_armorable": {
          "client_sync": false,
          "default": false,
          "type": "bool"
        },
        "minecraft:was_upgraded_to_1_21_100": {
          "client_sync": false,
          "default": false,
          "type": "bool"
        }
      },
      "spawn_category": "creature"
    },
    "components": {
      "minecraft:attack": {
        "damage": 3
      },
      "minecraft:balloonable": {
        "mass": 0.8
      },
      "minecraft:behavior.beg": {
        "items": [
          "bone",
          "porkchop",
          "cooked_porkchop",
          "chicken",
          "cooked_chicken",
          "beef",
          "cooked_beef",
          "rotten_flesh",
          "muttonraw",
          "muttoncooked",
          "rabbit",
          "cooked_rabbit"
        ],
        "look_distance": 8,
        "look_time": [
          2,
          4
        ],
        "priority": 9
      },
      "minecraft:behavior.float": {
        "priority": 0
      },
      "minecraft:behavior.hurt_by_target": {
        "priority": 3
      },
      "minecraft:behavior.leap_at_target": {
        "priority": 4,
        "yd": 0.4
      },
      "minecraft:behavior.look_at_player": {
        "look_time": {
          "min": 1,
          "max": 2
        },
        "priority": 6
      },
      "minecraft:behavior.melee_box_attack": {
        "priority": 5
      },
      "minecraft:behavior.mount_pathing": {
        "priority": 1,
        "target_dist": 0,
        "speed_multiplier": 1.25,
        "track_target": true
      },
      "minecraft:behavior.panic": {
        "damage_sources": [
          "campfire",
          "fire",
          "fire_tick",
          "freezing",
          "lightning",
          "lava",
          "magma",
          "temperature",
          "soul_campfire"
        ],
        "priority": 2,
        "ignore_mob_damage": true,
        "speed_multiplier": 1.25
      },
      "minecraft:behavior.random_stroll": {
        "priority": 8,
        "speed_multiplier": 1
      },
      "minecraft:behavior.stay_while_sitting": {
        "priority": 3
      },
      "minecraft:breathable": {
        "suffocate_time": 0,
        "total_supply": 15
      },
      "minecraft:can_climb": {},
      "minecraft:collision_box": {
        "height": 0.8,
        "width": 0.6
      },
      "minecraft:conditional_bandwidth_optimization": {},
      "minecraft:despawn": {
        "despawn_from_distance": {}
      },
      "minecraft:environment_sensor": {
        "triggers": [
          {
            "event": "minecraft:increase_max_health",
            // Pre 1.20.70, we overwrote the "health" attribute in "wolf_tame". In 1.20.70, we tweaked its values. As attributes are applied
            // to pre-existing runtime entities only after composition changes, this alone wouldn't have affected old Wolves. To ensure all
            // Wolves receive the adjustment, we now overwrite the "health" attribute via a separate component group, applying it at runtime.
            "filters": {
              "all_of": [
                {
                  "domain": "minecraft:has_increased_max_health",
                  "operator": "!=",
                  "test": "bool_property"
                },
                {
                  "test": "has_component",
                  "value": "minecraft:is_tamed"
                }
              ]
            }
          },
          {
            "event": "minecraft:become_armorable",
            // We apply "wolf_armorable" this way instead of reacting to "ageable_grow_up" and "on_tame" as that will fail if
            // the events are emittied in the same tick. Moreover, this takes care of upgrading pre-existing adult tame Wolves.
            "filters": {
              "all_of": [
                {
                  "domain": "minecraft:is_armorable",
                  "operator": "!=",
                  "test": "bool_property"
                },
                {
                  "operator": "!=",
                  "test": "has_component",
                  "value": "minecraft:is_baby"
                },
                {
                  "test": "has_component",
                  "value": "minecraft:is_tamed"
                }
              ]
            }
          },
          {
            "event": "minecraft:upgrade_to_1_21_100",
            "filters": {
              "domain": "minecraft:was_upgraded_to_1_21_100",
              "operator": "!=",
              "test": "bool_property"
            }
          }
        ]
      },
      "minecraft:healable": {
        "items": [
          {
            "heal_amount": 6,
            "item": "porkchop"
          },
          {
            "heal_amount": 16,
            "item": "cooked_porkchop"
          },
          {
            "heal_amount": 4,
            "item": "fish"
          },
          {
            "heal_amount": 4,
            "item": "salmon"
          },
          {
            "heal_amount": 2,
            "item": "clownfish"
          },
          {
            "heal_amount": 2,
            "item": "pufferfish"
          },
          {
            "heal_amount": 10,
            "item": "cooked_fish"
          },
          {
            "heal_amount": 12,
            "item": "cooked_salmon"
          },
          {
            "heal_amount": 6,
            "item": "beef"
          },
          {
            "heal_amount": 16,
            "item": "cooked_beef"
          },
          {
            "heal_amount": 4,
            "item": "chicken"
          },
          {
            "heal_amount": 12,
            "item": "cooked_chicken"
          },
          {
            "heal_amount": 4,
            "item": "muttonRaw"
          },
          {
            "heal_amount": 12,
            "item": "muttonCooked"
          },
          {
            "heal_amount": 8,
            "item": "rotten_flesh"
          },
          {
            "heal_amount": 6,
            "item": "rabbit"
          },
          {
            "heal_amount": 10,
            "item": "cooked_rabbit"
          },
          {
            "heal_amount": 20,
            "item": "rabbit_stew"
          }
        ]
      },
      "minecraft:health": {
        "max": 8,
        "value": 8
      },
      "minecraft:hurt_on_condition": {
        "damage_conditions": [
          {
            "cause": "lava",
            "damage_per_tick": 4,
            "filters": {
              "operator": "==",
              "test": "in_lava",
              "subject": "self",
              "value": true
            }
          }
        ]
      },
      "minecraft:is_hidden_when_invisible": {},
      "minecraft:jump.static": {},
      "minecraft:movement": {
        "value": 0.3
      },
      "minecraft:movement.basic": {},
      "minecraft:nameable": {},
      "minecraft:navigation.walk": {
        "avoid_damage_blocks": true,
        "can_path_over_water": true,
        "using_door_annotation": true
      },
      "minecraft:physics": {},
      "minecraft:pushable": {
        "is_pushable": true,
        "is_pushable_by_piston": true
      },
      "minecraft:type_family": {
        "family": [
          "wolf",
          "mob"
        ]
      }
    },
    "component_groups": {
      "minecraft:wolf_chestnut": {
        "minecraft:variant": {
          "value": 3
        }
      },
      "minecraft:wolf_snowy": {
        "minecraft:variant": {
          "value": 5
        }
      },
      "minecraft:on_tame_collar_color": {
        "minecraft:color": {
          "value": 14
        }
      },
      "minecraft:wolf_adult": {
        "minecraft:breedable": {
          "breed_items": [
            {
              "item": "chicken"
            },
            {
              "item": "cooked_chicken"
            },
            {
              "item": "beef"
            },
            {
              "item": "cooked_beef"
            },
            {
              "item": "muttonRaw"
            },
            {
              "item": "muttonCooked"
            },
            {
              "item": "porkchop"
            },
            {
              "item": "cooked_porkchop"
            },
            {
              "item": "rabbit"
            },
            {
              "item": "cooked_rabbit"
            },
            {
              "item": "rotten_flesh"
            }
          ],
          "breeds_with": {
            "minecraft:wolf": {
              "event": "minecraft:entity_born",
              "target": "baby"
            }
          },
          "require_full_health": true,
          "require_tame": true
        },
        "minecraft:experience_reward": {
          "on_bred": {
            "expression": "Math.Random(1,7)",
            "version": 13
          },
          "on_death": {
            "expression": "query.last_hit_by_player ? Math.Random(1,3) : 0",
            "version": 13
          }
        },
        "minecraft:leashable_to": {},
        "minecraft:loot": {
          "table": "loot_tables/entities/wolf.json"
        },
        "minecraft:offspring": {
          "combine_parent_colors": true,
          "offspring_pairs": {
            "minecraft:wolf": "minecraft:wolf"
          }
        }
      },
      "minecraft:wolf_angry": {
        "minecraft:angry": {
          "broadcast_anger": true,
          "broadcast_anger_when_dying": false,
          "broadcast_range": 20,
          "calm_event": {
            "event": "minecraft:on_calm",
            "target": "self"
          },
          "duration": 25
        },
        "minecraft:on_target_acquired": {},
        "minecraft:rideable": {
          "family_types": [
            "zombie"
          ],
          "seat_count": 1,
          "seats": {
            // This value results in zombies floating when riding baby cats,
            // but switching to a different setup would break pre-existing mobs.
            "position": [
              0,
              0.625,
              -0.1
            ]
          }
        }
      },
      "minecraft:wolf_armorable": {
        "minecraft:interact": {
          "interactions": [
            {
              "equip_item_slot": "slot.armor.body",
              "play_sounds": "armor.equip_wolf",
              "interact_text": "action.interact.equipwolfarmor",
              "on_interact": {
                "filters": {
                  "all_of": [
                    {
                      "domain": "armor",
                      "operator": "not",
                      "test": "has_equipment",
                      "subject": "self",
                      "value": "wolf_armor"
                    },
                    {
                      "domain": "hand",
                      "subject": "other",
                      "test": "has_equipment",
                      "value": "wolf_armor"
                    },
                    {
                      "subject": "other",
                      "test": "is_family",
                      "value": "player"
                    },
                    {
                      "subject": "other",
                      "test": "is_owner",
                      "value": true
                    },
                    {
                      "subject": "other",
                      "test": "is_sneak_held",
                      "value": false
                    }
                  ]
                },
                "target": "self"
              },
              "swing": false
            },
            {
              "drop_item_slot": "slot.armor.body",
              "hurt_item": 1,
              "interact_text": "action.interact.removewolfarmor",
              "on_interact": {
                "filters": {
                  "all_of": [
                    {
                      "domain": "armor",
                      "subject": "self",
                      "test": "has_equipment",
                      "value": "wolf_armor"
                    },
                    {
                      "domain": "hand",
                      "subject": "other",
                      "test": "has_equipment",
                      "value": "shears"
                    },
                    {
                      "subject": "other",
                      "test": "is_family",
                      "value": "player"
                    },
                    {
                      "subject": "other",
                      "test": "is_owner",
                      "value": true
                    },
                    {
                      "subject": "other",
                      "test": "is_sneak_held",
                      "value": false
                    }
                  ]
                },
                "target": "self"
              },
              "play_sounds": "armor.unequip_wolf",
              "swing": false,
              "vibration": "shear"
            },
            {
              "interact_text": "action.interact.repairwolfarmor",
              "on_interact": {
                "filters": {
                  "all_of": [
                    {
                      "subject": "self",
                      "test": "is_sitting"
                    },
                    {
                      "domain": "armor",
                      "subject": "self",
                      "test": "has_damaged_equipment",
                      "value": "wolf_armor"
                    },
                    {
                      "subject": "other",
                      "test": "is_family",
                      "value": "player"
                    },
                    {
                      "subject": "other",
                      "test": "is_owner",
                      "value": true
                    },
                    {
                      "subject": "other",
                      "test": "is_sneak_held",
                      "value": false
                    },
                    {
                      "domain": "hand",
                      "subject": "other",
                      "test": "has_equipment",
                      "value": "armadillo_scute"
                    }
                  ]
                },
                "target": "self"
              },
              "play_sounds": "armor.repair_wolf",
              "repair_entity_item": {
                "amount": 8,
                "slot": "slot.armor.body"
              },
              "swing": false,
              "use_item": true
            }
          ]
        }
      },
      "minecraft:wolf_black": {
        "minecraft:variant": {
          "value": 2
        }
      },
      "minecraft:wolf_ashen": {
        "minecraft:variant": {
          "value": 1
        }
      },
      "minecraft:wolf_baby": {
        "minecraft:ageable": {
          "duration": 1200,
          "feed_items": [
            "chicken",
            "cooked_chicken",
            "beef",
            "cooked_beef",
            "muttonRaw",
            "muttonCooked",
            "porkchop",
            "cooked_porkchop",
            "rabbit",
            "cooked_rabbit",
            "rotten_flesh"
          ],
          "grow_up": {
            "event": "minecraft:ageable_grow_up",
            "target": "self"
          }
        },
        "minecraft:behavior.panic": {
          "priority": 1,
          "speed_multiplier": 1.25
        },
        "minecraft:is_baby": {},
        "minecraft:scale": {
          "value": 0.5
        }
      },
      "minecraft:wolf_wild": {
        "minecraft:behavior.avoid_mob_type": {
          "probability_per_strength": 0.14,
          "entity_types": [
            {
              "filters": {
                "AND": [
                  {
                    "test": "is_family",
                    "subject": 1,
                    "operator": 0,
                    "value": "llama"
                  }
                ]
              },
              "max_dist": 24,
              "walk_speed_multiplier": 1.5,
              "sprint_speed_multiplier": 1.5
            }
          ],
          "priority": 3
        },
        "minecraft:behavior.nearest_attackable_target": {
          "reselect_targets": true,
          "must_see": true,
          "entity_types": [
            {
              "filters": {
                "AND": [
                  {
                    "OR": [
                      {
                        "test": "is_family",
                        "subject": 1,
                        "operator": 0,
                        "value": "skeleton"
                      },
                      {
                        "test": "is_family",
                        "subject": 1,
                        "operator": 0,
                        "value": "sheep"
                      },
                      {
                        "test": "is_family",
                        "subject": 1,
                        "operator": 0,
                        "value": "rabbit"
                      },
                      {
                        "test": "is_family",
                        "subject": 1,
                        "operator": 0,
                        "value": "fox"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "filters": {
                "AND": [
                  {
                    "test": "is_family",
                    "subject": 1,
                    "operator": 0,
                    "value": "baby_turtle"
                  },
                  {
                    "test": "in_water",
                    "subject": 1,
                    "operator": 1,
                    "value": true
                  }
                ]
              }
            },
            {
              "filters": {
                "AND": [
                  {
                    "test": "is_family",
                    "subject": 1,
                    "operator": 0,
                    "value": "skeleton"
                  },
                  {
                    "test": "is_underwater",
                    "subject": 1,
                    "operator": 1,
                    "value": true
                  }
                ]
              }
            }
          ],
          "priority": 4
        },
        "minecraft:on_target_acquired": {
          "event": "minecraft:become_angry",
          "target": "self"
        },
        "minecraft:rideable": {
          "family_types": [
            "zombie"
          ],
          "seat_count": 1,
          "seats": {
            // This value results in zombies floating when riding baby cats,
            // but switching to a different setup would break pre-existing mobs.
            "position": [
              0,
              0.625,
              -0.1
            ]
          }
        },
        "minecraft:tameable": {
          "probability": 0.33,
          "tame_event": {
            "event": "minecraft:on_tame",
            "target": "self"
          },
          "tame_items": "bone"
        }
      },
      "minecraft:wolf_increased_max_health": {
        "minecraft:health": {
          "max": 40,
          "value": 40
        }
      },
      "minecraft:wolf_leashable": {
        "minecraft:leashable": {
          "on_leash": {
            "event": "minecraft:on_leash",
            "target": "self"
          },
          "on_unleash": {
            "event": "minecraft:on_unleash",
            "target": "self"
          }
        }
      },
      "minecraft:wolf_woods": {
        "minecraft:variant": {
          "value": 8
        }
      },
      "minecraft:wolf_pale": {
        "minecraft:variant": {
          "value": 0
        }
      },
      "minecraft:wolf_rusty": {
        "minecraft:variant": {
          "value": 4
        }
      },
      "minecraft:wolf_spotted": {
        "minecraft:variant": {
          "value": 6
        }
      },
      "minecraft:wolf_striped": {
        "minecraft:variant": {
          "value": 7
        }
      },
      "minecraft:wolf_tame": {
        "minecraft:attack": {
          "damage": 4
        },
        "minecraft:behavior.breed": {
          "priority": 2
        },
        "minecraft:behavior.follow_owner": {
          "priority": 6,
          "speed_multiplier": 1,
          "start_distance": 10,
          "stop_distance": 2
        },
        "minecraft:behavior.nearest_attackable_target": {
          "must_see": true,
          "entity_types": [
            {
              "filters": {
                "AND": [
                  {
                    "test": "is_family",
                    "subject": 1,
                    "operator": 0,
                    "value": "skeleton"
                  }
                ]
              }
            }
          ],
          "priority": 5
        },
        "minecraft:behavior.owner_hurt_by_target": {
          "priority": 1
        },
        "minecraft:behavior.owner_hurt_target": {
          "priority": 2
        },
        "minecraft:behavior.teleport_to_owner": {
          "filters": {
            "any_of": [
              {
                "all_of": [
                  {
                    "operator": ">",
                    "test": "owner_distance",
                    "value": 12
                  },
                  {
                    "test": "is_panicking"
                  }
                ]
              },
              {
                "all_of": [
                  {
                    "operator": ">",
                    "test": "owner_distance",
                    "value": 24
                  },
                  {
                    "test": "has_target"
                  }
                ]
              }
            ]
          },
          "priority": 1
        },
        "minecraft:is_dyeable": {
          "interact_text": "action.interact.dye"
        },
        "minecraft:is_tamed": {},
        "minecraft:sittable": {}
      }
    },
    "events": {
      "minecraft:spawn_wild_woods": {
        "add": {
          "component_groups": [
            "minecraft:wolf_woods"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:randomize_sound_variant": {
        "randomize": [
          {
            "set_property": {
              "minecraft:sound_variant": "default"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "big"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "cute"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "grumpy"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "mad"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "puglin"
            },
            "weight": 1
          },
          {
            "set_property": {
              "minecraft:sound_variant": "sad"
            },
            "weight": 1
          }
        ]
      },
      "minecraft:on_calm": {
        "add": {
          "component_groups": [
            "minecraft:wolf_wild",
            "minecraft:wolf_leashable"
          ]
        },
        "remove": {
          "component_groups": [
            "minecraft:wolf_angry"
          ]
        }
      },
      "minecraft:become_armorable": {
        "add": {
          "component_groups": [
            "minecraft:wolf_armorable"
          ]
        },
        "set_property": {
          "minecraft:is_armorable": true
        }
      },
      "minecraft:spawn_wild_snowy": {
        "add": {
          "component_groups": [
            "minecraft:wolf_snowy"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:ageable_set_baby": {
        "add": {
          "component_groups": [
            "minecraft:wolf_baby"
          ]
        },
        "remove": {
          "component_groups": [
            "minecraft:wolf_adult"
          ]
        }
      },
      "minecraft:ageable_grow_up": {
        "add": {
          "component_groups": [
            "minecraft:wolf_adult"
          ]
        },
        "remove": {
          "component_groups": [
            "minecraft:wolf_baby"
          ]
        }
      },
      "minecraft:entity_born": {
        "trigger": "minecraft:spawn_tame_baby"
      },
      "minecraft:become_angry": {
        "add": {
          "component_groups": [
            "minecraft:wolf_angry"
          ]
        },
        "remove": {
          "component_groups": [
            "minecraft:wolf_wild",
            "minecraft:wolf_leashable"
          ]
        }
      },
      "minecraft:entity_spawned": {
        "sequence": [
          {
            "trigger": "minecraft:spawn_wild_baby_or_adult"
          },
          {
            // Pale Wolf: every non-cold Taiga, except Old Growth Pine Taiga and Old Growth Spruce Taiga.
            "filters": {
              "all_of": [
                {
                  "test": "has_biome_tag",
                  "value": "taiga"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "cold"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "mega"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "mutated"
                }
              ]
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_pale"
              ]
            }
          },
          {
            // Ashen Wolf: every cold Taiga.
            "filters": {
              "all_of": [
                {
                  "test": "has_biome_tag",
                  "value": "taiga"
                },
                {
                  "test": "has_biome_tag",
                  "value": "cold"
                }
              ]
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_ashen"
              ]
            }
          },
          {
            // Black Wolf: Old Growth Pine Taiga only.
            "filters": {
              "all_of": [
                {
                  "test": "has_biome_tag",
                  "value": "mega"
                },
                {
                  "test": "has_biome_tag",
                  "value": "taiga"
                },
                {
                  "test": "has_biome_tag",
                  "value": "forest"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "mutated"
                }
              ]
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_black"
              ]
            }
          },
          {
            // Chestnut Wolf: Old Growth Spruce Taiga only.
            "filters": {
              "all_of": [
                {
                  "test": "has_biome_tag",
                  "value": "mega"
                },
                {
                  "test": "has_biome_tag",
                  "value": "taiga"
                },
                {
                  "test": "has_biome_tag",
                  "value": "forest"
                },
                {
                  "test": "has_biome_tag",
                  "value": "mutated"
                }
              ]
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_chestnut"
              ]
            }
          },
          {
            // Rusty Wolf: every Jungle, which is broader than the variant's spawn rule.
            "filters": {
              "test": "has_biome_tag",
              "value": "jungle"
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_rusty"
              ]
            }
          },
          {
            // Snowy Wolf: Grove only.
            "filters": {
              "test": "has_biome_tag",
              "value": "grove"
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_snowy"
              ]
            }
          },
          {
            // Spotted Wolf: every Savanna, which is broader than the variant's spawn rule.
            "filters": {
              "test": "has_biome_tag",
              "value": "savanna"
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_spotted"
              ]
            }
          },
          {
            // Striped Wolf: every Badland, which is broader than the variant's spawn rule.
            "filters": {
              "test": "has_biome_tag",
              "value": "mesa"
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_striped"
              ]
            }
          },
          {
            // Woods Wolf: Forest only.
            "filters": {
              "all_of": [
                {
                  "test": "has_biome_tag",
                  "value": "forest"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "birch"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "taiga"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "roofed"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "mutated"
                },
                {
                  "test": "has_biome_tag",
                  "operator": "not",
                  "value": "mountain"
                }
              ]
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_woods"
              ]
            }
          }
        ]
      },
      "minecraft:increase_max_health": {
        "add": {
          "component_groups": [
            "minecraft:wolf_increased_max_health"
          ]
        },
        "set_property": {
          "minecraft:has_increased_max_health": true
        }
      },
      "minecraft:on_tame": {
        "add": {
          "component_groups": [
            "minecraft:wolf_tame",
            "minecraft:on_tame_collar_color"
          ]
        },
        "remove": {
          "component_groups": [
            "minecraft:wolf_wild"
          ]
        }
      },
      "minecraft:spawn_tame_adult": {
        "add": {
          "component_groups": [
            "minecraft:wolf_adult",
            "minecraft:wolf_tame",
            "minecraft:wolf_leashable"
          ]
        },
        "set_property": {
          "minecraft:was_upgraded_to_1_21_100": true
        },
        "trigger": "minecraft:randomize_sound_variant"
      },
      "minecraft:spawn_wild_spotted": {
        "add": {
          "component_groups": [
            "minecraft:wolf_spotted"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_tame_baby": {
        "add": {
          "component_groups": [
            "minecraft:wolf_baby",
            "minecraft:wolf_tame",
            "minecraft:wolf_leashable"
          ]
        },
        "set_property": {
          "minecraft:was_upgraded_to_1_21_100": true
        },
        "trigger": "minecraft:randomize_sound_variant"
      },
      "minecraft:spawn_wild_adult": {
        "add": {
          "component_groups": [
            "minecraft:wolf_adult",
            "minecraft:wolf_wild",
            "minecraft:wolf_leashable"
          ]
        },
        "set_property": {
          "minecraft:was_upgraded_to_1_21_100": true
        },
        "trigger": "minecraft:randomize_sound_variant"
      },
      "minecraft:spawn_wild_black": {
        "add": {
          "component_groups": [
            "minecraft:wolf_black"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_wild_baby_or_adult": {
        "sequence": [
          {
            "randomize": [
              {
                "trigger": "minecraft:spawn_wild_adult",
                "weight": 9
              },
              {
                "trigger": "minecraft:spawn_wild_baby",
                "weight": 1
              }
            ]
          }
        ]
      },
      "minecraft:spawn_wild_ashen": {
        "add": {
          "component_groups": [
            "minecraft:wolf_ashen"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_wild_baby": {
        "add": {
          "component_groups": [
            "minecraft:wolf_baby",
            "minecraft:wolf_wild",
            "minecraft:wolf_leashable"
          ]
        },
        "set_property": {
          "minecraft:was_upgraded_to_1_21_100": true
        },
        "trigger": "minecraft:randomize_sound_variant"
      },
      "minecraft:spawn_wild_chestnut": {
        "add": {
          "component_groups": [
            "minecraft:wolf_chestnut"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_wild_pale": {
        "add": {
          "component_groups": [
            "minecraft:wolf_pale"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_wild_rusty": {
        "add": {
          "component_groups": [
            "minecraft:wolf_rusty"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:spawn_wild_striped": {
        "add": {
          "component_groups": [
            "minecraft:wolf_striped"
          ]
        },
        "trigger": "minecraft:spawn_wild_baby_or_adult"
      },
      "minecraft:upgrade_to_1_21_100": {
        "sequence": [
          {
            "filters": {
              "test": "has_component",
              "operator": "!=",
              "value": "minecraft:angry"
            },
            "add": {
              "component_groups": [
                "minecraft:wolf_leashable"
              ]
            }
          },
          {
            "set_property": {
              "minecraft:was_upgraded_to_1_21_100": true
            }
          }
        ]
      }
    }
  }
}