mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 07:36:58 +00:00
372 lines
7.4 KiB
Lua
372 lines
7.4 KiB
Lua
-- MetaHunt Beast Families Database
|
|
-- Food map sourced from Turtle WoW Hunter Pets wiki
|
|
-- Total: 19 families
|
|
|
|
if not MTH_DS then MTH_DS = {} end
|
|
|
|
MTH_DS_Families = {
|
|
["Bats"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Bat",
|
|
["named"] = 20,
|
|
["coords"] = 18,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1, ["damage"] = 1.07 },
|
|
["food"] = {
|
|
"fruit",
|
|
"fungus",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dive",
|
|
"Growl",
|
|
"Screech",
|
|
},
|
|
},
|
|
["Bears"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Bear",
|
|
["named"] = 45,
|
|
["coords"] = 45,
|
|
["stats"] = { ["health"] = 1.08, ["armor"] = 1.05, ["damage"] = 0.91 },
|
|
["food"] = {
|
|
"meat",
|
|
"fish",
|
|
"bread",
|
|
"cheese",
|
|
"fruit",
|
|
"fungus",
|
|
"raw meat",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Claw",
|
|
"Cower",
|
|
"Growl",
|
|
"Roar of Fortitude",
|
|
},
|
|
},
|
|
["Boars"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Boar",
|
|
["named"] = 45,
|
|
["coords"] = 87,
|
|
["stats"] = { ["health"] = 1.04, ["armor"] = 1.09, ["damage"] = 0.9 },
|
|
["food"] = {
|
|
"meat",
|
|
"fish",
|
|
"bread",
|
|
"cheese",
|
|
"fruit",
|
|
"fungus",
|
|
"raw meat",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Charge",
|
|
"Cower",
|
|
"Dash",
|
|
"Growl",
|
|
},
|
|
},
|
|
["Carrion Birds"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Vulture",
|
|
["named"] = 36,
|
|
["coords"] = 101,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1.05, ["damage"] = 1 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Claw",
|
|
"Cower",
|
|
"Dive",
|
|
"Growl",
|
|
"Screech",
|
|
},
|
|
},
|
|
["Cats"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Cat",
|
|
["named"] = 85,
|
|
["coords"] = 88,
|
|
["stats"] = { ["health"] = 0.98, ["armor"] = 1, ["damage"] = 1.1 },
|
|
["food"] = {
|
|
"meat",
|
|
"fish",
|
|
"raw meat",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Claw",
|
|
"Cower",
|
|
"Dash",
|
|
"Growl",
|
|
"Prowl",
|
|
},
|
|
},
|
|
["Crabs"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Crab",
|
|
["named"] = 32,
|
|
["coords"] = 74,
|
|
["stats"] = { ["health"] = 0.96, ["armor"] = 1.13, ["damage"] = 0.95 },
|
|
["food"] = {
|
|
"fruit",
|
|
"fish",
|
|
"fungus",
|
|
"bread",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bubble Barrier",
|
|
"Claw",
|
|
"Cower",
|
|
"Growl",
|
|
},
|
|
},
|
|
["Crocolisks"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Crocolisk",
|
|
["named"] = 27,
|
|
["coords"] = 71,
|
|
["stats"] = { ["health"] = 0.95, ["armor"] = 1.1, ["damage"] = 1 },
|
|
["food"] = {
|
|
"meat",
|
|
"fish",
|
|
"raw meat",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Death Roll",
|
|
"Growl",
|
|
},
|
|
},
|
|
["Foxes"] = {
|
|
["icon"] = "ability_hunter_aspectofthefox",
|
|
["named"] = 9,
|
|
["coords"] = 51,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1, ["damage"] = 1.07 },
|
|
["food"] = {
|
|
"meat",
|
|
"fruit",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dash",
|
|
"Grace",
|
|
"Growl",
|
|
},
|
|
},
|
|
["Gorillas"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Gorilla",
|
|
["named"] = 24,
|
|
["coords"] = 117,
|
|
["stats"] = { ["health"] = 1.04, ["armor"] = 1, ["damage"] = 1.02 },
|
|
["food"] = {
|
|
"fruit",
|
|
"fungus",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Growl",
|
|
"Thunderstomp",
|
|
},
|
|
},
|
|
["Hyenas"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Hyena",
|
|
["named"] = 26,
|
|
["coords"] = 36,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1.05, ["damage"] = 1 },
|
|
["food"] = {
|
|
"meat",
|
|
"fruit",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dash",
|
|
"Growl",
|
|
"Packleader",
|
|
},
|
|
},
|
|
["Owls"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Owl",
|
|
["named"] = 16,
|
|
["coords"] = 59,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1, ["damage"] = 1.07 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Claw",
|
|
"Cower",
|
|
"Dive",
|
|
"Growl",
|
|
"Screech",
|
|
},
|
|
},
|
|
["Raptors"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Raptor",
|
|
["named"] = 51,
|
|
["coords"] = 115,
|
|
["stats"] = { ["health"] = 0.95, ["armor"] = 1.03, ["damage"] = 1.1 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Claw",
|
|
"Cower",
|
|
"Dash",
|
|
"Growl",
|
|
"Savage Rend",
|
|
},
|
|
},
|
|
["Scorpids"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Scorpid",
|
|
["named"] = 38,
|
|
["coords"] = 36,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1.1, ["damage"] = 0.94 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Claw",
|
|
"Cower",
|
|
"Growl",
|
|
"Scorpid Poison",
|
|
},
|
|
},
|
|
["Serpents"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Serpent1",
|
|
["named"] = 10,
|
|
["coords"] = 13,
|
|
["stats"] = { ["health"] = 1.03, ["armor"] = 1.03, ["damage"] = 1.135 },
|
|
["food"] = {
|
|
"meat",
|
|
"fish",
|
|
"raw meat",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Growl",
|
|
"Poison Spit",
|
|
},
|
|
},
|
|
["Spiders"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Spider",
|
|
["named"] = 91,
|
|
["coords"] = 213,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1, ["damage"] = 1.07 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Growl",
|
|
"Web",
|
|
},
|
|
},
|
|
["Tallstriders"] = {
|
|
["icon"] = "Ability_Hunter_Pet_TallStrider",
|
|
["named"] = 15,
|
|
["coords"] = 112,
|
|
["stats"] = { ["health"] = 1.05, ["armor"] = 1, ["damage"] = 1 },
|
|
["food"] = {
|
|
"fruit",
|
|
"fungus",
|
|
"bread",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dash",
|
|
"Growl",
|
|
"Strider Presence",
|
|
},
|
|
},
|
|
["Turtles"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Turtle",
|
|
["named"] = 25,
|
|
["coords"] = 42,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1.13, ["damage"] = 0.9 },
|
|
["food"] = {
|
|
"fruit",
|
|
"fish",
|
|
"fungus",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Growl",
|
|
"Shell Shield",
|
|
},
|
|
},
|
|
["Wind Serpents"] = {
|
|
["icon"] = "Ability_Hunter_Pet_WindSerpent",
|
|
["named"] = 27,
|
|
["coords"] = 42,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1, ["damage"] = 1.07 },
|
|
["food"] = {
|
|
"fish",
|
|
"cheese",
|
|
"bread",
|
|
"raw fish",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dive",
|
|
"Growl",
|
|
"Lightning Breath",
|
|
},
|
|
},
|
|
["Wolves"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Wolf",
|
|
["named"] = 81,
|
|
["coords"] = 99,
|
|
["stats"] = { ["health"] = 1, ["armor"] = 1.05, ["damage"] = 1 },
|
|
["food"] = {
|
|
"meat",
|
|
"raw meat",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Dash",
|
|
"Furious Howl",
|
|
"Growl",
|
|
},
|
|
},
|
|
-- ── Added TWoW 1.18.1 "Nightmares of Ursol" ──────────────────
|
|
["Moths"] = {
|
|
["icon"] = "Ability_Hunter_Pet_Moth", -- TODO: confirm MPQ icon name
|
|
["named"] = 0,
|
|
["coords"] = 0,
|
|
["food"] = {
|
|
"fruit",
|
|
"fungus",
|
|
},
|
|
["abilities"] = {
|
|
"Bite",
|
|
"Cower",
|
|
"Growl",
|
|
"Pollen Burst", -- family unique: 40 Focus, Instant, 30s CD
|
|
-- Heals party 308-338 (30yd), -20% atk speed targets (10yd, 8s)
|
|
},
|
|
},
|
|
} |