Module:Creatures: Difference between revisions

From UO Outlands Wiki
Jump to navigation Jump to search
mNo edit summary
m (Replaced content with "local p = {} function p.singleCreature(frame) local creatureArray = mw.loadData("WildCreatureData") -- Parameters passed when the function is invoked local creatureName = frame.args[1] -- Sun Wyrm local creatureType = frame.args[2] -- Strangelands/Ship local imageOverride = frame.args[3] -- sunwyrm.png local namespace = frame.args[4] -- {{NAMESPACE}} local iconImage = "" local wikiTable = "" local array = creatureArray i...")
Tag: Replaced
Line 1: Line 1:
  -- Wild Creature Information
local p = {}
  local creatureArray = {
    ["Arctic Arachnid"] = {
    ["location"] = "Winterlands",
    ["difficulty"] = 213.1,
    ["goldvalue"] = 2131,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Black Ice"] = {
    ["location"] = "Winterlands",
    ["difficulty"] = 181.7,
    ["goldvalue"] = 1817,
    ["hits"] = 8000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Mechanical Minion"] = {
    ["location"] = "Winterlands",
    ["difficulty"] = 279.8,
    ["goldvalue"] = 2798,
    ["hits"] = 14000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Drow Blademaster"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 53.9,
    ["goldvalue"] = 539,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["parry"] = 25,
    ["atkspd"] = 60,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Drow Ranger"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 50.7,
    ["goldvalue"] = 507,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 45,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    },
    ["Drow Spellweaver"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 80.4,
    ["goldvalue"] = 804,
    ["hits"] = 3500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Duergar Battlerager"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 68.3,
    ["goldvalue"] = 684,
    ["hits"] = 4500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    },
    ["Duergar Defender"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 56.1,
    ["goldvalue"] = 561,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 105,
    ["armor"] = 75,
    ["magicresist"] = 50,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Duergar Runemaster"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 64.9,
    ["goldvalue"] = 650,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Spitting Spider"] = {
    ["location"] = {"Wilderness","Undermountain"},
    ["difficulty"] = 44.6,
    ["goldvalue"] = 447,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Gazer Larva"] = {
    ["location"] = {"Wilderness","New Player Dungeon"},
    ["difficulty"] = 15.4,
    ["goldvalue"] = 154,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Abyssal Assassin"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 3370,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["poisontype"] = "Greater",
    ["poisoning"] = 20,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Air Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 31.4,
    ["goldvalue"] = 315,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Ancient Oak"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 86.2,
    ["goldvalue"] = 863,
    ["hits"] = 4000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Angry Ghost"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 35.8,
    ["goldvalue"] = 359,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["parry"] = 50,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Arboreal Defender"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 20.8,
    ["goldvalue"] = 208,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Arboreal Huntsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 31.1,
    ["goldvalue"] = 311,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Arboreal Stalker"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 23.6,
    ["goldvalue"] = 236,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 60,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Arboreal Tree-Tongue"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 43.7,
    ["goldvalue"] = 438,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Arboreal Warden"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.4,
    ["goldvalue"] = 264,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Arboreal Watcher"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.7,
    ["goldvalue"] = 227,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Astral Summoner"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 174.1,
    ["goldvalue"] = 1742,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 175,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Balewight"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2979,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["parry"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Barbaric Bruiser"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 145.4,
    ["goldvalue"] = 1455,
    ["hits"] = 12000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Barbaric Chieftain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 177.8,
    ["goldvalue"] = 1779,
    ["hits"] = 14000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Barbaric Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 100.3,
    ["goldvalue"] = 1004,
    ["hits"] = 10000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Barbaric Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 225.8,
    ["goldvalue"] = 2258,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Barbaric Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 117.2,
    ["goldvalue"] = 1173,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Bird of Paradise"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 270.8,
    ["goldvalue"] = 2709,
    ["hits"] = 10000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Blazing Archfiend"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 332,
    ["goldvalue"] = 3320,
    ["hits"] = 14000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 175,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Cult Enforcer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 35.4,
    ["goldvalue"] = 355,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Blood Cult Fanatic"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.1,
    ["goldvalue"] = 222,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Cult Prelate"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 56.5,
    ["goldvalue"] = 566,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Cult Priest"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 31,
    ["goldvalue"] = 310,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Blood Cult Torturer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 35.2,
    ["goldvalue"] = 352,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Blood Cult Zealot"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.5,
    ["goldvalue"] = 226,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Bonehorn"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 148.3,
    ["goldvalue"] = 1483,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Brambler"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 42.7,
    ["goldvalue"] = 427,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Bridge Troll"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 53.7,
    ["goldvalue"] = 538,
    ["hits"] = 3000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Brigand Ambusher"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 18.3,
    ["goldvalue"] = 184,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Brigand Beastmaster"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.3,
    ["goldvalue"] = 164,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Brigand Footman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 14,
    ["goldvalue"] = 140,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Brigand Hedge Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.4,
    ["goldvalue"] = 265,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Brigand Knifeman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.9,
    ["goldvalue"] = 169,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Brigand Leader"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 25.5,
    ["goldvalue"] = 256,
    ["hits"] = 2500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Brigand Ransacker"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 18.5,
    ["goldvalue"] = 185,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Brigand Thug"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 17.5,
    ["goldvalue"] = 175,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Brood Spider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 24,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Broodbearer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 978.9,
    ["goldvalue"] = 25000,
    ["hits"] = 75000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Lore Boss",
    },
    ["Brushfyre"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 195.8,
    ["goldvalue"] = 1959,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Bull"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2.3,
    ["goldvalue"] = 23,
    ["hits"] = 250,
    ["minmeleedmg"] = 8,
    ["maxmeleedmg"] = 16,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Bushwhacker"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 87.2,
    ["goldvalue"] = 873,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.7,
    },
    ["Cadaver"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 29.4,
    ["goldvalue"] = 294,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Cat"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.4,
    ["goldvalue"] = 4,
    ["hits"] = 50,
    ["minmeleedmg"] = 3,
    ["maxmeleedmg"] = 6,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Cattle Rustler"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 115.4,
    ["goldvalue"] = 1154,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    },
    ["Chicken"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.4,
    ["goldvalue"] = 4,
    ["hits"] = 50,
    ["minmeleedmg"] = 2,
    ["maxmeleedmg"] = 4,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Cinderwood"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 55.6,
    ["goldvalue"] = 557,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1.25,
    },
    ["Colossal Boa"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 244.3,
    ["goldvalue"] = 2444,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Colossal Huntsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 297.6,
    ["goldvalue"] = 2977,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Colossal Strider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 369,
    ["goldvalue"] = 3690,
    ["hits"] = 16000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Corpser"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 5.1,
    ["goldvalue"] = 52,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1,
    },
    ["Cow"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 1.3,
    ["goldvalue"] = 13,
    ["hits"] = 150,
    ["minmeleedmg"] = 6,
    ["maxmeleedmg"] = 12,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Crude Oil"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 195.9,
    ["goldvalue"] = 1959,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Cyclopean Fire Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 69.6,
    ["goldvalue"] = 696,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Cyclops"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 56.8,
    ["goldvalue"] = 568,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Daemon"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 158.9,
    ["goldvalue"] = 1590,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Daylights"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 65.1,
    ["goldvalue"] = 652,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Deranged Monster Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 27.7,
    ["goldvalue"] = 277,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Deserter Captain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 28.7,
    ["goldvalue"] = 287,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Deserter Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.5,
    ["goldvalue"] = 265,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Deserter Scout"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 15.7,
    ["goldvalue"] = 158,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Deserter Soldier"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.3,
    ["goldvalue"] = 223,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Desertwing"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 108.6,
    ["goldvalue"] = 1087,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Disgraced Knight"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 30.5,
    ["goldvalue"] = 306,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Disgraced Man-At-Arms"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22,
    ["goldvalue"] = 220,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Disgraced Squire"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.8,
    ["goldvalue"] = 199,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Dog"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.4,
    ["goldvalue"] = 4,
    ["hits"] = 50,
    ["minmeleedmg"] = 3,
    ["maxmeleedmg"] = 6,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Dragon Worshipper"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 230.4,
    ["goldvalue"] = 2304,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["atkspd"] = 45,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Druid Bear Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38.1,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    },
    ["Druid Elk Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38.5,
    ["goldvalue"] = 385,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    },
    ["Dust Devil"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 251.8,
    ["goldvalue"] = 2519,
    ["hits"] = 12000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 140,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2,
    },
    ["Eagle"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.6,
    ["goldvalue"] = 7,
    ["hits"] = 75,
    ["minmeleedmg"] = 4,
    ["maxmeleedmg"] = 8,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Earth Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 32.9,
    ["goldvalue"] = 329,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Echo Of A Lost Age"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 1253,
    ["goldvalue"] = 25000,
    ["hits"] = 75000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 200,
    ["parry"] = 100,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Lore Boss",
    },
    ["Ettin"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 29.2,
    ["goldvalue"] = 292,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Ettin Stoneguard"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 41.5,
    ["goldvalue"] = 415,
    ["hits"] = 3000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Evil Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 34.8,
    ["goldvalue"] = 349,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Fire Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 34.8,
    ["goldvalue"] = 349,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Flamekeeper"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 991.3,
    ["goldvalue"] = 25000,
    ["hits"] = 75000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Lore Boss",
    },
    ["Floodwater"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 126,
    ["goldvalue"] = 1260,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Frenzied Gladiator"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 23.2,
    ["goldvalue"] = 233,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Frost Daemon"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 166.1,
    ["goldvalue"] = 1662,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Frostbane Acolyte"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 27.4,
    ["goldvalue"] = 275,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Frostbane Priest"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 42.4,
    ["goldvalue"] = 425,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Frostbane Vicar"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 59.8,
    ["goldvalue"] = 599,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Fungle"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 53.5,
    ["goldvalue"] = 536,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Fyrewood"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 244.1,
    ["goldvalue"] = 2441,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Gargoyle"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 31.8,
    ["goldvalue"] = 319,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Gazer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.2,
    ["goldvalue"] = 223,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Ghostly Archer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 14.9,
    ["goldvalue"] = 150,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Ghostly Footman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 21.6,
    ["goldvalue"] = 217,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Ghostly Foreman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 24.1,
    ["goldvalue"] = 242,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Ghostly Knight"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.9,
    ["goldvalue"] = 270,
    ["hits"] = 2500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 95,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Ghostly Lumberjack"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 13.6,
    ["goldvalue"] = 136,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Giant Spider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.2,
    ["goldvalue"] = 163,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Giant Strider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 234.9,
    ["goldvalue"] = 2350,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Gloomwood Brute"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 130.8,
    ["goldvalue"] = 1308,
    ["hits"] = 10000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Gloomwood Firebreather"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 160,
    ["goldvalue"] = 1601,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Gloomwood Fury"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 196.3,
    ["goldvalue"] = 1963,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 90,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Gloomwood Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 131.8,
    ["goldvalue"] = 1319,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Gloomwood Medicine Man"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 177.7,
    ["goldvalue"] = 1778,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Gloomwood Pathfinder"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 125.1,
    ["goldvalue"] = 1252,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Gloomwood Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 195.8,
    ["goldvalue"] = 1958,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Gloomwood Snakehandler"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 139.2,
    ["goldvalue"] = 1392,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Goat"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.6,
    ["goldvalue"] = 6,
    ["hits"] = 75,
    ["minmeleedmg"] = 4,
    ["maxmeleedmg"] = 8,
    ["wrestling"] = 35,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Grasping Vines"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.8,
    ["goldvalue"] = 198,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Grave Robber"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 13.6,
    ["goldvalue"] = 136,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Great Hart"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 1.1,
    ["goldvalue"] = 11,
    ["hits"] = 125,
    ["minmeleedmg"] = 6,
    ["maxmeleedmg"] = 12,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Greater Infernal Daemon"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2476,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Grinding Stone"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 46.8,
    ["goldvalue"] = 469,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Hardwood"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 65.7,
    ["goldvalue"] = 658,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Harpy"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 10,
    ["goldvalue"] = 101,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Highwayman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 77.6,
    ["goldvalue"] = 776,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Hind"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.8,
    ["goldvalue"] = 9,
    ["hits"] = 100,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Horsethief"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 85.3,
    ["goldvalue"] = 853,
    ["hits"] = 8000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.05,
    },
    ["Ice Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 29.3,
    ["goldvalue"] = 294,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Lich Primarch"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 3145,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Lingering Handmaid"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 36,
    ["goldvalue"] = 361,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Lingering Maiden"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 55.7,
    ["goldvalue"] = 557,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1,
    },
    ["Living Necromancer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 58.3,
    ["goldvalue"] = 583,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Lizardman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 13.7,
    ["goldvalue"] = 137,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Lizardman Elite Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38.6,
    ["goldvalue"] = 386,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Lizardman Elite Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 46.3,
    ["goldvalue"] = 463,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Lizardman Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.7,
    ["goldvalue"] = 268,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Lizardman Warchief"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 77.8,
    ["goldvalue"] = 779,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Magma Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 185.7,
    ["goldvalue"] = 1857,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Magma Serpent"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 225.9,
    ["goldvalue"] = 2260,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Magpie"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.2,
    ["goldvalue"] = 2,
    ["hits"] = 25,
    ["minmeleedmg"] = 2,
    ["maxmeleedmg"] = 4,
    ["wrestling"] = 25,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Marooned Pirate"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 13.3,
    ["goldvalue"] = 134,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Marooned Pirate Captain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 27.3,
    ["goldvalue"] = 274,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Marshscale Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 173.6,
    ["goldvalue"] = 1736,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Marshscale Warchief"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 337,
    ["goldvalue"] = 3371,
    ["hits"] = 16000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Marshscale Warrior"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 211.2,
    ["goldvalue"] = 2113,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Minax Prisoner"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 35.7,
    ["goldvalue"] = 357,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Minotaur Conqueror"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 276.3,
    ["goldvalue"] = 2763,
    ["hits"] = 14000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Minotaur Reaver"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 95.8,
    ["goldvalue"] = 959,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.7,
    },
    ["Minotaur Skirmisher"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 88.4,
    ["goldvalue"] = 884,
    ["hits"] = 4000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 60,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Minotaur Vanquisher"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 240.2,
    ["goldvalue"] = 2402,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Minotaur War Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 73.9,
    ["goldvalue"] = 739,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Molten Idol"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38.8,
    ["goldvalue"] = 388,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Mongbat"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 1.6,
    ["goldvalue"] = 17,
    ["hits"] = 200,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 25,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Murkshroom"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 128.7,
    ["goldvalue"] = 1287,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Murkvines"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 172.1,
    ["goldvalue"] = 1721,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 150,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1.8,
    },
    ["Naiad"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 29.2,
    ["goldvalue"] = 293,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Naiad Matron"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 56.8,
    ["goldvalue"] = 568,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Nomadic Guard"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 15.2,
    ["goldvalue"] = 153,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Nomadic Horse Archer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.1,
    ["goldvalue"] = 162,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Nomadic Janissary"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 17.2,
    ["goldvalue"] = 172,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Nomadic Outrider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.5,
    ["goldvalue"] = 166,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Nomadic Rifleman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 17.9,
    ["goldvalue"] = 179,
    ["hits"] = 1500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Norse Axeman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 23.6,
    ["goldvalue"] = 237,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Norse Bear Rider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 30.7,
    ["goldvalue"] = 308,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Norse Firetender"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 44.1,
    ["goldvalue"] = 441,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Norse Hammerman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 23.6,
    ["goldvalue"] = 237,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Norse Herdsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 43.2,
    ["goldvalue"] = 432,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    },
    ["Norse Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38.3,
    ["goldvalue"] = 383,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Norse Settler"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 43.4,
    ["goldvalue"] = 435,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2.5,
    },
    ["Norse Swordsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 24,
    ["goldvalue"] = 240,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Norse Trapper"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 23.5,
    ["goldvalue"] = 235,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Oasis Spirit Guard"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 143.3,
    ["goldvalue"] = 1434,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Oasis Spirit Keeper"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 271.4,
    ["goldvalue"] = 2714,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Ogre"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 22.2,
    ["goldvalue"] = 223,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Ogre Lord"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 50.5,
    ["goldvalue"] = 505,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Ogre Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 37.4,
    ["goldvalue"] = 374,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Orc"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 8,
    ["goldvalue"] = 81,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Orc Captain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 11.1,
    ["goldvalue"] = 111,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Orc Lord"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 21.4,
    ["goldvalue"] = 214,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Orc Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 10.6,
    ["goldvalue"] = 107,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Outlaw"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 70.2,
    ["goldvalue"] = 702,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Pig"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.6,
    ["goldvalue"] = 6,
    ["hits"] = 75,
    ["minmeleedmg"] = 3,
    ["maxmeleedmg"] = 6,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Prison Sentinel"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 46.8,
    ["goldvalue"] = 469,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Prison Warden"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 86.8,
    ["goldvalue"] = 868,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Prison Watchstone"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 62.5,
    ["goldvalue"] = 626,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.05,
    },
    ["Pure Obsidian"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 247.8,
    ["goldvalue"] = 2478,
    ["hits"] = 12000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Raging Tempest"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 219.1,
    ["goldvalue"] = 2192,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Ratman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 10.1,
    ["goldvalue"] = 102,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Reaper"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 43.8,
    ["goldvalue"] = 438,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 60,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1,
    },
    ["Rebel Captain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 30,
    ["goldvalue"] = 301,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Rebel Field Medic"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 16.6,
    ["goldvalue"] = 167,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Rebel Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.5,
    ["goldvalue"] = 265,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Rebel Scout"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 14.5,
    ["goldvalue"] = 146,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Rebel Soldier"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 14,
    ["goldvalue"] = 140,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Red Rocks"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 148.4,
    ["goldvalue"] = 1484,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Sandstalker"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 126.5,
    ["goldvalue"] = 1265,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Scoria"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 190.1,
    ["goldvalue"] = 1901,
    ["hits"] = 10000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Sheep"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 0.4,
    ["goldvalue"] = 4,
    ["hits"] = 50,
    ["minmeleedmg"] = 3,
    ["maxmeleedmg"] = 6,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Skeletal Marksman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 15.2,
    ["goldvalue"] = 152,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Skeletal Retinue"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 18.6,
    ["goldvalue"] = 186,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Skeletal Scout"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.4,
    ["goldvalue"] = 194,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Skeletal Woodsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 13.5,
    ["goldvalue"] = 136,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Smouldering Gargoyle"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 180.2,
    ["goldvalue"] = 1803,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Solbeast"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 402.8,
    ["goldvalue"] = 4028,
    ["hits"] = 20000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Spectral Cavalry"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 96,
    ["goldvalue"] = 960,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Spectral Citizen"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 62.6,
    ["goldvalue"] = 626,
    ["hits"] = 6000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Craftsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 70.1,
    ["goldvalue"] = 701,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Guard"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 94.7,
    ["goldvalue"] = 947,
    ["hits"] = 8000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Militia"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 64.6,
    ["goldvalue"] = 646,
    ["hits"] = 6000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Scout"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 87.9,
    ["goldvalue"] = 879,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Spectral Scribe"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 147.8,
    ["goldvalue"] = 1478,
    ["hits"] = 6000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Spectral Seer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 126.7,
    ["goldvalue"] = 1267,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Spitroleum"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 151.2,
    ["goldvalue"] = 1512,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Sporier"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 37,
    ["goldvalue"] = 370,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Standing Water"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 188.4,
    ["goldvalue"] = 1884,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Sunscale"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 289.4,
    ["goldvalue"] = 2894,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Sunstone Air Mage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 166.9,
    ["goldvalue"] = 1669,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Sunstone Alchemer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 98.6,
    ["goldvalue"] = 987,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Sunstone Guardsman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 78,
    ["goldvalue"] = 780,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Sunstone Noble"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 194.8,
    ["goldvalue"] = 1949,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Sunstone Royal Guard"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 141.8,
    ["goldvalue"] = 1418,
    ["hits"] = 10000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Sunstone Sentry"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 83.6,
    ["goldvalue"] = 836,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Swampgas"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 201,
    ["goldvalue"] = 2010,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Tarbody"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 137.3,
    ["goldvalue"] = 1374,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Traveling Sellbow"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 133.4,
    ["goldvalue"] = 1334,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Traveling Sellsword"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 155.5,
    ["goldvalue"] = 1555,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Tribal Chieftain"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 35.7,
    ["goldvalue"] = 357,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Tribal Fanatic"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 20.7,
    ["goldvalue"] = 208,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Tribal Hunter"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 24.8,
    ["goldvalue"] = 249,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Tribal Poisoner"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 27.9,
    ["goldvalue"] = 280,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Tribal Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 43.6,
    ["goldvalue"] = 436,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Troll"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 18.3,
    ["goldvalue"] = 184,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Troll Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 34.7,
    ["goldvalue"] = 347,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Umbermare Defender"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 18.4,
    ["goldvalue"] = 185,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Umbermare Harrier"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 25.5,
    ["goldvalue"] = 255,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Umbermare Lancer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 30.7,
    ["goldvalue"] = 308,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Umbermare Marksman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.8,
    ["goldvalue"] = 198,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["atkspd"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Umbermare Outrider"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 27.8,
    ["goldvalue"] = 279,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Umbermare Ranger"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 21.6,
    ["goldvalue"] = 216,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Umbermare Seer"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 51.9,
    ["goldvalue"] = 520,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Umbermare Spearman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.7,
    ["goldvalue"] = 197,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Ursal Exile"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 26.7,
    ["goldvalue"] = 267,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Vengeful Ghost"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 34.1,
    ["goldvalue"] = 342,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Warpig"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 137.7,
    ["goldvalue"] = 1377,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Water Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 38,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Weald Rat Shaman"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 19.3,
    ["goldvalue"] = 194,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["atkspd"] = 45,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Wight"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 20.7,
    ["goldvalue"] = 207,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["parry"] = 50,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Dirge Spider"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 11.4,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Drider Scourge"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 127.5,
    ["goldvalue"] = 1276,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Drider Websinger"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 129.1,
    ["goldvalue"] = 1291,
    ["hits"] = 5000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Lloth's Balor"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 913.5,
    ["goldvalue"] = 50000,
    ["hits"] = 1000000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 0.15,
    ["bosstype"] = "Undermountain Boss",
    },
    ["Mind Flayer"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 60.6,
    ["goldvalue"] = 606,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Mind Flayer Thrall"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 39.5,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["The Gray Exile"] = {
    ["location"] = "Undermountain",
    ["difficulty"] = 722.3,
    ["goldvalue"] = 50000,
    ["hits"] = 1000000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 200,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 0.1,
    },
    ["Abyss Whisperer"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 703.3,
    ["goldvalue"] = 7033,
    ["hits"] = 40000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Acid Slug"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 345.9,
    ["goldvalue"] = 3460,
    ["hits"] = 16000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 75,
    ["atkspd"] = 40,
    ["poisontype"] = "Greater",
    ["poisoning"] = 10,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["All Seer"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 814.8,
    ["goldvalue"] = 8148,
    ["hits"] = 35000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 80,
    ["magicresist"] = 300,
    ["atkspd"] = 50,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Alpha Shadowbeast"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 2754,
    ["goldvalue"] = 27538,
    ["hits"] = 125000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 150,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Ancient Wyrm"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 14497,
    ["goldvalue"] = 144970,
    ["hits"] = 250000,
    ["minmeleedmg"] = 120,
    ["maxmeleedmg"] = 150,
    ["wrestling"] = 120,
    ["armor"] = 200,
    ["magicresist"] = 400,
    ["atkspd"] = 60,
    ["magery"] = 800,
    ["minspelldmg"] = 160,
    ["maxspelldmg"] = 170,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Beastial",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Apostate Captain"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 138.3,
    ["goldvalue"] = 1384,
    ["hits"] = 12000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["atkspd"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Apostate Mage"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 114.5,
    ["goldvalue"] = 1145,
    ["hits"] = 6500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Apostate Medic"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 111,
    ["goldvalue"] = 1110,
    ["hits"] = 8500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["atkspd"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Apostate Scout"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 119.2,
    ["goldvalue"] = 1192,
    ["hits"] = 8000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 70,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 15,
    ["poisonresist"] = 0.25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Apostate Soldier"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 118.4,
    ["goldvalue"] = 1184,
    ["hits"] = 10750,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 125,
    ["magicresist"] = 0,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Balron"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 976,
    ["goldvalue"] = 9760,
    ["hits"] = 30000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 200,
    ["atkspd"] = 60,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Bedlam Gazer"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 938.1,
    ["goldvalue"] = 9381,
    ["hits"] = 30000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 300,
    ["atkspd"] = 50,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Blackrock Cultist"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 660.3,
    ["goldvalue"] = 6603,
    ["hits"] = 20000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["atkspd"] = 50,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Blackrock Elemental"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 627,
    ["goldvalue"] = 6270,
    ["hits"] = 35000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 400,
    ["atkspd"] = 40,
    ["poisonresist"] = 1,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Burning Lich Lord"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3210,
    ["goldvalue"] = 32105,
    ["hits"] = 135000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 200,
    ["atkspd"] = 60,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Chaos Dweller"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 730.9,
    ["goldvalue"] = 7309,
    ["hits"] = 32000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Chaos Spawn"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 768.4,
    ["goldvalue"] = 7684,
    ["hits"] = 32000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 75,
    ["parry"] = 25,
    ["atkspd"] = 50,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Daemonic",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Chaotic Mass"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 806.9,
    ["goldvalue"] = 8070,
    ["hits"] = 40000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 200,
    ["atkspd"] = 40,
    ["poisonresist"] = 1,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Chud"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 378.9,
    ["goldvalue"] = 3790,
    ["hits"] = 18000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 115,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["atkspd"] = 40,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Conservator Of Time"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 348,
    ["goldvalue"] = 3481,
    ["hits"] = 15000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 125,
    ["parry"] = 100,
    ["atkspd"] = 40,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Corpse Drinker"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 552.1,
    ["goldvalue"] = 5522,
    ["hits"] = 32000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 125,
    ["magicresist"] = 50,
    ["atkspd"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Cursed Prevalian"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 624.2,
    ["goldvalue"] = 6242,
    ["hits"] = 26000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Doomed Deckhand"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 236.5,
    ["goldvalue"] = 2366,
    ["hits"] = 20000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["parry"] = 100,
    ["atkspd"] = 60,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Entropic Weaver"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 729,
    ["goldvalue"] = 7291,
    ["hits"] = 28000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Entropy Catalyst"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 513.7,
    ["goldvalue"] = 5137,
    ["hits"] = 26000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 110,
    ["armor"] = 120,
    ["magicresist"] = 50,
    ["parry"] = 50,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Errant Core Of Exodus"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1120,
    ["goldvalue"] = 11203,
    ["hits"] = 50000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 120,
    ["magicresist"] = 200,
    ["parry"] = 100,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisonresist"] = 1,
    ["stealth"] = "X",
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Ettin Lord"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 371,
    ["goldvalue"] = 3711,
    ["hits"] = 15000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 175,
    ["magicresist"] = 0,
    ["atkspd"] = 40,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Exodus Construct Mk 1"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 54.3,
    ["goldvalue"] = 544,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 50,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Exodus Construct Mk 2"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 173.9,
    ["goldvalue"] = 1739,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 125,
    ["magicresist"] = 75,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Exodus Construct Mk3"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 248.2,
    ["goldvalue"] = 2482,
    ["hits"] = 12000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Exodus Construct Mk4"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 320.3,
    ["goldvalue"] = 3204,
    ["hits"] = 15000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 110,
    ["armor"] = 125,
    ["magicresist"] = 125,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Exodus Construct Mk5"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 441.5,
    ["goldvalue"] = 4415,
    ["hits"] = 18000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 125,
    ["magicresist"] = 125,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    },
    ["Exodus Project Overseer"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 380.6,
    ["goldvalue"] = 3807,
    ["hits"] = 15000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Exodus Researcher"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 372,
    ["goldvalue"] = 3720,
    ["hits"] = 15000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Exoguard"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 378,
    ["goldvalue"] = 3780,
    ["hits"] = 22000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 150,
    ["armor"] = 250,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["atkspd"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    },
    ["Exothrrug"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 4295,
    ["goldvalue"] = 42952,
    ["hits"] = 80000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 75,
    ["poisonresist"] = 0.95,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 2.5,
    },
    ["Fenpire"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 441.1,
    ["goldvalue"] = 4412,
    ["hits"] = 20000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 250,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["poisontype"] = "Greater",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Flesh Golem"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 510.5,
    ["goldvalue"] = 5105,
    ["hits"] = 28000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Forgotten Golem"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3392,
    ["goldvalue"] = 33916,
    ["hits"] = 150000,
    ["minmeleedmg"] = 120,
    ["maxmeleedmg"] = 150,
    ["wrestling"] = 120,
    ["armor"] = 400,
    ["magicresist"] = 50,
    ["parry"] = 100,
    ["atkspd"] = 40,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Greater Balron"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1783,
    ["goldvalue"] = 17834,
    ["hits"] = 45000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 150,
    ["armor"] = 150,
    ["magicresist"] = 300,
    ["atkspd"] = 60,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Greater Blackrock Elemental"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 5284,
    ["goldvalue"] = 52844,
    ["hits"] = 150000,
    ["minmeleedmg"] = 150,
    ["maxmeleedmg"] = 170,
    ["wrestling"] = 120,
    ["armor"] = 150,
    ["magicresist"] = 800,
    ["atkspd"] = 50,
    ["poisonresist"] = 1,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Greater Blood Elemental"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 488.4,
    ["goldvalue"] = 4884,
    ["hits"] = 22000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Greater Dragon"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1101,
    ["goldvalue"] = 11015,
    ["hits"] = 40000,
    ["minmeleedmg"] = 75,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 130,
    ["armor"] = 150,
    ["magicresist"] = 100,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Beastial",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Greater Gazer"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 463.8,
    ["goldvalue"] = 4638,
    ["hits"] = 18000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    },
    ["Greater Lich"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 493.9,
    ["goldvalue"] = 4939,
    ["hits"] = 17000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Greater Rotting Corpse"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 438.7,
    ["goldvalue"] = 4387,
    ["hits"] = 18000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Greater Sea Serpent"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 390.4,
    ["goldvalue"] = 3905,
    ["hits"] = 18000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Greater Smoke Dragon"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1102,
    ["goldvalue"] = 11021,
    ["hits"] = 40000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 180,
    ["magicresist"] = 150,
    ["parry"] = 25,
    ["atkspd"] = 50,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["poisonresist"] = 0.5,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Green Bloodworm"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 328.7,
    ["goldvalue"] = 3287,
    ["hits"] = 16000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["atkspd"] = 40,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 20,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Guardian Of Time"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 161.8,
    ["goldvalue"] = 1619,
    ["hits"] = 7000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 100,
    ["atkspd"] = 40,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Headless Fred"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1911,
    ["goldvalue"] = 19107,
    ["hits"] = 110000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 300,
    ["magicresist"] = 0,
    ["atkspd"] = 50,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Headless Fred's Head"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 2766,
    ["goldvalue"] = 27664,
    ["hits"] = 150000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 300,
    ["atkspd"] = 60,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Hungry Prevalian"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 713,
    ["goldvalue"] = 7131,
    ["hits"] = 25000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Indecorous Mage"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 187.8,
    ["goldvalue"] = 1879,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["atkspd"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["King Muck"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3648,
    ["goldvalue"] = 36485,
    ["hits"] = 150000,
    ["minmeleedmg"] = 90,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 120,
    ["armor"] = 500,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["atkspd"] = 50,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 33,
    ["poisonresist"] = 1,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Foulglow Kraul Hivemother"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 1201.7,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["bosstype"] = "Mini Boss"
    },
    ["Lesser Balron"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 664.6,
    ["goldvalue"] = 6647,
    ["hits"] = 25000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 140,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Living Arsenal"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3641,
    ["goldvalue"] = 36415,
    ["hits"] = 90000,
    ["minmeleedmg"] = 110,
    ["maxmeleedmg"] = 130,
    ["wrestling"] = 150,
    ["armor"] = 100,
    ["magicresist"] = 75,
    ["atkspd"] = 40,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    },
    ["Living Waste"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 387,
    ["goldvalue"] = 3870,
    ["hits"] = 15000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["poisontype"] = "Greater",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.75,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Living Weapon"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 414.1,
    ["goldvalue"] = 4142,
    ["hits"] = 10000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["atkspd"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    },
    ["Marble Golem"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 398.5,
    ["goldvalue"] = 3986,
    ["hits"] = 20000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 200,
    ["magicresist"] = 25,
    ["atkspd"] = 40,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 1,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Maw Of The Abyss"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 6250,
    ["goldvalue"] = 62505,
    ["hits"] = 130000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 150,
    ["magicresist"] = 100,
    ["atkspd"] = 50,
    ["magery"] = 300,
    ["minspelldmg"] = 60,
    ["maxspelldmg"] = 70,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 2.5,
    },
    ["Meat Cur"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 489.2,
    ["goldvalue"] = 4892,
    ["hits"] = 25000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Meat Thing"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 4421,
    ["goldvalue"] = 44212,
    ["hits"] = 130000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 140,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["atkspd"] = 50,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    },
    ["Navrey Night-Eyes"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1109,
    ["goldvalue"] = 11093,
    ["hits"] = 60000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 200,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.9,
    ["slayer"] = "Beastial",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Navreys Broodling"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 202.2,
    ["goldvalue"] = 2022,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 40,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.7,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Navreys Spawn"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 252.9,
    ["goldvalue"] = 2529,
    ["hits"] = 12000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 40,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Navreys Spiderling"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 136.2,
    ["goldvalue"] = 1362,
    ["hits"] = 8000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Non-Euclidean Space"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 958.1,
    ["goldvalue"] = 9582,
    ["hits"] = 32000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 200,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisonresist"] = 0.66,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Nox Elemental"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 561.7,
    ["goldvalue"] = 5617,
    ["hits"] = 20000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["atkspd"] = 40,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 1,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Nox Elemental"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 344.8,
    ["goldvalue"] = 3449,
    ["hits"] = 15000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 33,
    ["poisonresist"] = 0.75,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Ochu"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 492.4,
    ["goldvalue"] = 4924,
    ["hits"] = 20000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Offal Eater"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 333,
    ["goldvalue"] = 3331,
    ["hits"] = 18000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 75,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 15,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Old Friend Of Captain Johne"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 473.8,
    ["goldvalue"] = 4738,
    ["hits"] = 40000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["atkspd"] = 40,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Poison Finger"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3581,
    ["goldvalue"] = 35809,
    ["hits"] = 200000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 80,
    ["magicresist"] = 150,
    ["parry"] = 25,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 1,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Protector Of Time"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 244.2,
    ["goldvalue"] = 2442,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["parry"] = 100,
    ["atkspd"] = 40,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Ratman Rogue"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 471.4,
    ["goldvalue"] = 4714,
    ["hits"] = 14000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["atkspd"] = 50,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Ratman Warrior"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 429.9,
    ["goldvalue"] = 4300,
    ["hits"] = 16000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 125,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Ratman Wizard"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 454.5,
    ["goldvalue"] = 4546,
    ["hits"] = 14000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Reflection"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 491.9,
    ["goldvalue"] = 4919,
    ["hits"] = 25000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.05,
    },
    ["Researcher Of Time"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 461.2,
    ["goldvalue"] = 4612,
    ["hits"] = 15000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["atkspd"] = 50,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Rotworm"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 336.9,
    ["goldvalue"] = 3369,
    ["hits"] = 15000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 50,
    ["poisonresist"] = 0.25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Shadowbeast"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 359.4,
    ["goldvalue"] = 3594,
    ["hits"] = 17000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 50,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Silver Bear"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 166.6,
    ["hits"] = 7500,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 75,
    ["wrestling"] = 120,
    ["armor"] = 150,
    ["magicresist"] = 75,
    ["parry"] = 75,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Silver Serpent"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 312.2,
    ["hits"] = 8000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 100,
    ["poisonresist"] = 0.9,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Silver Stag"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 144.1,
    ["hits"] = 4000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["atkspd"] = 50,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Silver Weapon"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 781.7,
    ["hits"] = 10000,
    ["minmeleedmg"] = 120,
    ["maxmeleedmg"] = 180,
    ["wrestling"] = 150,
    ["armor"] = 125,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    },
    ["Silver Wolf"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 137.7,
    ["hits"] = 3000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 80,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Sneaking Spiderling"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 291.7,
    ["goldvalue"] = 2917,
    ["hits"] = 12000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["atkspd"] = 40,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.5,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    },
    ["Strongarm Bill"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3937,
    ["goldvalue"] = 39367,
    ["hits"] = 100000,
    ["minmeleedmg"] = 100,
    ["maxmeleedmg"] = 150,
    ["wrestling"] = 200,
    ["armor"] = 75,
    ["magicresist"] = 50,
    ["parry"] = 75,
    ["atkspd"] = 50,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["The Cataract"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3447,
    ["goldvalue"] = 34466,
    ["hits"] = 151000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 300,
    ["atkspd"] = 60,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["The Damsel"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 6211,
    ["goldvalue"] = 62109,
    ["hits"] = 225000,
    ["minmeleedmg"] = 90,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 150,
    ["armor"] = 250,
    ["magicresist"] = 50,
    ["atkspd"] = 50,
    ["poisonresist"] = 0.25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["The Forgotten One"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 6658,
    ["goldvalue"] = 66584,
    ["hits"] = 250000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 140,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["atkspd"] = 50,
    ["poisontype"] = "Greater",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["The One Left Behind"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 4006,
    ["goldvalue"] = 40060,
    ["hits"] = 175000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 150,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["The One Who Seeks"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 825.9,
    ["goldvalue"] = 8259,
    ["hits"] = 50000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 200,
    ["parry"] = 100,
    ["atkspd"] = 40,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["The One Who Wanders"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 6107,
    ["goldvalue"] = 61066,
    ["hits"] = 260000,
    ["minmeleedmg"] = 90,
    ["maxmeleedmg"] = 100,
    ["wrestling"] = 130,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["atkspd"] = 50,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Time Cultist"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 387.1,
    ["goldvalue"] = 3871,
    ["hits"] = 20000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["atkspd"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Time Lurker"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 568,
    ["goldvalue"] = 5681,
    ["hits"] = 30000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 100,
    ["magicresist"] = 150,
    ["parry"] = 25,
    ["atkspd"] = 40,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisonresist"] = 0.5,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Timeless Cursed"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 606.5,
    ["goldvalue"] = 6065,
    ["hits"] = 25000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["atkspd"] = 40,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Troll King"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 380.3,
    ["goldvalue"] = 3804,
    ["hits"] = 20000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 150,
    ["magicresist"] = 25,
    ["atkspd"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Troll Thrall"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 309.5,
    ["goldvalue"] = 3095,
    ["hits"] = 20000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 150,
    ["magicresist"] = 0,
    ["atkspd"] = 40,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Twisted Prevalian"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 524.1,
    ["goldvalue"] = 5241,
    ["hits"] = 36000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 50,
    ["parry"] = 25,
    ["atkspd"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Tyball The Cursed"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 3983,
    ["goldvalue"] = 39827,
    ["hits"] = 150000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 275,
    ["minspelldmg"] = 55,
    ["maxspelldmg"] = 65,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Void Lurker"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 945,
    ["goldvalue"] = 9451,
    ["hits"] = 40000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 100,
    ["magicresist"] = 150,
    ["atkspd"] = 50,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Void Spawn"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 1187,
    ["goldvalue"] = 11869,
    ["hits"] = 38000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["parry"] = 50,
    ["atkspd"] = 50,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Warped Prevalian"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 786.6,
    ["goldvalue"] = 7867,
    ["hits"] = 30000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Zorn"] = {
    ["location"] = "Time Dungeon",
    ["difficulty"] = 422.6,
    ["goldvalue"] = 4227,
    ["hits"] = 10000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 475,
    ["atkspd"] = 40,
    ["poisonresist"] = 0.5,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2.5,
    },
    ["Abomination"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 70.3,
    ["goldvalue"] = 704,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Apparition"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 73.1,
    ["goldvalue"] = 731,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Astral Dread"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 416.4,
    ["goldvalue"] = 4165,
    ["hits"] = 16000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 140,
    ["armor"] = 25,
    ["magicresist"] = 225,
    ["magery"] = 225,
    ["minspelldmg"] = 45,
    ["maxspelldmg"] = 55,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Banshee"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 70.2,
    ["goldvalue"] = 703,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 50,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.2,
    },
    ["Blightmare"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 72.8,
    ["goldvalue"] = 728,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Bound Soul"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 75.4,
    ["goldvalue"] = 754,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Calamity"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 38.1,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Carrion Beetle"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 38.1,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Corpse Eater"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 10.1,
    ["goldvalue"] = 101,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Corpse Purger"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 58.1,
    ["goldvalue"] = 581,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Corpsebride"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 51.7,
    ["goldvalue"] = 518,
    ["hits"] = 3000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Darkscale"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 399.1,
    ["goldvalue"] = 3992,
    ["hits"] = 18000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Devourer Beetle"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 62,
    ["goldvalue"] = 621,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Elder Vampire"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 119.4,
    ["goldvalue"] = 1195,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Elder Vampire Countess"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 120.3,
    ["goldvalue"] = 1203,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Eldritch Dreamer"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 320.1,
    ["goldvalue"] = 3201,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 140,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Eldritch Experiment"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 26.8,
    ["goldvalue"] = 269,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Entozoon"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 226.2,
    ["goldvalue"] = 2262,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Familiar"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 10.2,
    ["goldvalue"] = 103,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Fellbeast"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 522.9,
    ["goldvalue"] = 5230,
    ["hits"] = 25000,
    ["minmeleedmg"] = 80,
    ["maxmeleedmg"] = 90,
    ["wrestling"] = 140,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Flesh Hound"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 38.2,
    ["goldvalue"] = 382,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Flesh Mob"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 235,
    ["goldvalue"] = 2350,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Fleshweaver"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 223.5,
    ["goldvalue"] = 2236,
    ["hits"] = 8000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Forgotten Soul"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 77.8,
    ["goldvalue"] = 778,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Gatekeeper"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 3552,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Gristle"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 277.8,
    ["goldvalue"] = 2778,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 170,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.7,
    },
    ["Herald Of Night"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 265.7,
    ["goldvalue"] = 2658,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 150,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    },
    ["Hunchback"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 27.9,
    ["goldvalue"] = 279,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Imp"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 15.4,
    ["goldvalue"] = 155,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Incubus"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 249.4,
    ["goldvalue"] = 2494,
    ["hits"] = 10000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Insane Reanimator"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 64,
    ["goldvalue"] = 640,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Manticore"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 289.4,
    ["goldvalue"] = 2895,
    ["hits"] = 15000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Master Reanimator"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 92.6,
    ["goldvalue"] = 926,
    ["hits"] = 3500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Meat Puppet"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 228.6,
    ["goldvalue"] = 2287,
    ["hits"] = 10000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Mirror Image"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 10.6,
    ["hits"] = 500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Muddled Vampire Hunter"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 129.9,
    ["goldvalue"] = 1299,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Newly Reanimated"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 10.6,
    ["goldvalue"] = 107,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Nightstalker"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 74.8,
    ["goldvalue"] = 748,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Raw Flesh"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 14.3,
    ["goldvalue"] = 144,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Reanimated Archer"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 24.3,
    ["goldvalue"] = 243,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Reanimated Cyclops"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 61.7,
    ["goldvalue"] = 617,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimated Daemon"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 153.2,
    ["goldvalue"] = 1533,
    ["hits"] = 8000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Reanimated Dragon"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 92.1,
    ["goldvalue"] = 922,
    ["hits"] = 5000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Reanimated Gladiator"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 24.4,
    ["goldvalue"] = 244,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Reanimated Healer"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 35.7,
    ["goldvalue"] = 357,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimated Hunter"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 24.5,
    ["goldvalue"] = 246,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Reanimated Knight"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 34,
    ["goldvalue"] = 341,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimated Mage"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 36.6,
    ["goldvalue"] = 366,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Reanimated Pirate"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 26.9,
    ["goldvalue"] = 269,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Reanimated Soldier"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 23.3,
    ["goldvalue"] = 234,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Reanimated Warrior"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 25,
    ["goldvalue"] = 251,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Reanimator"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 30,
    ["goldvalue"] = 301,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimator Apprentice"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 19,
    ["goldvalue"] = 190,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimator Rector"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 49.6,
    ["goldvalue"] = 496,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Reanimator Zealot"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 55.7,
    ["goldvalue"] = 557,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Shade Wolf"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 44.8,
    ["goldvalue"] = 448,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Shadow Minion"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 38.4,
    ["goldvalue"] = 384,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Shadowglass"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 242.4,
    ["goldvalue"] = 2425,
    ["hits"] = 10000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Shadowguard"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 85.2,
    ["goldvalue"] = 853,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Shambler"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 41.9,
    ["goldvalue"] = 419,
    ["hits"] = 3000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.05,
    },
    ["Sinew And Bone"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 305.3,
    ["goldvalue"] = 3054,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 150,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Spare Parts"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 15.1,
    ["goldvalue"] = 151,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Tormented Soul"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 75.4,
    ["goldvalue"] = 754,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Vampire"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 92.8,
    ["goldvalue"] = 928,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Vampire Bat"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 33.1,
    ["goldvalue"] = 332,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Vampire Countess"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 93.7,
    ["goldvalue"] = 937,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Vampire Patrician"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 292.8,
    ["goldvalue"] = 2928,
    ["hits"] = 12000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 150,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["magery"] = 200,
    ["minspelldmg"] = 40,
    ["maxspelldmg"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Vampire Primogen"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 420.6,
    ["goldvalue"] = 4207,
    ["hits"] = 14000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 50,
    ["magicresist"] = 250,
    ["magery"] = 250,
    ["minspelldmg"] = 50,
    ["maxspelldmg"] = 60,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Vampiric Consort"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 214.8,
    ["goldvalue"] = 2149,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 70,
    ["wrestling"] = 140,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["stealth"] = "X",
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2,
    },
    ["Vampiric Huntsman"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 181.2,
    ["goldvalue"] = 1813,
    ["hits"] = 14000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 140,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    },
    ["Void Slime"] = {
    ["location"] = "The Mausoleum",
    ["difficulty"] = 126.5,
    ["goldvalue"] = 1265,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Cistern Gorgon"] = {
    ["location"] = "The Mausolem",
    ["difficulty"] = 1089,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Angelic Stonework"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 107.9,
    ["goldvalue"] = 1079,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Blood Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.4,
    ["goldvalue"] = 515,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Corpse Flower"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 89.6,
    ["goldvalue"] = 896,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Corrupted Hornbeast"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 75.6,
    ["goldvalue"] = 756,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Crimson Gargoyle"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 71.2,
    ["goldvalue"] = 712,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Daemonic Stonework"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 171.9,
    ["goldvalue"] = 1720,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Deathcap"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 101.1,
    ["goldvalue"] = 1012,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Deathvines"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 98.2,
    ["goldvalue"] = 982,
    ["hits"] = 6000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Earth Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.4,
    ["goldvalue"] = 515,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Eldritch Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.4,
    ["goldvalue"] = 515,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Fire Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.4,
    ["goldvalue"] = 515,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Frost Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.4,
    ["goldvalue"] = 515,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Gargan Flamekin"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 56.2,
    ["goldvalue"] = 562,
    ["hits"] = 3000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Gargan Flameshaper"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 114.6,
    ["goldvalue"] = 1146,
    ["hits"] = 5000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Gargan Scorcher"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 110.1,
    ["goldvalue"] = 1102,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    },
    ["Gargan Stonekin"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 50.6,
    ["goldvalue"] = 507,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Gargan Stoneshaper"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 99.1,
    ["goldvalue"] = 991,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Gargoyle Archon"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 1258,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Gargoyle Primogen"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 3044,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Golden Gargoyle"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 77.9,
    ["goldvalue"] = 780,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Gravebug"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 95.3,
    ["goldvalue"] = 953,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Horned Devil"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 117.2,
    ["goldvalue"] = 1172,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["atkspd"] = 45,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Iron Gargoyle"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 60.8,
    ["goldvalue"] = 608,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Marble Gargoyle"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 179.5,
    ["goldvalue"] = 1795,
    ["hits"] = 10000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    ["bosstype"] = "Boss Spawn",
    },
    ["Marble Minotaur"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 75.3,
    ["goldvalue"] = 754,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.7,
    ["bosstype"] = "Boss Spawn",
    },
    ["Mud Gargoyle"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 68.5,
    ["goldvalue"] = 685,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Poison Mephit"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 51.5,
    ["goldvalue"] = 516,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Soldier's Widow"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 88.3,
    ["goldvalue"] = 884,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 105,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Spectral Bard"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 89.8,
    ["goldvalue"] = 898,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Spectral Bishop"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 111.1,
    ["goldvalue"] = 1111,
    ["hits"] = 4000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 95,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Spectral Footman"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 82.8,
    ["goldvalue"] = 829,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Spectral Knight"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 117.3,
    ["goldvalue"] = 1174,
    ["hits"] = 5500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Spectral Lancer"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 63.9,
    ["goldvalue"] = 639,
    ["hits"] = 5000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Marksman"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 64.1,
    ["goldvalue"] = 641,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Spectral Pontiff"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 138.8,
    ["goldvalue"] = 1388,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 175,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Spectral Priest"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 87.1,
    ["goldvalue"] = 871,
    ["hits"] = 3500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 50,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Spectral Warrior"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 90,
    ["goldvalue"] = 901,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Stone Familiar"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 91,
    ["goldvalue"] = 911,
    ["hits"] = 5000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Volcanic Familiar"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 91.5,
    ["goldvalue"] = 915,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Winged Hulk"] = {
    ["location"] = "Shadowspire Cathedral",
    ["difficulty"] = 83,
    ["goldvalue"] = 830,
    ["hits"] = 4000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Ancient Drowned Dragon"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 942.5,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Befuddler"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 88.5,
    ["goldvalue"] = 885,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Dark Water"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 89.9,
    ["goldvalue"] = 899,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Deep Crawler"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 43.2,
    ["goldvalue"] = 433,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Deep Devourer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 84.3,
    ["goldvalue"] = 844,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Drowned Daemon"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 170.5,
    ["goldvalue"] = 1706,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Drowned Dragon"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 113.5,
    ["goldvalue"] = 1135,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Fortress Beetle"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 90,
    ["goldvalue"] = 901,
    ["hits"] = 5000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Great Sunken Serpent"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 2583,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Husk Crab"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 26.4,
    ["goldvalue"] = 265,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Living Water"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 15.6,
    ["goldvalue"] = 156,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Maelstrom"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 11.9,
    ["goldvalue"] = 120,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Minion"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 12.7,
    ["goldvalue"] = 128,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Murky Water"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 46.8,
    ["goldvalue"] = 468,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Observer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 12.3,
    ["goldvalue"] = 123,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Oblivion Deathmage"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 1705.2,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["magicresistmin"] = 100,
    ["slayer"] = "Humanoid",
    ["bosstype"] = "Mini Boss"
    },
    ["Overseer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 39.7,
    ["goldvalue"] = 398,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Precursor Conduit"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 54.5,
    ["goldvalue"] = 545,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    },
    ["Precursor Engineer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 31,
    ["goldvalue"] = 310,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Precursor Guardian"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 76.6,
    ["goldvalue"] = 766,
    ["hits"] = 4000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Precursor Lancer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 28.6,
    ["goldvalue"] = 286,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Precursor Operator"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 45.9,
    ["goldvalue"] = 460,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 60,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Precursor Sentry"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 16.5,
    ["goldvalue"] = 165,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Precursor Servitor"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 16.2,
    ["goldvalue"] = 162,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Precursor Technologist"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 39,
    ["goldvalue"] = 391,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    },
    ["Precursor Warden"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 147.1,
    ["goldvalue"] = 1472,
    ["hits"] = 6000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.8,
    },
    ["Pure Water"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 23.3,
    ["goldvalue"] = 234,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["parry"] = 25,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Reef Serpent"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 38.9,
    ["goldvalue"] = 389,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Sea Hag"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 70.1,
    ["goldvalue"] = 701,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["stealth"] = "X",
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Shallow Water"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 9.5,
    ["goldvalue"] = 95,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.2,
    },
    ["Sunken Sorcerer"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 64.3,
    ["goldvalue"] = 643,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Tidal Mantis"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 50.1,
    ["goldvalue"] = 501,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Water Dragon"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 90.6,
    ["goldvalue"] = 907,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Water Drake"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 50.9,
    ["goldvalue"] = 509,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Water Spirit"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 53.7,
    ["goldvalue"] = 537,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Writhing Tentacle"] = {
    ["location"] = "Pulma",
    ["difficulty"] = 9.1,
    ["goldvalue"] = 91,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Scorpion"] = {
    ["location"] = {"Ossuary","New Player Dungeon"},
    ["difficulty"] = 8.6,
    ["goldvalue"] = 86,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Skeleton"] = {
    ["location"] = {"Ossuary","New Player Dungeon"},
    ["difficulty"] = 3.7,
    ["goldvalue"] = 38,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 35,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Anubite"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 157.5,
    ["goldvalue"] = 1576,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    },
    ["Apophite Spirit"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 66.9,
    ["goldvalue"] = 669,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Black Cat"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 28.9,
    ["goldvalue"] = 289,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Blightwalker"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 84.9,
    ["goldvalue"] = 850,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Bone Blade"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 25.4,
    ["goldvalue"] = 255,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 120,
    ["armor"] = 100,
    ["magicresist"] = 0,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    ["bosstype"] = "Boss Summon",
    },
    ["Cave Bat"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 19.1,
    ["goldvalue"] = 192,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Colossal Blazing Beetle"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 122.2,
    ["goldvalue"] = 1222,
    ["hits"] = 6000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Colossal Sandroach"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 67.6,
    ["goldvalue"] = 676,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Colossal Searing Scorpion"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 32.9,
    ["goldvalue"] = 329,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Creeping Pestilence"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 47.3,
    ["goldvalue"] = 474,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Cryptwing"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 22,
    ["goldvalue"] = 220,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Desiccated Husk"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 31.5,
    ["goldvalue"] = 316,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Fiery Leaper"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 51,
    ["goldvalue"] = 511,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Fire Ant"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 9.8,
    ["goldvalue"] = 99,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Gaunt Form"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 27.2,
    ["goldvalue"] = 272,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ghoul"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 4.6,
    ["goldvalue"] = 47,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Giant Scorpion"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 14.3,
    ["goldvalue"] = 144,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Hierarch"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 76,
    ["goldvalue"] = 761,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Jackal Spirit"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 73.1,
    ["goldvalue"] = 731,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Khamsin"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 62.3,
    ["goldvalue"] = 623,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 0.8,
    },
    ["Lich"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 26.5,
    ["goldvalue"] = 265,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Lich Magus"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 49.1,
    ["goldvalue"] = 492,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Mummy"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 47.9,
    ["goldvalue"] = 480,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Necromancer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 18.9,
    ["goldvalue"] = 190,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Nightmare"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 41.9,
    ["goldvalue"] = 419,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Ossuarian Deathbringer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 58.9,
    ["goldvalue"] = 590,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Ossuarian Dervish"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 26.1,
    ["goldvalue"] = 261,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 75,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ossuarian Embalmer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 40,
    ["goldvalue"] = 400,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Ossuarian Executioner"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 33,
    ["goldvalue"] = 330,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Ossuarian Fire Priest"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 53.5,
    ["goldvalue"] = 535,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Ossuarian Firebrand"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 72.6,
    ["goldvalue"] = 727,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Ossuarian Hunter"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 27.3,
    ["goldvalue"] = 274,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Ossuarian Lion Warrior"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 27.8,
    ["goldvalue"] = 278,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Ossuarian Pyromancer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 59,
    ["goldvalue"] = 591,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Ossuarian Sightless Seer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 90.2,
    ["goldvalue"] = 903,
    ["hits"] = 3500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Ossuarian Skirmisher"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 24.4,
    ["goldvalue"] = 245,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Ossuarian Slinger"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 33.8,
    ["goldvalue"] = 338,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Phantasm"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 70,
    ["goldvalue"] = 701,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 50,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Phoenix"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 161.2,
    ["goldvalue"] = 1612,
    ["hits"] = 5000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Plague Of Locusts"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 59,
    ["goldvalue"] = 590,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Radiant Burrowbug"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 71.7,
    ["goldvalue"] = 718,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 85,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Rag Witch"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 41.8,
    ["goldvalue"] = 419,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Revenant"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 32.1,
    ["goldvalue"] = 322,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Sand Crawler"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 43.2,
    ["goldvalue"] = 433,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Sand Muck"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 30.3,
    ["goldvalue"] = 303,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Scarab"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 24.2,
    ["goldvalue"] = 242,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Shriveled Corpse"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 34.1,
    ["goldvalue"] = 342,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Skeletal Archer"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 8.9,
    ["goldvalue"] = 90,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 55,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Skeletal Dragon"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 76.1,
    ["goldvalue"] = 762,
    ["hits"] = 4500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Skeletal Fiend"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 42,
    ["goldvalue"] = 420,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Skeletal Guardian"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 17.3,
    ["goldvalue"] = 173,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Skeletal Knight"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 14,
    ["goldvalue"] = 141,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Skeletal Mage"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 15.4,
    ["goldvalue"] = 154,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Skeletal Marksman"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 15.2,
    ["goldvalue"] = 152,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Smouldering Lich"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 41.9,
    ["goldvalue"] = 419,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Speaker For The Dead"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 1544,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Spectral Terror"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 161.5,
    ["goldvalue"] = 1616,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 175,
    ["parry"] = 50,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Sphinx"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 30.5,
    ["goldvalue"] = 306,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Temple Guardian"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 55.4,
    ["goldvalue"] = 555,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["The Forgotten King"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 2607,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Withering Bowman"] = {
    ["location"] = "Ossuary",
    ["difficulty"] = 27.9,
    ["goldvalue"] = 279,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Lesser Rift Daemon"] = {
    ["location"] = {"Omni Realm","Wilderness"},
    ["difficulty"] = 130.8,
    ["goldvalue"] = 1308,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Rift Cultist"] = {
    ["location"] = {"Omni Realm","Wilderness"},
    ["difficulty"] = 39.2,
    ["goldvalue"] = 392,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Rift Daemon"] = {
    ["location"] = {"Omni Realm","Wilderness"},
    ["difficulty"] = 183.3,
    ["goldvalue"] = 1833,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Rift Footman"] = {
    ["location"] = {"Omni Realm","Wilderness"},
    ["difficulty"] = 47.8,
    ["goldvalue"] = 479,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Rift Warrior"] = {
    ["location"] = {"Omni Realm","Wilderness"},
    ["difficulty"] = 68.2,
    ["goldvalue"] = 682,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Abyssal Daemon"] = {
    ["location"] = "Omni Realm",
    ["difficulty"] = 11112,
    ["goldvalue"] = 200000,
    ["hits"] = 1500000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    ["bosstype"] = "Omni Boss",
    },
    ["Astral Daemon"] = {
    ["location"] = "Omni Realm",
    ["difficulty"] = 12037,
    ["goldvalue"] = 200000,
    ["hits"] = 1500000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    ["bosstype"] = "Omni Boss",
    },
    ["Astral Projection"] = {
    ["location"] = "Omni Realm",
    ["difficulty"] = 56.5,
    ["goldvalue"] = 566,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    ["bosstype"] = "Boss Summon",
    },
    ["Rift Minion"] = {
    ["location"] = "Omni Realm",
    ["difficulty"] = 30.1,
    ["goldvalue"] = 302,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Storm Daemon"] = {
    ["location"] = "Omni Realm",
    ["difficulty"] = 15280,
    ["goldvalue"] = 200000,
    ["hits"] = 1500000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    ["bosstype"] = "Omni Boss",
    },
    ["Ocean's Fury"] = {
    ["location"] = "Ocean",
    ["difficulty"] = 2692,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["The Insatiable Maw"] = {
    ["location"] = "Ocean",
    ["difficulty"] = 932.5,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Monitor"] = {
    ["location"] = {"Nusero","New Player Dungeon"},
    ["difficulty"] = 16,
    ["goldvalue"] = 160,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Monitor Hatchling"] = {
    ["location"] = {"Nusero","New Player Dungeon"},
    ["difficulty"] = 11.9,
    ["goldvalue"] = 119,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Primordial"] = {
    ["location"] = {"Nusero","New Player Dungeon"},
    ["difficulty"] = 13.4,
    ["goldvalue"] = 134,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Adder"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 36.8,
    ["goldvalue"] = 368,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Army Ant"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 9.5,
    ["goldvalue"] = 96,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Asp"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 14.9,
    ["goldvalue"] = 150,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Azure Wyrm"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 93.3,
    ["goldvalue"] = 933,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 105,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Azure Wyrmling"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 46.7,
    ["goldvalue"] = 468,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Cave Dracolisk"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 73.5,
    ["goldvalue"] = 736,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Chameleon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 16.8,
    ["goldvalue"] = 169,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 88.8,
    ["goldvalue"] = 889,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Dragon Whelp"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 12.9,
    ["goldvalue"] = 129,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Drake"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 48,
    ["goldvalue"] = 480,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Drake Whelp"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 9.6,
    ["goldvalue"] = 96,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Eldritch Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 120.6,
    ["goldvalue"] = 1207,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Eldritch Drake"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 66.8,
    ["goldvalue"] = 668,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Emperor Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 2384,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Forktongue Battlekhan"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 144.9,
    ["goldvalue"] = 1449,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Forktongue Shocktrooper"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 92.9,
    ["goldvalue"] = 929,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Forktongue Spinebreaker"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 90.3,
    ["goldvalue"] = 904,
    ["hits"] = 4500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Ghostly Dragonknight"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 59.8,
    ["goldvalue"] = 599,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Ghostly Dragontamer"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 88.6,
    ["goldvalue"] = 886,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 75,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Harvestman"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 47,
    ["goldvalue"] = 470,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Komodo"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 20.7,
    ["goldvalue"] = 208,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Ophidian Dragonguard"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 66.3,
    ["goldvalue"] = 664,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 105,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ophidian Mage"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 35.3,
    ["goldvalue"] = 353,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ophidian Matron"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 89.7,
    ["goldvalue"] = 897,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ophidian Shaman"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 67.7,
    ["goldvalue"] = 678,
    ["hits"] = 3500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ophidian Warrior"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 37.6,
    ["goldvalue"] = 377,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Pit Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 1041,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Primordial Whelp"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 9.7,
    ["goldvalue"] = 97,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Ruby Wyrm"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 104.5,
    ["goldvalue"] = 1045,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 105,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Ruby Wyrmling"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 52.4,
    ["goldvalue"] = 524,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Smoke Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 103.2,
    ["goldvalue"] = 1032,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Smoke Drake"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 55.6,
    ["goldvalue"] = 556,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Smoke Faerie Dragon"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 46.1,
    ["goldvalue"] = 461,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Stonescale Tribal"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 2.9,
    ["goldvalue"] = 30,
    ["hits"] = 300,
    ["minmeleedmg"] = 8,
    ["maxmeleedmg"] = 16,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Sun Wyrm"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 112,
    ["goldvalue"] = 1120,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 105,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Sun Wyrmling"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 56.1,
    ["goldvalue"] = 561,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Wyvern"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 63.2,
    ["goldvalue"] = 632,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Wyvern Hatchling"] = {
    ["location"] = "Nusero",
    ["difficulty"] = 18.7,
    ["goldvalue"] = 187,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Blind Orc Mage"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 4.6,
    ["goldvalue"] = 47,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Colossal Frog"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.7,
    ["goldvalue"] = 38,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 35,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Cracked Earth Elemental"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 8.3,
    ["goldvalue"] = 84,
    ["hits"] = 800,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 50,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Giant Rat"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 2,
    ["goldvalue"] = 20,
    ["hits"] = 200,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 20,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Guar"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.5,
    ["goldvalue"] = 35,
    ["hits"] = 400,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 40,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Headless"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.4,
    ["goldvalue"] = 34,
    ["hits"] = 400,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Injured Ogre"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 10.6,
    ["goldvalue"] = 107,
    ["hits"] = 1000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 45,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Wolf"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 4.4,
    ["goldvalue"] = 45,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Wounded Harpy"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.8,
    ["goldvalue"] = 38,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Zombie"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 5.4,
    ["goldvalue"] = 55,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 25,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Cave Bear"] = {
    ["location"] = {"Mount Petram","New Player Dungeon"},
    ["difficulty"] = 15.2,
    ["goldvalue"] = 153,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Terathan Larva"] = {
    ["location"] = {"Mount Petram","New Player Dungeon"},
    ["difficulty"] = 6,
    ["goldvalue"] = 61,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Aged Earth"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 14.7,
    ["goldvalue"] = 147,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Amber Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 33.1,
    ["goldvalue"] = 332,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 75,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Amethyst Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 61.1,
    ["goldvalue"] = 612,
    ["hits"] = 3500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 85,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Ancient Earth"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 33.5,
    ["goldvalue"] = 335,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Ankheg"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 71.9,
    ["goldvalue"] = 719,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 85,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Broken Idol"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 21.2,
    ["goldvalue"] = 213,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 60,
    ["armor"] = 75,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.1,
    },
    ["Citrine Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 19.5,
    ["goldvalue"] = 196,
    ["hits"] = 1250,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Colossal Trapdoor Spider"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 127.5,
    ["goldvalue"] = 1275,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Deathstalk"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 71.9,
    ["goldvalue"] = 720,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Devilbat"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 10.9,
    ["goldvalue"] = 110,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Diamond Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 123.2,
    ["goldvalue"] = 1232,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Dusk Dragon"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 98.2,
    ["goldvalue"] = 982,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Dusk Drake"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 52.9,
    ["goldvalue"] = 530,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Earth Dragon"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 98.2,
    ["goldvalue"] = 982,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Earth Drake"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 52.9,
    ["goldvalue"] = 530,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Emerald Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 82.7,
    ["goldvalue"] = 827,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Fen Daemon"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 171.1,
    ["goldvalue"] = 1711,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Fungaloid"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 55.3,
    ["goldvalue"] = 553,
    ["hits"] = 3500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Giant Trapdoor Spider"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 26.8,
    ["goldvalue"] = 269,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Lichenid"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 77.9,
    ["goldvalue"] = 780,
    ["hits"] = 5000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Living Earth"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 62.6,
    ["goldvalue"] = 626,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Lodestone"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 958.5,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Lurker"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 73.7,
    ["goldvalue"] = 738,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Minotaur"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 47.8,
    ["goldvalue"] = 478,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Minotaur Battleborne"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 82.4,
    ["goldvalue"] = 824,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Minotaur Berserker"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 61.2,
    ["goldvalue"] = 613,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Minotaur Runesmith"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 69.1,
    ["goldvalue"] = 691,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Moss Giant"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 120.9,
    ["goldvalue"] = 1209,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Mountain Air"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 30.7,
    ["goldvalue"] = 307,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Mountain Harpy"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 13,
    ["goldvalue"] = 131,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Mountain Vines"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 11.7,
    ["goldvalue"] = 118,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1.2,
    },
    ["Noxweed"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 55.3,
    ["goldvalue"] = 554,
    ["hits"] = 3500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Petram Cultist"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 49.1,
    ["goldvalue"] = 491,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Rock Guar"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 8.3,
    ["goldvalue"] = 83,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ruby Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 52.3,
    ["goldvalue"] = 523,
    ["hits"] = 3000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Sapphire Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 73.2,
    ["goldvalue"] = 733,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 85,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Star Sapphire Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 98,
    ["goldvalue"] = 981,
    ["hits"] = 5000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 95,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Stinger"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 9.6,
    ["goldvalue"] = 96,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Stone Harpy"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 12.1,
    ["goldvalue"] = 121,
    ["hits"] = 1000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Terathan Broodguard"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 73.4,
    ["goldvalue"] = 734,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Terathan Broodwitch"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 68.3,
    ["goldvalue"] = 684,
    ["hits"] = 4000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Terathan Drone"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 13.3,
    ["goldvalue"] = 133,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Terathan Goliath"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 2613,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Terathan Matron"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 54.6,
    ["goldvalue"] = 546,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Terathan Warrior"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 40.9,
    ["goldvalue"] = 410,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Tourmaline Elemental"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 23.6,
    ["goldvalue"] = 236,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Trapdoor Spider"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 12.2,
    ["goldvalue"] = 122,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.4,
    },
    ["Volt Wisp"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 68.1,
    ["goldvalue"] = 681,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Watcher Idol"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 26.4,
    ["goldvalue"] = 265,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 70,
    ["armor"] = 75,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.14,
    },
    ["Wicked Willow"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 26.1,
    ["goldvalue"] = 262,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1,
    },
    ["Witch Harpy"] = {
    ["location"] = "Mount Petram",
    ["difficulty"] = 63.4,
    ["goldvalue"] = 635,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Blightspot"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 70.2,
    ["goldvalue"] = 702,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    },
    ["Bogyugh"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 254.7,
    ["goldvalue"] = 2547,
    ["hits"] = 10000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 2,
    },
    ["Bramblefolk"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 59.8,
    ["goldvalue"] = 599,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Brasshopper"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 72.4,
    ["goldvalue"] = 724,
    ["hits"] = 3500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Camomeal"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 142,
    ["goldvalue"] = 1420,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    },
    ["Colossal Crystal Beetle"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 172.9,
    ["goldvalue"] = 1730,
    ["hits"] = 8000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Colossal Dung Beetle"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 257.8,
    ["goldvalue"] = 2579,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Colossal Spitting Viper"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 125.8,
    ["goldvalue"] = 1259,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Colossal Swamp Beetle"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 163.6,
    ["goldvalue"] = 1636,
    ["hits"] = 8000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisoning"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Corrosive Hivedrone"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 52.7,
    ["goldvalue"] = 528,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Corrosive Hivefly"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 75.6,
    ["goldvalue"] = 756,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Corrosive Hiveguard"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 278.8,
    ["goldvalue"] = 2789,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Corrosive Hivelarva"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 27.5,
    ["goldvalue"] = 276,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Corrosive Hivemind"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 162.2,
    ["goldvalue"] = 1622,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Corrosive Hivereaver"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 225.2,
    ["goldvalue"] = 2252,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Corrosive Hivestinger"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 121.7,
    ["goldvalue"] = 1217,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Corrosive Hivewarden"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 281.6,
    ["goldvalue"] = 2817,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Corrosive Hivewarrior"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 173.9,
    ["goldvalue"] = 1739,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Foulglow Hivedrone"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 52.7,
    ["goldvalue"] = 528,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Foulglow Hivefly"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 75.6,
    ["goldvalue"] = 756,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Foulglow Hiveguard"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 278.8,
    ["goldvalue"] = 2789,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Foulglow Hivelarva"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 27.5,
    ["goldvalue"] = 276,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Foulglow Hivemind"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 162.2,
    ["goldvalue"] = 1622,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Foulglow Hivereaver"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 225.2,
    ["goldvalue"] = 2252,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Foulglow Hivestinger"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 121.7,
    ["goldvalue"] = 1217,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Foulglow Hivewarden"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 281.6,
    ["goldvalue"] = 2817,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Foulglow Hivewarrior"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 173.9,
    ["goldvalue"] = 1739,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Gargantua Spider"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 287.9,
    ["goldvalue"] = 2880,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Giant Chameleon"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 70.5,
    ["goldvalue"] = 706,
    ["hits"] = 5000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Giant Crystal Beetle"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 97.6,
    ["goldvalue"] = 976,
    ["hits"] = 5000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Giant Locust"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 55.8,
    ["goldvalue"] = 558,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Giant Spitting Viper"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 74.3,
    ["goldvalue"] = 744,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Giant Swamp Beetle"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 97.9,
    ["goldvalue"] = 980,
    ["hits"] = 5000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Glowworm"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 67.5,
    ["goldvalue"] = 675,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Goop"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 87.2,
    ["goldvalue"] = 872,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Green Capper"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 101.4,
    ["goldvalue"] = 1015,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Jungle Mantis"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 72.9,
    ["goldvalue"] = 730,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.33,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Malady"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 62.9,
    ["goldvalue"] = 630,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Outdrider Broodguard"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 175.7,
    ["goldvalue"] = 1758,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Outdrider Broodwitch"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 197.3,
    ["goldvalue"] = 1974,
    ["hits"] = 7000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Savage Primordial"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 136.3,
    ["goldvalue"] = 1364,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Shadow Prowler"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 176.9,
    ["goldvalue"] = 1769,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Siltsifter Hivedrone"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 52.7,
    ["goldvalue"] = 528,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Siltsifter Hivefly"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 75.6,
    ["goldvalue"] = 756,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Siltsifter Hiveguard"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 278.8,
    ["goldvalue"] = 2789,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Siltsifter Hivelarva"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 27.5,
    ["goldvalue"] = 276,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Siltsifter Hivemind"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 162.2,
    ["goldvalue"] = 1622,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Siltsifter Hivereaver"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 225.2,
    ["goldvalue"] = 2252,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Siltsifter Hivestinger"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 121.7,
    ["goldvalue"] = 1217,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Siltsifter Hivewarden"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 281.6,
    ["goldvalue"] = 2817,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Siltsifter Hivewarrior"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 173.9,
    ["goldvalue"] = 1739,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Spelltouched Hivedrone"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 62.9,
    ["goldvalue"] = 629,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Spelltouched Hivefly"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 90.4,
    ["goldvalue"] = 905,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Spelltouched Hiveguard"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 283.8,
    ["goldvalue"] = 2839,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Spelltouched Hivelarva"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 33.6,
    ["goldvalue"] = 336,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Spelltouched Hivemind"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 178.7,
    ["goldvalue"] = 1788,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Spelltouched Hivereaver"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 247.7,
    ["goldvalue"] = 2477,
    ["hits"] = 10000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Spelltouched Hivestinger"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 144.8,
    ["goldvalue"] = 1448,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Spelltouched Hivewarden"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 287.1,
    ["goldvalue"] = 2871,
    ["hits"] = 12000,
    ["minmeleedmg"] = 60,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Spelltouched Hivewarrior"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 186.9,
    ["goldvalue"] = 1869,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Spitting Viper"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 35.8,
    ["goldvalue"] = 359,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Sword Spider"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 140.6,
    ["goldvalue"] = 1406,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Terathan Exile Drone"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 50.9,
    ["goldvalue"] = 509,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Terathan Exile Matron"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 126.4,
    ["goldvalue"] = 1264,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Terathan Exile Warrior"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 89.6,
    ["goldvalue"] = 896,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Vinekin"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 77.4,
    ["goldvalue"] = 775,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Ember Dragon"] = {
    ["location"] = {"Inferno","Nusero"},
    ["difficulty"] = 94.4,
    ["goldvalue"] = 944,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Ember Drake"] = {
    ["location"] = {"Inferno","Nusero"},
    ["difficulty"] = 50.9,
    ["goldvalue"] = 509,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Flame Purger"] = {
    ["location"] = {"Inferno","Nusero"},
    ["difficulty"] = 39,
    ["goldvalue"] = 391,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Molten Daemon"] = {
    ["location"] = {"Inferno","Nusero"},
    ["difficulty"] = 178,
    ["goldvalue"] = 1781,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Raw Fire"] = {
    ["location"] = {"Inferno","Nusero"},
    ["difficulty"] = 54.1,
    ["goldvalue"] = 542,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 125,
    ["parry"] = 50,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Bonfire Wisp"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 68.1,
    ["goldvalue"] = 681,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Bullvore"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 59.3,
    ["goldvalue"] = 593,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Burning Ash Tree"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 116.1,
    ["goldvalue"] = 1161,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 60,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1.5,
    },
    ["Embear"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 21.9,
    ["goldvalue"] = 219,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Fire Beetle"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 21.8,
    ["goldvalue"] = 219,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Fire Crawler"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 46.8,
    ["goldvalue"] = 469,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Fire Minion"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 14.6,
    ["goldvalue"] = 147,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Fire Salamander"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 16.3,
    ["goldvalue"] = 163,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Firebat"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 10,
    ["goldvalue"] = 100,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Firestorm"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 45.7,
    ["goldvalue"] = 458,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Flamehound"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 12.2,
    ["goldvalue"] = 123,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Heart Of The Mountain"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 1524,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Hellhound"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 52.9,
    ["goldvalue"] = 529,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Infernal Archer"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 18.3,
    ["goldvalue"] = 184,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Infernal Beastmaster"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 43.7,
    ["goldvalue"] = 437,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Infernal Chosen"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 58,
    ["goldvalue"] = 581,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 45,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Infernal Daemon"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 175.6,
    ["goldvalue"] = 1757,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Infernal Gargoyle"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 47,
    ["goldvalue"] = 470,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Infernal Giant"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 96.5,
    ["goldvalue"] = 965,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Infernal Knight"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 89.1,
    ["goldvalue"] = 892,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Infernal Mage"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 77,
    ["goldvalue"] = 770,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Infernal Soldier"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 25.4,
    ["goldvalue"] = 255,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Infernal Sorcerer"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 119,
    ["goldvalue"] = 1190,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Infernus"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 2887,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Lava Elemental"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 58.3,
    ["goldvalue"] = 584,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Lesser Molten Daemon"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 119.8,
    ["goldvalue"] = 1198,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Living Flame"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 20.8,
    ["goldvalue"] = 208,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Molten Hellion"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 35.3,
    ["goldvalue"] = 353,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Molten Mongbat"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 17.6,
    ["goldvalue"] = 176,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Searing Bullvore"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 89.1,
    ["goldvalue"] = 891,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Searing Earth"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 41.1,
    ["goldvalue"] = 412,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Searing Imp"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 14.2,
    ["goldvalue"] = 143,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Searing Lizard"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 16.9,
    ["goldvalue"] = 169,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 60,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Searing Mantis"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 17.7,
    ["goldvalue"] = 178,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Volcanite"] = {
    ["location"] = "Inferno",
    ["difficulty"] = 68,
    ["goldvalue"] = 681,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.35,
    },
    ["Anaconda"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 36.8,
    ["goldvalue"] = 368,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Antlion"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 47.1,
    ["goldvalue"] = 472,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Arachnai Hivematron"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 149.5,
    ["goldvalue"] = 1495,
    ["hits"] = 6000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["atkspd"] = 45,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Arachnai Ravager"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 88.3,
    ["goldvalue"] = 883,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Arachnai Soldier"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 60.2,
    ["goldvalue"] = 603,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Arboreal Wisp"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 68.1,
    ["goldvalue"] = 681,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Black Widow"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 35.8,
    ["goldvalue"] = 358,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Brackish Water"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 23.4,
    ["goldvalue"] = 235,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["parry"] = 25,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Colossal Black Widow"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 131.2,
    ["goldvalue"] = 1313,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Colossal Poison Dart Frog"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 29.6,
    ["goldvalue"] = 296,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Colossal Swamp Slug"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 53.7,
    ["goldvalue"] = 538,
    ["hits"] = 4000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Creeping Earth"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 39.9,
    ["goldvalue"] = 399,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Creeping Soil"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 14.1,
    ["goldvalue"] = 141,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Darkmire Bear Druid"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 38.7,
    ["goldvalue"] = 388,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.4,
    },
    ["Darkmire Elder"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 52.4,
    ["goldvalue"] = 524,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Darkmire Hunter"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 28.5,
    ["goldvalue"] = 285,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Darkmire Pathfinder"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 33.3,
    ["goldvalue"] = 333,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.35,
    },
    ["Darkmire Tribal"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 34.5,
    ["goldvalue"] = 346,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Humanoid",
    ["ai"] = "Ranged",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    },
    ["Darkmire Wolf Druid"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 30.4,
    ["goldvalue"] = 304,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 60,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Dryad"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 17.8,
    ["goldvalue"] = 178,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Earth Sorcerer"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 58.3,
    ["goldvalue"] = 583,
    ["hits"] = 3000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Faery"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 18.8,
    ["goldvalue"] = 189,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Fey Spirit"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 20.9,
    ["goldvalue"] = 210,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Fey Spirit Matron"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 38.5,
    ["goldvalue"] = 385,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Foul Water"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 47.7,
    ["goldvalue"] = 477,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Giant Black Widow"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 61.4,
    ["goldvalue"] = 615,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Giant Poison Dart Frog"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 17,
    ["goldvalue"] = 171,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Giant Swamp Slug"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 14,
    ["goldvalue"] = 141,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Jaguar"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 11.8,
    ["goldvalue"] = 119,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    },
    ["Lord Bile"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 2435,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Muck"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 9.9,
    ["goldvalue"] = 99,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.14,
    },
    ["Myconid"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 67.2,
    ["goldvalue"] = 672,
    ["hits"] = 4000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Otyugh"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 106.6,
    ["goldvalue"] = 1066,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 2.5,
    },
    ["Putrid Water"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 79.9,
    ["goldvalue"] = 800,
    ["hits"] = 3500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Sentient Vines"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 25.5,
    ["goldvalue"] = 256,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Silverback"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 12.9,
    ["goldvalue"] = 130,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Stranglevines"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 11.2,
    ["goldvalue"] = 112,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Swamp Dragon"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 100.3,
    ["goldvalue"] = 1003,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Swamp Drake"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 54.5,
    ["goldvalue"] = 546,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Swamp Spider"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 9.7,
    ["goldvalue"] = 97,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["The Terrorwood"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 944.3,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Weald Rat"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 11.4,
    ["goldvalue"] = 115,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Weald Rat Chieftain"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 16.2,
    ["goldvalue"] = 163,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Wildwood Guardian"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 109.9,
    ["goldvalue"] = 1099,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Wildwood Reaper"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 120,
    ["goldvalue"] = 1200,
    ["hits"] = 6000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 60,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "SuperSlow",
    ["uniquescalar"] = 1.5,
    },
    ["Wildwood Scourge"] = {
    ["location"] = "Darkmire Temple",
    ["difficulty"] = 96.7,
    ["goldvalue"] = 968,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Snowdrift"] = {
    ["location"] = {"Cavernam","Wilderness"},
    ["difficulty"] = 11.2,
    ["goldvalue"] = 113,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Wendigo"] = {
    ["location"] = {"Cavernam","Wilderness"},
    ["difficulty"] = 71.9,
    ["goldvalue"] = 720,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Acarid"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 17.4,
    ["goldvalue"] = 174,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Air Dragon"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 94.4,
    ["goldvalue"] = 944,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Air Drake"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 50.9,
    ["goldvalue"] = 509,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Arctic Bullvore"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 89.1,
    ["goldvalue"] = 891,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Barbed Prowler"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 84.2,
    ["goldvalue"] = 842,
    ["hits"] = 4500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.35,
    },
    ["Behemoth Basilisk"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 2418,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Cave Gorger"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 78.4,
    ["goldvalue"] = 785,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Charoite"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 68.8,
    ["goldvalue"] = 688,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Colossal Frost Scorpion"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 32.9,
    ["goldvalue"] = 329,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Crag Daemon"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 173.9,
    ["goldvalue"] = 1740,
    ["hits"] = 8000,
    ["minmeleedmg"] = 55,
    ["maxmeleedmg"] = 65,
    ["wrestling"] = 120,
    ["armor"] = 75,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Frigid Archfiend"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 140.5,
    ["goldvalue"] = 1405,
    ["hits"] = 6000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Frigid Hornbeast"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 33.1,
    ["goldvalue"] = 332,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Frost Daemon"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 166.1,
    ["goldvalue"] = 1662,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Frozen Dead"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 33.8,
    ["goldvalue"] = 338,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["parry"] = 50,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.5,
    },
    ["Frozen Fury"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 42.2,
    ["goldvalue"] = 422,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Glacial Creep"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 14.4,
    ["goldvalue"] = 144,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Great Abyssal Hornbeast"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 1041,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Hoarfrost"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 48.4,
    ["goldvalue"] = 485,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Icy Dracolisk"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 71.7,
    ["goldvalue"] = 718,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Icy Lurker"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 79,
    ["goldvalue"] = 790,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Lemura"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 50.7,
    ["goldvalue"] = 508,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Nagalid"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 26.2,
    ["goldvalue"] = 263,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Opilion Attendant"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 18.9,
    ["goldvalue"] = 190,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Opilion Conservator"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 45.3,
    ["goldvalue"] = 454,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Opilion Worker"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 15,
    ["goldvalue"] = 151,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Rhinocerus Beetle"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 124.3,
    ["goldvalue"] = 1243,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Rime Elemental"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 20.7,
    ["goldvalue"] = 207,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["parry"] = 25,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Rime Guar"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 10.4,
    ["goldvalue"] = 104,
    ["hits"] = 800,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Rime Spirit"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 47.1,
    ["goldvalue"] = 472,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Rime Spirit Champion"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 48.4,
    ["goldvalue"] = 485,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 120,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Rime Spirit Knight"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 45,
    ["goldvalue"] = 451,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Rime Spirit Skirmisher"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 36.7,
    ["goldvalue"] = 367,
    ["hits"] = 3500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Rime Spirit Soldier"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 37.1,
    ["goldvalue"] = 371,
    ["hits"] = 3500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 75,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Rimestone"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 33.8,
    ["goldvalue"] = 338,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Sabeartooth"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 18.7,
    ["goldvalue"] = 188,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Silicite"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 45.3,
    ["goldvalue"] = 453,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.25,
    },
    ["Snow Elemental"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 16.5,
    ["goldvalue"] = 166,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Snow Flurry"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 13,
    ["goldvalue"] = 131,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 50,
    ["parry"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Snowpiercer"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 14.7,
    ["goldvalue"] = 148,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Stalagfright"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 22.8,
    ["goldvalue"] = 229,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.14,
    },
    ["Ursal Forager"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 14.3,
    ["goldvalue"] = 143,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["poisoning"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Ursal Huntsman"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 15.2,
    ["goldvalue"] = 152,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Ursal Throatsinger"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 23.1,
    ["goldvalue"] = 231,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Walking Avalanche"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 121.7,
    ["goldvalue"] = 1217,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["White Wyrm"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 100.8,
    ["goldvalue"] = 1008,
    ["hits"] = 4500,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 105,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["White Wyrmling"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 50.5,
    ["goldvalue"] = 505,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Winter Wolf"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 12.9,
    ["goldvalue"] = 129,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Winterweed"] = {
    ["location"] = "Cavernam",
    ["difficulty"] = 50.8,
    ["goldvalue"] = 508,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Aegis Asp"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 12.7,
    ["goldvalue"] = 128,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Cultist"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 20.1,
    ["goldvalue"] = 202,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Aegis High Priest"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 2634,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["stealth"] = "X",
    ["slayer"] = "Humanoid",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 2,
    ["bosstype"] = "Main Boss",
    },
    ["Aegis Imp"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 13,
    ["goldvalue"] = 131,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Knight"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 32.9,
    ["goldvalue"] = 330,
    ["hits"] = 2500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Aegis Leech"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 21.5,
    ["goldvalue"] = 216,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Aegis Lich"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 36.6,
    ["goldvalue"] = 367,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Minion"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 10.7,
    ["goldvalue"] = 108,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 50,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Mongbat"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 6.5,
    ["goldvalue"] = 66,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Noble"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 20.4,
    ["goldvalue"] = 204,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Rat"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 9.7,
    ["goldvalue"] = 97,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Aegis Scorpion"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 17,
    ["goldvalue"] = 171,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.05,
    },
    ["Aegis Slime"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 9.7,
    ["goldvalue"] = 98,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.2,
    },
    ["Aegis Whelp"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 17.7,
    ["goldvalue"] = 177,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Blood Ape"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 17.5,
    ["goldvalue"] = 176,
    ["hits"] = 1250,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Blood Courser"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 40.1,
    ["goldvalue"] = 402,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Mage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Cyclops"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 73.8,
    ["goldvalue"] = 739,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Daemon"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 178.3,
    ["goldvalue"] = 1783,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 150,
    ["minspelldmg"] = 30,
    ["maxspelldmg"] = 40,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Dragon"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 98.2,
    ["goldvalue"] = 982,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Drake"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 52.9,
    ["goldvalue"] = 530,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Elemental"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 74.9,
    ["goldvalue"] = 749,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Blood Feaster"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 68.5,
    ["goldvalue"] = 685,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Fiend"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 80.2,
    ["goldvalue"] = 802,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Blood Harpy"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 22.8,
    ["goldvalue"] = 229,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.4,
    },
    ["Blood Hellion"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 23.2,
    ["goldvalue"] = 232,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.25,
    },
    ["Blood Hunter"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 39.5,
    ["goldvalue"] = 395,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Blood Ogre Mage"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 31.2,
    ["goldvalue"] = 313,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Blood Orc"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 22.8,
    ["goldvalue"] = 228,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Blood Ravager"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 59.5,
    ["goldvalue"] = 596,
    ["hits"] = 3500,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Scorpion"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 44.7,
    ["goldvalue"] = 447,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Blood Serpent"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 44.5,
    ["goldvalue"] = 446,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Blood Sorcerer"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 56.4,
    ["goldvalue"] = 565,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Blood Troll"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 36.2,
    ["goldvalue"] = 362,
    ["hits"] = 2000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Bloodrat"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 20.9,
    ["goldvalue"] = 209,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Bloodwolf"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 42.4,
    ["goldvalue"] = 424,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Bloodworm"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 70.3,
    ["goldvalue"] = 704,
    ["hits"] = 4500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Chaos Footman"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 20.7,
    ["goldvalue"] = 207,
    ["hits"] = 1500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 95,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Chaos Knight"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 64.7,
    ["goldvalue"] = 648,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 105,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.35,
    },
    ["Chaos Warrior"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 46.7,
    ["goldvalue"] = 467,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Clay Man"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 25.8,
    ["goldvalue"] = 258,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Coagulator"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 28.2,
    ["goldvalue"] = 283,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Doppelganger"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 56.5,
    ["goldvalue"] = 566,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Effigy"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 11.1,
    ["goldvalue"] = 111,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Entombed"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 34.2,
    ["goldvalue"] = 343,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.25,
    },
    ["Goblin"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 7.1,
    ["goldvalue"] = 71,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Gremlin"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 6.7,
    ["goldvalue"] = 67,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Kobold"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 10.7,
    ["goldvalue"] = 108,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Kraul Hydra"] = {
    ["location"] = "Kraul Hive",
    ["difficulty"] = 2919.6,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["bosstype"] = "Main Boss",
    },
    ["Lesser Blood Daemon"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 125.3,
    ["goldvalue"] = 1254,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Daemonic",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Malform"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 64.5,
    ["goldvalue"] = 645,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.3,
    },
    ["Sanguineous"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 681.5,
    ["goldvalue"] = 50000,
    ["hits"] = 100000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.8,
    ["bosstype"] = "Mini Boss",
    },
    ["Skulker"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 26,
    ["goldvalue"] = 260,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Twilight Guardian"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 33.4,
    ["goldvalue"] = 334,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["parry"] = 50,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Wolfhound"] = {
    ["location"] = "Aegis Keep",
    ["difficulty"] = 13.7,
    ["goldvalue"] = 137,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Changeling"] = {
    ["difficulty"] = 13.6,
    ["goldvalue"] = 136,
    ["hits"] = 750,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Colossal Termite"] = {
    ["difficulty"] = 39,
    ["goldvalue"] = 390,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Crippled Ettin"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 13.3,
    ["goldvalue"] = 134,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Death Adder"] = {
    ["difficulty"] = 83.5,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Death Asp"] = {
    ["difficulty"] = 30.6,
    ["hits"] = 2500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Lethal",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.8,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Defiler Sentinel"] = {
    ["difficulty"] = 1878,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Deformed Troll"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 9.3,
    ["goldvalue"] = 93,
    ["hits"] = 800,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 45,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.14,
    },
    ["Disastral"] = {
    ["difficulty"] = 260.5,
    ["goldvalue"] = 2605,
    ["hits"] = 10000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 175,
    ["magery"] = 175,
    ["minspelldmg"] = 35,
    ["maxspelldmg"] = 45,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Drowned Dead"] = {
    ["difficulty"] = 10.2,
    ["goldvalue"] = 102,
    ["hits"] = 800,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 60,
    ["armor"] = 0,
    ["magicresist"] = 50,
    ["parry"] = 50,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1,
    },
    ["Drowned Lurker"] = {
    ["difficulty"] = 79,
    ["goldvalue"] = 790,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.5,
    },
    ["Druidic Voyager"] = {
    ["difficulty"] = 43,
    ["goldvalue"] = 431,
    ["hits"] = 5000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Easter Rabbit"] = {
    ["difficulty"] = 33.9,
    ["goldvalue"] = 340,
    ["hits"] = 2000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 150,
    ["armor"] = 25,
    ["magicresist"] = 300,
    ["atkspd"] = 60,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Eerie Spirit"] = {
    ["difficulty"] = 0.2,
    ["goldvalue"] = 2,
    ["hits"] = 50,
    ["minmeleedmg"] = -1,
    ["maxmeleedmg"] = -1,
    ["wrestling"] = 0,
    ["armor"] = 0,
    ["magicresist"] = 0,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 0.6,
    },
    ["Explorer Captain"] = {
    ["difficulty"] = 50,
    ["goldvalue"] = 500,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Feeble Ratman"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.8,
    ["goldvalue"] = 38,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Fisherman"] = {
    ["difficulty"] = 17.9,
    ["goldvalue"] = 179,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Fisherman Captain"] = {
    ["difficulty"] = 39.4,
    ["goldvalue"] = 395,
    ["hits"] = 4000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Frail Orc"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 3.8,
    ["goldvalue"] = 38,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 40,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Frozen Remains"] = {
    ["difficulty"] = 9.6,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Garou"] = {
    ["difficulty"] = 59.7,
    ["goldvalue"] = 597,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Ghostly Captain"] = {
    ["difficulty"] = 50.5,
    ["goldvalue"] = 506,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Giant Bat"] = {
    ["difficulty"] = 1.8,
    ["goldvalue"] = 18,
    ["hits"] = 200,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 45,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Giant Frog"] = {
    ["difficulty"] = 1.7,
    ["goldvalue"] = 17,
    ["hits"] = 200,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Giant Plague Rat"] = {
    ["difficulty"] = 0.9,
    ["goldvalue"] = 10,
    ["hits"] = 100,
    ["minmeleedmg"] = 5,
    ["maxmeleedmg"] = 10,
    ["wrestling"] = 30,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Giant Sandroach"] = {
    ["difficulty"] = 11.2,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Giant Termite"] = {
    ["difficulty"] = 11.9,
    ["goldvalue"] = 120,
    ["hits"] = 1000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 75,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Gripping Tentacle"] = {
    ["difficulty"] = 55.4,
    ["hits"] = 5000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 150,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 60,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Hoary Wyrm"] = {
    ["difficulty"] = 355.3,
    ["goldvalue"] = 3554,
    ["hits"] = 16000,
    ["minmeleedmg"] = 70,
    ["maxmeleedmg"] = 80,
    ["wrestling"] = 130,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Horrific Calamity"] = {
    ["difficulty"] = 38.1,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Horrific Fiend"] = {
    ["difficulty"] = 14,
    ["goldvalue"] = 141,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.25,
    },
    ["Horrific Lurker"] = {
    ["difficulty"] = 18.5,
    ["goldvalue"] = 186,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Hunter Tentacle"] = {
    ["difficulty"] = 2.5,
    ["goldvalue"] = 26,
    ["hits"] = 200,
    ["minmeleedmg"] = 8,
    ["maxmeleedmg"] = 16,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Hunting Cat"] = {
    ["difficulty"] = 21.1,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.14,
    },
    ["Insatiable Mass"] = {
    ["difficulty"] = 38.1,
    ["goldvalue"] = 381,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Insatiable Slime"] = {
    ["difficulty"] = 9.9,
    ["goldvalue"] = 99,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 65,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "VerySlow",
    ["uniquescalar"] = 1.14,
    },
    ["Insatiable Slug"] = {
    ["difficulty"] = 14,
    ["goldvalue"] = 141,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 50,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Insatiable Viscera"] = {
    ["difficulty"] = 28.2,
    ["goldvalue"] = 283,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Jungle Devourer"] = {
    ["difficulty"] = 19.3,
    ["goldvalue"] = 194,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Jungle Stalker"] = {
    ["difficulty"] = 1981,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    },
    ["Kelpie"] = {
    ["difficulty"] = 33.7,
    ["goldvalue"] = 337,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.05,
    },
    ["Kobold Engineer"] = {
    ["difficulty"] = 100.4,
    ["goldvalue"] = 1004,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.8,
    },
    ["Lost Soul"] = {
    ["difficulty"] = 10.2,
    ["goldvalue"] = 102,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["magery"] = 25,
    ["minspelldmg"] = 5,
    ["maxspelldmg"] = 15,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Undead",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Lurking TurcreatureName"] = {
    ["difficulty"] = 120.5,
    ["goldvalue"] = 1206,
    ["hits"] = 4000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 2,
    },
    ["Lycanthrope"] = {
    ["difficulty"] = 59.5,
    ["goldvalue"] = 596,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.4,
    },
    ["Marine"] = {
    ["difficulty"] = 15,
    ["goldvalue"] = 151,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Maw Tentacle"] = {
    ["difficulty"] = 28.3,
    ["goldvalue"] = 283,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Merchant Captain"] = {
    ["difficulty"] = 51,
    ["goldvalue"] = 511,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Mirror Ice"] = {
    ["difficulty"] = 130.7,
    ["goldvalue"] = 1308,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.5,
    },
    ["Norse Cattle"] = {
    ["difficulty"] = 23.8,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Ocean Spray"] = {
    ["difficulty"] = 7.2,
    ["goldvalue"] = 73,
    ["hits"] = 500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 60,
    ["armor"] = 0,
    ["magicresist"] = 75,
    ["magery"] = 50,
    ["minspelldmg"] = 10,
    ["maxspelldmg"] = 20,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Orc Reaver"] = {
    ["difficulty"] = 27.9,
    ["goldvalue"] = 280,
    ["hits"] = 3000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Orc Reaver Captain"] = {
    ["difficulty"] = 58.9,
    ["goldvalue"] = 589,
    ["hits"] = 6000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Outsider"] = {
    ["difficulty"] = 26,
    ["goldvalue"] = 261,
    ["hits"] = 1250,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 125,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Packed Snow"] = {
    ["difficulty"] = 163.5,
    ["goldvalue"] = 1635,
    ["hits"] = 8000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Phase Spider"] = {
    ["difficulty"] = 1953,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 105,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 20,
    ["poisonresist"] = 0.6,
    ["stealth"] = "X",
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Phase Spider Mirror"] = {
    ["difficulty"] = 224.4,
    ["goldvalue"] = 2244,
    ["hits"] = 30000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 105,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 40,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Pirate"] = {
    ["difficulty"] = 22.2,
    ["goldvalue"] = 222,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Pirate Captain"] = {
    ["difficulty"] = 51,
    ["goldvalue"] = 511,
    ["hits"] = 5000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Plague Rat"] = {
    ["difficulty"] = 0.4,
    ["goldvalue"] = 5,
    ["hits"] = 50,
    ["minmeleedmg"] = 3,
    ["maxmeleedmg"] = 5,
    ["wrestling"] = 20,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Plague Ratman"] = {
    ["difficulty"] = 2.6,
    ["goldvalue"] = 26,
    ["hits"] = 250,
    ["minmeleedmg"] = 8,
    ["maxmeleedmg"] = 16,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Raging Tide"] = {
    ["difficulty"] = 30.1,
    ["goldvalue"] = 301,
    ["hits"] = 1500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.1,
    },
    ["Raider"] = {
    ["difficulty"] = 23.9,
    ["goldvalue"] = 240,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Raider Captain"] = {
    ["difficulty"] = 54,
    ["goldvalue"] = 541,
    ["hits"] = 5000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Ratman Spirit Hunter"] = {
    ["difficulty"] = 8.8,
    ["goldvalue"] = 88,
    ["hits"] = 600,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["stealth"] = "X",
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.1,
    },
    ["Ratman Spirit Mage"] = {
    ["difficulty"] = 9.9,
    ["goldvalue"] = 99,
    ["hits"] = 500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["parry"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ratman Spirit Warrior"] = {
    ["difficulty"] = 9.7,
    ["goldvalue"] = 97,
    ["hits"] = 800,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 100,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Ratman Witchdoctor"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 3142,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Reaper Of Souls"] = {
    ["difficulty"] = 0.2,
    ["goldvalue"] = 3,
    ["hits"] = 50,
    ["minmeleedmg"] = -1,
    ["maxmeleedmg"] = -1,
    ["wrestling"] = 0,
    ["armor"] = 0,
    ["magicresist"] = 0,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 0.8,
    },
    ["Red Rubble"] = {
    ["difficulty"] = 45.9,
    ["hits"] = 4000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Restless Sea"] = {
    ["difficulty"] = 13.8,
    ["goldvalue"] = 139,
    ["hits"] = 800,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 50,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Riftling"] = {
    ["difficulty"] = 3,
    ["goldvalue"] = 30,
    ["hits"] = 300,
    ["minmeleedmg"] = 6,
    ["maxmeleedmg"] = 12,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Roaming Nightmare"] = {
    ["difficulty"] = 251.7,
    ["goldvalue"] = 2518,
    ["hits"] = 12000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 100,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Roaming Terror"] = {
    ["difficulty"] = 219.1,
    ["goldvalue"] = 2192,
    ["hits"] = 10000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 130,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.1,
    },
    ["Rustled Cattle"] = {
    ["difficulty"] = 36.8,
    ["hits"] = 3000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Sailor"] = {
    ["difficulty"] = 22.2,
    ["goldvalue"] = 222,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Sand Crab"] = {
    ["difficulty"] = 2.1,
    ["goldvalue"] = 22,
    ["hits"] = 200,
    ["minmeleedmg"] = 7,
    ["maxmeleedmg"] = 14,
    ["wrestling"] = 55,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Screaming Horror"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 3571,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 120,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["atkspd"] = 60,
    ["slayer"] = "Daemonic",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Sea Serpent"] = {
    ["difficulty"] = 48.9,
    ["goldvalue"] = 490,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.5,
    },
    ["Seducesa"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2142,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Shardling"] = {
    ["difficulty"] = 100.1,
    ["goldvalue"] = 1002,
    ["hits"] = 6000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 100,
    ["magicresist"] = 25,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Sickly Lizardman"] = {
    ["location"] = "New Player Dungeon",
    ["difficulty"] = 6.2,
    ["goldvalue"] = 62,
    ["hits"] = 600,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 45,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Siren"] = {
    ["difficulty"] = 4.8,
    ["goldvalue"] = 49,
    ["hits"] = 400,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Slime Purger"] = {
    ["difficulty"] = 61.5,
    ["goldvalue"] = 616,
    ["hits"] = 3500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Slimy Mass"] = {
    ["difficulty"] = 39.3,
    ["goldvalue"] = 394,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["parry"] = 25,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Construct",
    ["ai"] = "Ranged",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.3,
    },
    ["Slithercreep"] = {
    ["difficulty"] = 2064,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.6,
    },
    ["Spirit Bear"] = {
    ["difficulty"] = 25,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Spirit Sabertusk"] = {
    ["difficulty"] = 34.5,
    ["hits"] = 2500,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 85,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Spirit Wolf"] = {
    ["difficulty"] = 20.7,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 0,
    ["magicresist"] = 100,
    ["parry"] = 25,
    ["atkspd"] = 45,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1,
    },
    ["Spy"] = {
    ["difficulty"] = 18.3,
    ["goldvalue"] = 183,
    ["hits"] = 2000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["poisontype"] = "Greater",
    ["poisoning"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stone Adder"] = {
    ["difficulty"] = 36.3,
    ["goldvalue"] = 364,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stone Asp"] = {
    ["difficulty"] = 15.2,
    ["goldvalue"] = 153,
    ["hits"] = 1250,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stone Viper"] = {
    ["difficulty"] = 19.9,
    ["goldvalue"] = 199,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 95,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stonescale Shaman"] = {
    ["difficulty"] = 26.8,
    ["goldvalue"] = 268,
    ["hits"] = 1500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 75,
    ["armor"] = 50,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stonescale Warrior"] = {
    ["difficulty"] = 25.2,
    ["goldvalue"] = 253,
    ["hits"] = 2000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 80,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Strangehell Deathstalk"] = {
    ["difficulty"] = 50.6,
    ["goldvalue"] = 507,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 130,
    ["armor"] = 25,
    ["magicresist"] = 200,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.3,
    },
    ["Strangehell Lashweed"] = {
    ["difficulty"] = 28.8,
    ["goldvalue"] = 288,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["poisontype"] = "Greater",
    ["poisoning"] = 25,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Monstrous",
    ["ai"] = "Ranged",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Strangehell Spikebush"] = {
    ["difficulty"] = 43.8,
    ["goldvalue"] = 439,
    ["hits"] = 2500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.5,
    },
    ["Strangehell Vines"] = {
    ["difficulty"] = 27,
    ["goldvalue"] = 271,
    ["hits"] = 1500,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["poisontype"] = "Deadly",
    ["poisoning"] = 50,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Strangeling"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2481,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 110,
    ["armor"] = 50,
    ["magicresist"] = 200,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Stranger"] = {
    ["difficulty"] = 11.5,
    ["goldvalue"] = 116,
    ["hits"] = 1200,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 85,
    ["armor"] = 50,
    ["magicresist"] = 50,
    ["atkspd"] = 45,
    ["poisonresist"] = 0.2,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Stygian Gaoler"] = {
    ["location"] = "Wildernes",
    ["difficulty"] = 2828.4,
    ["goldvalue"] = 100000,
    ["hits"] = 200000,
    ["minmeleedmg"] = 50,
    ["maxmeleedmg"] = 60,
    ["wrestling"] = 150,
    ["armor"] = 75,
    ["armormin"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Construct",
    ["bosstype"] = "Main Boss",
    },
    ["Stygian Servitor"] = {
    ["difficulty"] = 12.6,
    ["goldvalue"] = 126,
    ["hits"] = 1000,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Construct",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.2,
    },
    ["Sunken Tentacle"] = {
    ["difficulty"] = 25.8,
    ["goldvalue"] = 259,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Sylph"] = {
    ["difficulty"] = 12.9,
    ["goldvalue"] = 130,
    ["hits"] = 600,
    ["minmeleedmg"] = 12,
    ["maxmeleedmg"] = 24,
    ["wrestling"] = 120,
    ["armor"] = 25,
    ["magicresist"] = 250,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["poisonresist"] = 0.4,
    ["slayer"] = "Nature",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.14,
    },
    ["Termite"] = {
    ["difficulty"] = 5.1,
    ["goldvalue"] = 52,
    ["hits"] = 500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 70,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Terror Tentacle"] = {
    ["difficulty"] = 86.8,
    ["hits"] = 5000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 150,
    ["armor"] = 0,
    ["magicresist"] = 25,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1,
    },
    ["Tidal Dracolisk"] = {
    ["difficulty"] = 66.2,
    ["goldvalue"] = 663,
    ["hits"] = 3500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Tidal Hunter"] = {
    ["difficulty"] = 38.6,
    ["goldvalue"] = 386,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.3,
    },
    ["Tidal Warchief"] = {
    ["difficulty"] = 77.8,
    ["goldvalue"] = 779,
    ["hits"] = 4000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 100,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.25,
    },
    ["Tidal Warrior"] = {
    ["difficulty"] = 46.3,
    ["goldvalue"] = 463,
    ["hits"] = 3000,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.2,
    },
    ["Tidecaller Cultist"] = {
    ["difficulty"] = 123.6,
    ["goldvalue"] = 1236,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.2,
    },
    ["Tidecaller Minion"] = {
    ["difficulty"] = 34.8,
    ["goldvalue"] = 349,
    ["hits"] = 2000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 75,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Daemonic",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1,
    },
    ["Tidecaller Sentry"] = {
    ["difficulty"] = 54.1,
    ["goldvalue"] = 541,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Tradesman"] = {
    ["difficulty"] = 22.8,
    ["goldvalue"] = 228,
    ["hits"] = 2500,
    ["minmeleedmg"] = 25,
    ["maxmeleedmg"] = 35,
    ["wrestling"] = 95,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Tradesman Foreman"] = {
    ["difficulty"] = 51.6,
    ["goldvalue"] = 516,
    ["hits"] = 5000,
    ["minmeleedmg"] = 45,
    ["maxmeleedmg"] = 55,
    ["wrestling"] = 115,
    ["armor"] = 50,
    ["magicresist"] = 25,
    ["slayer"] = "Humanoid",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1.05,
    },
    ["Tundra Shaman"] = {
    ["difficulty"] = 107.2,
    ["goldvalue"] = 1073,
    ["hits"] = 5000,
    ["minmeleedmg"] = 30,
    ["maxmeleedmg"] = 40,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 150,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Monstrous",
    ["ai"] = "MeleeMage",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.3,
    },
    ["Vile Pedagogue"] = {
    ["difficulty"] = 103.6,
    ["goldvalue"] = 1036,
    ["hits"] = 5000,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 100,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["poisonresist"] = 0.6,
    ["slayer"] = "Humanoid",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Volcanic Elemental"] = {
    ["location"] = "Wilderness",
    ["difficulty"] = 2067,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 100,
    ["magicresist"] = 100,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    ["bosstype"] = "Shrine Boss",
    },
    ["Vortex"] = {
    ["difficulty"] = 15.6,
    ["goldvalue"] = 157,
    ["hits"] = 1000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 50,
    ["armor"] = 0,
    ["magicresist"] = 150,
    ["parry"] = 50,
    ["atkspd"] = 60,
    ["slayer"] = "Elemental",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.14,
    },
    ["Walrus"] = {
    ["difficulty"] = 1.8,
    ["goldvalue"] = 19,
    ["hits"] = 200,
    ["minmeleedmg"] = 7,
    ["maxmeleedmg"] = 14,
    ["wrestling"] = 60,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Watery Leaper"] = {
    ["difficulty"] = 37.1,
    ["goldvalue"] = 371,
    ["hits"] = 2500,
    ["minmeleedmg"] = 20,
    ["maxmeleedmg"] = 30,
    ["wrestling"] = 90,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Beastial",
    ["ai"] = "Melee",
    ["speed"] = "VeryFast",
    ["uniquescalar"] = 1.2,
    },
    ["Weirdling"] = {
    ["difficulty"] = 13.2,
    ["goldvalue"] = 133,
    ["hits"] = 800,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 80,
    ["armor"] = 25,
    ["magicresist"] = 100,
    ["magery"] = 75,
    ["minspelldmg"] = 15,
    ["maxspelldmg"] = 25,
    ["slayer"] = "Construct",
    ["ai"] = "MeleeMage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.1,
    },
    ["Wildwood Avenger"] = {
    ["difficulty"] = 2049,
    ["goldvalue"] = 100000,
    ["hits"] = 250000,
    ["minmeleedmg"] = 35,
    ["maxmeleedmg"] = 45,
    ["wrestling"] = 90,
    ["armor"] = 75,
    ["magicresist"] = 100,
    ["slayer"] = "Nature",
    ["ai"] = "Melee",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.6,
    },
    ["Wintergrip"] = {
    ["difficulty"] = 162.5,
    ["goldvalue"] = 1626,
    ["hits"] = 6000,
    ["minmeleedmg"] = 15,
    ["maxmeleedmg"] = 25,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["magery"] = 125,
    ["minspelldmg"] = 25,
    ["maxspelldmg"] = 35,
    ["slayer"] = "Construct",
    ["ai"] = "Mage",
    ["speed"] = "Slow",
    ["uniquescalar"] = 1.35,
    },
    ["Wisp"] = {
    ["difficulty"] = 10.8,
    ["goldvalue"] = 109,
    ["hits"] = 500,
    ["minmeleedmg"] = 10,
    ["maxmeleedmg"] = 20,
    ["wrestling"] = 105,
    ["armor"] = 25,
    ["magicresist"] = 125,
    ["parry"] = 25,
    ["magery"] = 100,
    ["minspelldmg"] = 20,
    ["maxspelldmg"] = 30,
    ["slayer"] = "Elemental",
    ["ai"] = "Mage",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
    ["Yeti"] = {
    ["difficulty"] = 117.1,
    ["goldvalue"] = 1172,
    ["hits"] = 6000,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 110,
    ["armor"] = 25,
    ["magicresist"] = 25,
    ["slayer"] = "Monstrous",
    ["ai"] = "Melee",
    ["speed"] = "Fast",
    ["uniquescalar"] = 1.25,
    },
    ["Zombie Dragon"] = {
    ["difficulty"] = 65.7,
    ["goldvalue"] = 657,
    ["hits"] = 4500,
    ["minmeleedmg"] = 40,
    ["maxmeleedmg"] = 50,
    ["wrestling"] = 85,
    ["armor"] = 75,
    ["magicresist"] = 25,
    ["poisontype"] = "Deadly",
    ["poisonresist"] = 0.6,
    ["slayer"] = "Undead",
    ["ai"] = "Melee",
    ["speed"] = "Medium",
    ["uniquescalar"] = 1,
    },
  }


  -- Tamed Creature Information
function p.singleCreature(frame)
   local tameableArray = {
   local creatureArray = mw.loadData("WildCreatureData")
    ["Acarid"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 36,
      ["maxdmg"] = 48,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Burrow",
    },
    ["Adder"] = {
      ["slots"] = 2,
      ["taming"] = 80,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 28,
      ["maxdmg"] = 36,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.228,
    },
    ["Aegis Asp"] = {
      ["slots"] = 1,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Mirror",
    },
    ["Aegis Imp"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 11,
      ["maxdmg"] = 15,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 125,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Mirror",
    },
    ["Aegis Leech"] = {
      ["slots"] = 1,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 22,
      ["maxdmg"] = 26,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = {"Mirror","Burrow"},
    },
    ["Aegis Minion"] = {
      ["slots"] = 1,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 15,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Mirror",
    },
    ["Aegis Mongbat"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.314,
      ["cooldownability"] = "Mirror",
    },
    ["Aegis Rat"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.371,
      ["cooldownability"] = "Mirror",
      ["passiveability"] = "Disease",
    },
    ["Aegis Scorpion"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Mirror",
    },
    ["Aegis Slime"] = {
      ["slots"] = 1,
      ["taming"] = 75,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.257,
      ["cooldownability"] = "Mirror",
      ["passiveability"] = "Regeneration",
      ["innateability"] = "Elusive Form",
    },
    ["Aegis Whelp"] = {
      ["slots"] = 1,
      ["taming"] = 105,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 22,
      ["maxdmg"] = 26,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 100,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Mirror",
      ["passiveability"] = "Frenzy",
    },
    ["Air Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 44,
      ["maxdmg"] = 60,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = {"Air Breath","Air Shield"},
    },
    ["Air Drake"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = {"Air Breath","Air Shield"},
    },
    ["Anaconda"] = {
      ["slots"] = 2,
      ["taming"] = 85,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.2,
    },
    ["Ankheg"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 34,
      ["maxdmg"] = 42,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Poison Dig",
      ["innateability"] = "Mule",
    },
    ["Antlion"] = {
      ["slots"] = 2,
      ["taming"] = 80,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 28,
      ["maxdmg"] = 34,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.228,
      ["cooldownability"] = "Dig",
      ["innateability"] = "Mule",
    },
    ["Arboreal Wisp"] = {
      ["slots"] = 3,
      ["taming"] = 105,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 225,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["underdogscalar"] = 1.085,
      ["passiveability"] = "Earth Seeds",
      ["innateability"] = "Elusive Form",
    },
    ["Arctic Bullvore"] = {
      ["slots"] = 3,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 42,
      ["maxdmg"] = 56,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Chilled Charge",
      ["passiveability"] = "Chill Touch",
      ["innateability"] = "Mule",
    },
    ["Army Ant"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Swarmstrike",
    },
    ["Asp"] = {
      ["slots"] = 1,
      ["taming"] = 70,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.285,
    },
    ["Azure Wyrm"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 46,
      ["maxdmg"] = 62,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Concussion Breath",
    },
    ["Azure Wyrmling"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Concussion Breath",
    },
    ["Barbed Prowler"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 58,
      ["maxdmg"] = 76,
      ["wrestling"] = 95,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Barb Swarm",
      ["passiveability"] = "Frenzy",
    },
    ["Bird"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 25,
      ["mindmg"] = 4,
      ["maxdmg"] = 6,
      ["wrestling"] = 25,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Bird of Paradise"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 350,
      ["mindmg"] = 42,
      ["maxdmg"] = 64,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 125,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Tranquility",
    },
    ["Bison"] = {
      ["slots"] = 2,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 26,
      ["maxdmg"] = 32,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Black Bear"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = "Enrage",
    },
    ["Black Cat"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 22,
      ["maxdmg"] = 28,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["passiveability"] = {"Frenzy","Bad Luck"},
    },
    ["Black Widow"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 32,
      ["maxdmg"] = 36,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Web",
      ["passiveability"] = "Disease",
    },
    ["Blightmare"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 275,
      ["mindmg"] = 26,
      ["maxdmg"] = 32,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["passiveability"] = "Spellblight",
    },
    ["Blood Ape"] = {
      ["slots"] = 1,
      ["taming"] = 85,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.2,
      ["cooldownability"] = "Blood Frenzy",
      ["passiveability"] = "Bleed",
    },
    ["Blood Courser"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 250,
      ["mindmg"] = 26,
      ["maxdmg"] = 30,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["underdogscalar"] = 1.057,
      ["passiveability"] = "Spellflaying",
    },
    ["Blood Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 52,
      ["maxdmg"] = 66,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Massive Blood Breath",
      ["passiveability"] = "Bleed",
    },
    ["Blood Drake"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 38,
      ["maxdmg"] = 48,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Massive Blood Breath",
      ["passiveability"] = "Bleed",
    },
    ["Blood Gorger"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 425,
      ["mindmg"] = 44,
      ["maxdmg"] = 58,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Gorge",
      ["passiveability"] = {"Grasp","Bleed"},
    },
    ["Blood Hunter"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Blood Frenzy",
      ["passiveability"] = "Bleed",
    },
    ["Blood Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Spellflaying",
    },
    ["Blood Purger"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Giant Blood Barrage",
      ["passiveability"] = "Bleed",
      ["innateability"] = "Blood Barrage",
    },
    ["Blood Scorpion"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 34,
      ["maxdmg"] = 38,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Blood Shield",
      ["passiveability"] = "Bleed",
    },
    ["Blood Serpent"] = {
      ["slots"] = 2,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Blood Expertise",
      ["passiveability"] = "Bleed",
    },
    ["Bloodskipper"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 24,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Blood Breath",
      ["passiveability"] = "Bleed",
    },
    ["Bloodwolf"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 325,
      ["mindmg"] = 34,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = {"Charge","Blood Rage"},
      ["passiveability"] = "Bleed",
    },
    ["Bloodworm"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 44,
      ["maxdmg"] = 54,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = {"Burrow","Blood Healing"},
      ["passiveability"] = "Bleed",
    },
    ["Bogyugh"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 32,
      ["maxdmg"] = 52,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Bog Barrage",
    },
    ["Bonehorn"] = {
      ["slots"] = 2,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Gore",
    },
    ["Bonfire Wisp"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 250,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["underdogscalar"] = 1.057,
      ["passiveability"] = "Spellburn",
      ["innateability"] = "Elusive Form",
    },
    ["Brasshopper"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 38,
      ["maxdmg"] = 44,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = {"Brass Shield","Brass Tacks"},
    },
    ["Brown Bear"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = "Enrage",
    },
    ["Bull"] = {
      ["slots"] = 2,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 26,
      ["maxdmg"] = 32,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Bullvore"] = {
      ["slots"] = 3,
      ["taming"] = 80,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 44,
      ["maxdmg"] = 60,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.228,
      ["cooldownability"] = "Charge",
      ["innateability"] = "Mule",
    },
    ["Carrion Beetle"] = {
      ["slots"] = 2,
      ["taming"] = 65,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 26,
      ["maxdmg"] = 32,
      ["wrestling"] = 70,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.314,
      ["passiveability"] = "Disease",
    },
    ["Cat"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 6,
      ["maxdmg"] = 10,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Cave Bat"] = {
      ["slots"] = 1,
      ["taming"] = 70,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.285,
      ["passiveability"] = "Bleed",
    },
    ["Cave Bear"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.342,
      ["passiveability"] = "Enrage",
    },
    ["Cave Gorger"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 46,
      ["maxdmg"] = 62,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Gorge",
      ["passiveability"] = "Grasp",
    },
    ["Chameleon"] = {
      ["slots"] = 1,
      ["taming"] = 75,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.257,
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
    },
    ["Chicken"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 4,
      ["maxdmg"] = 6,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Colossal Black Widow"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 60,
      ["maxdmg"] = 80,
      ["wrestling"] = 100,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Web",
      ["passiveability"] = "Disease",
    },
    ["Colossal Blazing Beetle"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 600,
      ["mindmg"] = 52,
      ["maxdmg"] = 74,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Fiery Charge",
      ["passiveability"] = "Flamestrike",
      ["innateability"] = "Mule",
    },
    ["Colossal Boa"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 56,
      ["maxdmg"] = 72,
      ["wrestling"] = 100,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Constrict",
    },
    ["Colossal Crystal Beetle"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 50,
      ["maxdmg"] = 70,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Spelleater Shield",
      ["innateability"] = "Mule",
    },
    ["Colossal Dung Beetle"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 550,
      ["mindmg"] = 52,
      ["maxdmg"] = 74,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Dung Roller",
      ["innateability"] = "Mule",
    },
    ["Colossal Frog"] = {
      ["slots"] = 2,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = "Regeneration",
    },
    ["Colossal Frost Scorpion"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 38,
      ["maxdmg"] = 54,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Chill Touch",
    },
    ["Colossal Huntsman"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 62,
      ["maxdmg"] = 84,
      ["wrestling"] = 105,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Hunting Web",
    },
    ["Colossal Poison Dart Frog"] = {
      ["slots"] = 3,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 48,
      ["maxdmg"] = 60,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.114,
      ["passiveability"] = "Regeneration",
    },
    ["Colossal Sandroach"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 50,
      ["maxdmg"] = 70,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.028,
    },
    ["Colossal Searing Scorpion"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 375,
      ["mindmg"] = 38,
      ["maxdmg"] = 56,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.057,
      ["passiveability"] = "Flamestrike",
    },
    ["Colossal Spitting Viper"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1,
      ["innateability"] = "Venom Barrage",
    },
    ["Colossal Strider"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 700,
      ["mindmg"] = 60,
      ["maxdmg"] = 80,
      ["wrestling"] = 95,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "War Stomp",
      ["innateability"] = "Mule",
    },
    ["Colossal Swamp Beetle"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 46,
      ["maxdmg"] = 62,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Poisoneater Shield",
      ["innateability"] = "Mule",
    },
    ["Colossal Swamp Slug"] = {
      ["slots"] = 2,
      ["taming"] = 75,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 38,
      ["maxdmg"] = 46,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.257,
      ["innateability"] = "Slime Barrage",
    },
    ["Colossal Trapdoor Spider"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 58,
      ["maxdmg"] = 76,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1,
      ["cooldownability"] = {"Vanish","Web"},
      ["innateability"] = "Backstab",
    },
    ["Corpse Eater"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.371,
      ["passiveability"] = "Disease",
    },
    ["Corpse Purger"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Giant Corpse Barrage",
      ["passiveability"] = "Disease",
      ["innateability"] = "Corpse Barrage",
    },
    ["Corrupted Hornbeast"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 40,
      ["maxdmg"] = 50,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Corruption Blast",
      ["passiveability"] = "Enrage",
    },
    ["Cougar"] = {
      ["slots"] = 1,
      ["taming"] = 45,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.428,
      ["passiveability"] = "Frenzy",
    },
    ["Cow"] = {
      ["slots"] = 2,
      ["taming"] = 30,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.514,
    },
    ["Cryptwing"] = {
      ["slots"] = 1,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 26,
      ["wrestling"] = 95,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Burrow",
      ["passiveability"] = "Frenzy",
    },
    ["Darkscale"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 60,
      ["maxdmg"] = 80,
      ["wrestling"] = 95,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Darkstrike",
      ["innateability"] = "Elusive Form",
    },
    ["Decaying Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 42,
      ["maxdmg"] = 54,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Flesheater",
      ["passiveability"] = "Bleed",
    },
    ["Deep Crawler"] = {
      ["slots"] = 3,
      ["taming"] = 80,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 48,
      ["maxdmg"] = 62,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.228,
      ["cooldownability"] = "Crush",
      ["innateability"] = "Mule",
    },
    ["Desert Ostard"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.314,
      ["passiveability"] = "Frenzy",
    },
    ["Devilbat"] = {
      ["slots"] = 1,
      ["taming"] = 80,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.228,
      ["passiveability"] = {"Bleed","Weaken"},
    },
    ["Devourer Beetle"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Disease",
      ["innateability"] = "Mule",
    },
    ["Dog"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 6,
      ["maxdmg"] = 10,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 95,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 40,
      ["maxdmg"] = 60,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.142,
      ["cooldownability"] = "Fire Breath",
    },
    ["Dragon Whelp"] = {
      ["slots"] = 1,
      ["taming"] = 85,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.2,
      ["cooldownability"] = "Fire Breath",
    },
    ["Drake"] = {
      ["slots"] = 2,
      ["taming"] = 85,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.2,
      ["cooldownability"] = "Fire Breath",
    },
    ["Drake Whelp"] = {
      ["slots"] = 1,
      ["taming"] = 75,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.257,
      ["cooldownability"] = "Fire Breath",
    },
    ["Drowned Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 42,
      ["maxdmg"] = 54,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Drowned Barrage",
    },
    ["Dusk Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 50,
      ["maxdmg"] = 66,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Massive Dusk Breath",
    },
    ["Dusk Drake"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 34,
      ["maxdmg"] = 42,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Massive Dusk Breath",
    },
    ["Eagle"] = {
      ["slots"] = 1,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 75,
      ["mindmg"] = 8,
      ["maxdmg"] = 12,
      ["wrestling"] = 45,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Earth Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 38,
      ["maxdmg"] = 58,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = {"Earth Breath","Earth Shield"},
    },
    ["Earth Drake"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 28,
      ["maxdmg"] = 38,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = {"Earth Breath","Earth Shield"},
    },
    ["Earth Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Spellcrush",
    },
    ["Eldritch Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 450,
      ["mindmg"] = 36,
      ["maxdmg"] = 44,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 150,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Eldritch Breath",
      ["passiveability"] = "Spellshield",
    },
    ["Eldritch Drake"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 300,
      ["mindmg"] = 22,
      ["maxdmg"] = 28,
      ["wrestling"] = 70,
      ["armor"] = 50,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Eldritch Breath",
      ["passiveability"] = "Spellshield",
    },
    ["Eldritch Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 11,
      ["maxdmg"] = 15,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Spellbreak",
    },
    ["Elk"] = {
      ["slots"] = 1,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Embear"] = {
      ["slots"] = 2,
      ["taming"] = 65,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 26,
      ["maxdmg"] = 32,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.314,
      ["cooldownability"] = "Charge",
      ["passiveability"] = "Flamestrike",
    },
    ["Ember Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 48,
      ["maxdmg"] = 64,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Massive Fire Breath",
      ["passiveability"] = "Flamestrike",
    },
    ["Ember Drake"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Massive Fire Breath",
      ["passiveability"] = "Flamestrike",
    },
    ["Entozoon"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 42,
      ["maxdmg"] = 54,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Eversion",
    },
    ["Familiar"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 100,
      ["mindmg"] = 8,
      ["maxdmg"] = 11,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["underdogscalar"] = 1.4,
    },
    ["Fiery Leaper"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 24,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Fire Breath",
      ["passiveability"] = "Flamestrike",
    },
    ["Fire Ant"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 65,
      ["armor"] = 50,
      ["magicresist"] = 55,
      ["underdogscalar"] = 1.342,
      ["passiveability"] = "Flamestrike",
    },
    ["Fire Beetle"] = {
      ["slots"] = 2,
      ["taming"] = 75,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.257,
      ["passiveability"] = "Flamestrike",
      ["innateability"] = "Mule",
    },
    ["Fire Crawler"] = {
      ["slots"] = 3,
      ["taming"] = 100,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 42,
      ["maxdmg"] = 62,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Crush",
      ["passiveability"] = "Flamestrike",
    },
    ["Fire Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 15,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Spellburn",
    },
    ["Fire Minion"] = {
      ["slots"] = 1,
      ["taming"] = 90,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 13,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["underdogscalar"] = 1.171,
      ["passiveability"] = "Spellburn",
    },
    ["Fire Salamander"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.342,
      ["passiveability"] = {"Flamestrike","Frenzy"},
    },
    ["Firebat"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = {"Flamestrike","Bleed"},
    },
    ["Flame Purger"] = {
      ["slots"] = 2,
      ["taming"] = 90,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 36,
      ["maxdmg"] = 44,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = "Giant Fire Barrage",
      ["innateability"] = "Fire Barrage",
    },
    ["Flamehound"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.371,
      ["passiveability"] = {"Flamestrike","Frenzy"},
    },
    ["Forest Ostard"] = {
      ["slots"] = 1,
      ["taming"] = 75,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.257,
    },
    ["Fortress Beetle"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 800,
      ["mindmg"] = 60,
      ["maxdmg"] = 80,
      ["wrestling"] = 90,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Mirror",
      ["passiveability"] = "Grit",
    },
    ["Frenzied Ostard"] = {
      ["slots"] = 1,
      ["taming"] = 95,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.142,
      ["passiveability"] = "Frenzy",
    },
    ["Frigid Hornbeast"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 36,
      ["maxdmg"] = 48,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Frigid Blast",
      ["passiveability"] = "Enrage",
    },
    ["Frost Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Spellchill",
    },
    ["Gargantua Spider"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 62,
      ["maxdmg"] = 84,
      ["wrestling"] = 105,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Weakening Web",
    },
    ["Giant Bat"] = {
      ["slots"] = 1,
      ["taming"] = 40,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 10,
      ["maxdmg"] = 14,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.457,
      ["passiveability"] = "Bleed",
    },
    ["Giant Black Widow"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 48,
      ["maxdmg"] = 60,
      ["wrestling"] = 95,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Web",
      ["passiveability"] = "Disease",
    },
    ["Giant Blood Purger"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 44,
      ["maxdmg"] = 54,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Giant Blood Barrage",
      ["passiveability"] = "Bleed",
      ["innateability"] = "Blood Barrage",
    },
    ["Giant Chameleon"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 30,
      ["maxdmg"] = 38,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
    },
    ["Giant Crystal Beetle"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Spelleater Shield",
      ["innateability"] = "Mule",
    },
    ["Giant Frog"] = {
      ["slots"] = 1,
      ["taming"] = 40,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.457,
      ["passiveability"] = "Regeneration",
    },
    ["Giant Locust"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Swarmstrike",
    },
    ["Giant Poison Dart Frog"] = {
      ["slots"] = 2,
      ["taming"] = 90,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 32,
      ["maxdmg"] = 36,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.171,
      ["passiveability"] = "Regeneration",
    },
    ["Giant Rat"] = {
      ["slots"] = 1,
      ["taming"] = 30,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 75,
      ["mindmg"] = 10,
      ["maxdmg"] = 14,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.514,
      ["passiveability"] = "Disease",
    },
    ["Giant Sandroach"] = {
      ["slots"] = 1,
      ["taming"] = 105,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.085,
      ["innateability"] = "Mule",
    },
    ["Giant Scorpion"] = {
      ["slots"] = 2,
      ["taming"] = 65,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 26,
      ["maxdmg"] = 30,
      ["wrestling"] = 70,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.314,
    },
    ["Giant Spider"] = {
      ["slots"] = 2,
      ["taming"] = 60,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 26,
      ["maxdmg"] = 30,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.342,
      ["cooldownability"] = "Web",
    },
    ["Giant Spitting Viper"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 30,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.057,
      ["innateability"] = "Venom Barrage",
    },
    ["Giant Strider"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 50,
      ["maxdmg"] = 70,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "War Stomp",
      ["innateability"] = "Mule",
    },
    ["Giant Swamp Beetle"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Poisoneater Shield",
      ["innateability"] = "Mule",
    },
    ["Giant Swamp Slug"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.314,
      ["innateability"] = "Slime Barrage",
    },
    ["Giant Trapdoor Spider"] = {
      ["slots"] = 2,
      ["taming"] = 95,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.142,
      ["cooldownability"] = {"Vanish","Web"},
      ["innateability"] = "Backstab",
    },
    ["Glowworm"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 40,
      ["maxdmg"] = 50,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Glowmark",
    },
    ["Goat"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 6,
      ["maxdmg"] = 10,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Goretusk"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 550,
      ["mindmg"] = 46,
      ["maxdmg"] = 62,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = {"Enrage","Gore"},
      ["innateability"] = "Mule",
    },
    ["Gravebug"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Disease",
    },
    ["Great Hart"] = {
      ["slots"] = 1,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Grizzly Bear"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.371,
      ["passiveability"] = "Enrage",
    },
    ["Guar"] = {
      ["slots"] = 1,
      ["taming"] = 40,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 45,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.457,
      ["innateability"] = "Mule",
    },
    ["Harvestman"] = {
      ["slots"] = 2,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Burrow",
      ["passiveability"] = "Disease",
    },
    ["Hellhound"] = {
      ["slots"] = 2,
      ["taming"] = 90,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = {"Charge","Fire Breath"},
      ["passiveability"] = "Flamestrike",
      ["innateability"] = "Mule",
    },
    ["Hind"] = {
      ["slots"] = 1,
      ["taming"] = 30,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 75,
      ["mindmg"] = 8,
      ["maxdmg"] = 12,
      ["wrestling"] = 35,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.514,
    },
    ["Horse"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
    },
    ["Husk Crab"] = {
      ["slots"] = 1,
      ["taming"] = 90,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = "Crush",
    },
    ["Imp"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 125,
      ["mindmg"] = 9,
      ["maxdmg"] = 12,
      ["wrestling"] = 45,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.342,
    },
    ["Incubus"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 15,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Dreamlull",
    },
    ["Jaguar"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.314,
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
    },
    ["Jungle Mantis"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 38,
      ["maxdmg"] = 44,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.085,
      ["passiveability"] = "Bleed",
    },
    ["Komodo"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 70,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Crush",
    },
    ["Lemura"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 125,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = {"Reactive Armor","Magic Reflect"},
      ["passiveability"] = "Spellshield",
    },
    ["Llama"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
    },
    ["Manticore"] = {
      ["slots"] = 3,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 50,
      ["maxdmg"] = 70,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Manticore Venom",
    },
    ["Minion"] = {
      ["slots"] = 1,
      ["taming"] = 70,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 13,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["underdogscalar"] = 1.285,
    },
    ["Molten Mongbat"] = {
      ["slots"] = 1,
      ["taming"] = 95,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.142,
      ["passiveability"] = "Flamestrike",
    },
    ["Mongbat"] = {
      ["slots"] = 1,
      ["taming"] = 30,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 75,
      ["mindmg"] = 10,
      ["maxdmg"] = 14,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.514,
    },
    ["Monitor"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 65,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.342,
      ["cooldownability"] = "Crush",
    },
    ["Monitor Hatchling"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 55,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
      ["cooldownability"] = "Crush",
    },
    ["Muck"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 55,
      ["armor"] = 50,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = "Regeneration",
      ["innateability"] = "Elusive Form",
    },
    ["Nightmare"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 225,
      ["mindmg"] = 22,
      ["maxdmg"] = 28,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["underdogscalar"] = 1.114,
      ["passiveability"] = "Spellburn",
    },
    ["Nightstalker"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 40,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = {"Vanish","Charge"},
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
    },
    ["Otyugh"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 38,
      ["maxdmg"] = 56,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Spine Barrage",
    },
    ["Phoenix"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 350,
      ["mindmg"] = 42,
      ["maxdmg"] = 64,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 125,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Epic Barrage",
      ["passiveability"] = {"Spellburn","Spellsurge"},
    },
    ["Pig"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 6,
      ["maxdmg"] = 10,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Poison Mephit"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Spellvenom",
    },
    ["Polar Bear"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.371,
      ["passiveability"] = "Enrage",
    },
    ["Primordial"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.342,
      ["passiveability"] = "Frenzy",
    },
    ["Primordial Whelp"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = "Frenzy",
    },
    ["Radiant Burrowbug"] = {
      ["slots"] = 2,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 325,
      ["mindmg"] = 30,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Fiery Dig",
      ["passiveability"] = "Flamestrike",
      ["innateability"] = "Mule",
    },
    ["Reef Serpent"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.114,
    },
    ["Rime Guar"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 75,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["passiveability"] = "Chill Touch",
      ["innateability"] = "Mule",
    },
    ["Rock Guar"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 55,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.4,
      ["innateability"] = "Mule",
    },
    ["Ruby Wyrm"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 52,
      ["maxdmg"] = 72,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Massive Ruby Breath",
    },
    ["Ruby Wyrmling"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Massive Ruby Breath",
    },
    ["Sabeartooth"] = {
      ["slots"] = 2,
      ["taming"] = 85,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 275,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.2,
      ["cooldownability"] = "Chilled Charge",
      ["passiveability"] = "Chill Touch",
    },
    ["Sand Crab"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.371,
      ["cooldownability"] = "Crush",
    },
    ["Sand Crawler"] = {
      ["slots"] = 3,
      ["taming"] = 90,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 48,
      ["maxdmg"] = 62,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = "Crush",
      ["innateability"] = "Mule",
    },
    ["Sand Muck"] = {
      ["slots"] = 1,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 22,
      ["maxdmg"] = 26,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Sandblast",
      ["passiveability"] = "Regeneration",
      ["innateability"] = "Elusive Form",
    },
    ["Sandstalker"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Vanish",
      ["innateability"] = {"Backstab","Dust Up"},
    },
    ["Savage Primordial"] = {
      ["slots"] = 2,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Primal Rage",
    },
    ["Scarab"] = {
      ["slots"] = 2,
      ["taming"] = 70,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 34,
      ["maxdmg"] = 40,
      ["wrestling"] = 70,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.285,
      ["cooldownability"] = {"Reactive Armor","Magic Reflect"},
      ["innateability"] = "Mule",
    },
    ["Scorpion"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 55,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.371,
    },
    ["Searing Bullvore"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 550,
      ["mindmg"] = 50,
      ["maxdmg"] = 68,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Charge",
      ["passiveability"] = "Flamestrike",
      ["innateability"] = "Mule",
    },
    ["Searing Imp"] = {
      ["slots"] = 1,
      ["taming"] = 80,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 12,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1.228,
      ["passiveability"] = "Spellburn",
    },
    ["Searing Lizard"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.314,
      ["cooldownability"] = "Crush",
      ["passiveability"] = "Flamestrike",
    },
    ["Searing Mantis"] = {
      ["slots"] = 2,
      ["taming"] = 70,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 250,
      ["mindmg"] = 28,
      ["maxdmg"] = 34,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.285,
      ["passiveability"] = {"Flamestrike","Bleed"},
    },
    ["Shade Wolf"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
    },
    ["Shadow Minion"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 175,
      ["mindmg"] = 13,
      ["maxdmg"] = 17,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["underdogscalar"] = 1,
      ["passiveability"] = "Weaken",
    },
    ["Shadow Prowler"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 400,
      ["mindmg"] = 58,
      ["maxdmg"] = 76,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["passiveability"] = "Frenzy",
      ["innateability"] = {"Elusive Form","Shadowstrikes"},
    },
    ["Shallow Water"] = {
      ["slots"] = 1,
      ["taming"] = 50,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.4,
      ["passiveability"] = {"Soak","Regeneration"},
      ["innateability"] = "Elusive Form",
    },
    ["Sheep"] = {
      ["slots"] = 1,
      ["taming"] = 25,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 50,
      ["mindmg"] = 6,
      ["maxdmg"] = 10,
      ["wrestling"] = 20,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.542,
    },
    ["Silverback"] = {
      ["slots"] = 1,
      ["taming"] = 60,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.342,
      ["passiveability"] = "Frenzy",
    },
    ["Sinewseeker"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["stealth"] = "X",
      ["underdogscalar"] = 1,
      ["cooldownability"] = {"Vanish","Devour"},
      ["passiveability"] = "Bleed",
      ["innateability"] = "Backstab",
    },
    ["Skeletal Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 50,
      ["maxdmg"] = 68,
      ["wrestling"] = 70,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Massive Bone Breath",
    },
    ["Skulker"] = {
      ["slots"] = 1,
      ["taming"] = 90,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Disease",
      ["innateability"] = "Backstab",
    },
    ["Smoke Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 46,
      ["maxdmg"] = 62,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Steam Cloud",
      ["innateability"] = {"Backstab","Elusive Form"},
    },
    ["Smoke Drake"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Steam Cloud",
      ["innateability"] = {"Backstab","Elusive Form"},
    },
    ["Smoke Faerie Dragon"] = {
      ["slots"] = 1,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Steam Cloud",
      ["innateability"] = {"Backstab","Elusive Form"},
    },
    ["Snowdrift"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Flurry",
      ["passiveability"] = "Regeneration",
      ["innateability"] = "Elusive Form",
    },
    ["Sphinx"] = {
      ["slots"] = 1,
      ["taming"] = 110,
      ["class"] = "Tank",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = {"Reactive Armor","Magic Reflect"},
    },
    ["Spitting Viper"] = {
      ["slots"] = 1,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 22,
      ["maxdmg"] = 28,
      ["wrestling"] = 75,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.114,
      ["innateability"] = "Venom Barrage",
    },
    ["Stinger"] = {
      ["slots"] = 1,
      ["taming"] = 90,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.171,
    },
    ["Sun Wyrm"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 52,
      ["maxdmg"] = 66,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Scorching Breath",
    },
    ["Sun Wyrmling"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 38,
      ["maxdmg"] = 44,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Scorching Breath",
    },
    ["Sunscale"] = {
      ["slots"] = 4,
      ["taming"] = 120,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 60,
      ["maxdmg"] = 80,
      ["wrestling"] = 95,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Scorching Breath",
    },
    ["Swamp Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 50,
      ["maxdmg"] = 60,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = "Swamp Breath",
    },
    ["Swamp Drake"] = {
      ["slots"] = 2,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.085,
      ["cooldownability"] = "Swamp Breath",
    },
    ["Swamp Spider"] = {
      ["slots"] = 1,
      ["taming"] = 55,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["underdogscalar"] = 1.371,
      ["cooldownability"] = "Web",
    },
    ["Sword Spider"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 52,
      ["maxdmg"] = 64,
      ["wrestling"] = 95,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Deadly",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Web",
      ["passiveability"] = "Swordspin",
    },
    ["Temple Guardian"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 350,
      ["mindmg"] = 44,
      ["maxdmg"] = 66,
      ["wrestling"] = 85,
      ["armor"] = 75,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.028,
      ["cooldownability"] = {"Vanish","Reactive Armor","Magic Reflect"},
      ["innateability"] = "Backstab",
    },
    ["Tidal Mantis"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 40,
      ["maxdmg"] = 46,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.114,
      ["passiveability"] = {"Bleed","Soak"},
    },
    ["Trapdoor Spider"] = {
      ["slots"] = 1,
      ["taming"] = 75,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["stealth"] = "X",
      ["underdogscalar"] = 1.257,
      ["cooldownability"] = {"Vanish","Web"},
      ["innateability"] = "Backstab",
    },
    ["Tundra Ostard"] = {
      ["slots"] = 1,
      ["taming"] = 85,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.2,
      ["passiveability"] = "Frenzy",
    },
    ["Vampire Bat"] = {
      ["slots"] = 1,
      ["taming"] = 90,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.171,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Bleed",
    },
    ["Void Slime"] = {
      ["slots"] = 1,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 24,
      ["maxdmg"] = 28,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["passiveability"] = "Regeneration",
      ["innateability"] = {"Elusive Form","Slime Barrage"},
    },
    ["Volt Wisp"] = {
      ["slots"] = 3,
      ["taming"] = 115,
      ["class"] = "Utility",
      ["combat"] = "Spell",
      ["hits"] = 275,
      ["mindmg"] = 34,
      ["maxdmg"] = 42,
      ["wrestling"] = 90,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["underdogscalar"] = 1.028,
      ["passiveability"] = "Shock",
      ["innateability"] = "Elusive Form",
    },
    ["Walrus"] = {
      ["slots"] = 2,
      ["taming"] = 35,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 10,
      ["maxdmg"] = 14,
      ["wrestling"] = 30,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.485,
    },
    ["Warpig"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 325,
      ["mindmg"] = 40,
      ["maxdmg"] = 50,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["passiveability"] = "Warpigment",
    },
    ["Water Dragon"] = {
      ["slots"] = 3,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 52,
      ["maxdmg"] = 66,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Massive Water Breath",
    },
    ["Water Drake"] = {
      ["slots"] = 2,
      ["taming"] = 100,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 38,
      ["maxdmg"] = 44,
      ["wrestling"] = 80,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["underdogscalar"] = 1.114,
      ["cooldownability"] = "Massive Water Breath",
    },
    ["White Wyrm"] = {
      ["slots"] = 3,
      ["taming"] = 120,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 450,
      ["mindmg"] = 42,
      ["maxdmg"] = 58,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1,
      ["cooldownability"] = "Massive Ice Breath",
      ["passiveability"] = "Chill Touch",
    },
    ["White Wyrmling"] = {
      ["slots"] = 2,
      ["taming"] = 110,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 85,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.057,
      ["cooldownability"] = "Massive Ice Breath",
      ["passiveability"] = "Chill Touch",
    },
    ["Winter Wolf"] = {
      ["slots"] = 1,
      ["taming"] = 65,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.314,
      ["passiveability"] = {"Chill Touch","Frenzy"},
    },
    ["Wisp"] = {
      ["slots"] = 3,
      ["taming"] = 100,
      ["class"] = "Attack",
      ["combat"] = "Spell",
      ["hits"] = 200,
      ["mindmg"] = 32,
      ["maxdmg"] = 38,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 125,
      ["underdogscalar"] = 1.114,
      ["passiveability"] = "Spellsurge",
      ["innateability"] = "Elusive Form",
    },
    ["Wolf"] = {
      ["slots"] = 1,
      ["taming"] = 45,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.428,
      ["passiveability"] = "Frenzy",
    },
    ["Wolfhound"] = {
      ["slots"] = 1,
      ["taming"] = 80,
      ["class"] = "Attack",
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["underdogscalar"] = 1.228,
      ["cooldownability"] = "Charge",
      ["passiveability"] = "Frenzy",
    },
    ["Wyvern"] = {
      ["slots"] = 3,
      ["taming"] = 105,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 48,
      ["maxdmg"] = 58,
      ["wrestling"] = 100,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 40,
      ["underdogscalar"] = 1.085,
    },
    ["Wyvern Hatchling"] = {
      ["slots"] = 2,
      ["taming"] = 95,
      ["class"] = "Utility",
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 30,
      ["maxdmg"] = 36,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Lethal",
      ["poisoning"] = 30,
      ["underdogscalar"] = 1.142,
    },
  }


   -- Follower Ability Information
   -- Parameters passed when the function is invoked
   local abilityArray = {
   local creatureName = frame.args[1]     -- Sun Wyrm
    ["Glowmark"] = {
  local creatureType = frame.args[2]     -- Strangelands/Ship
      ["type"] = "Cooldown",
  local imageOverride = frame.args[3]    -- sunwyrm.png
      ["description"] = "Fires a projectile at a target up to 12 tiles away that applies a cripple effect of (Control Slots * 5%) and increases their damage taken from provoked, uncontrolled creatures by 25% for the next 15 seconds."
  local namespace = frame.args[4]         -- {{NAMESPACE}}
    },
  local iconImage = ""
    ["Burrow"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 2.0) bleed damage over 15 seconds."
    },
    ["Reactive Armor"] = {
      ["type"] = "Cooldown",
      ["description"] = "Applies the reactive armor spell to the creature, with 100 total damage reduction."
    },
    ["Magic Reflect"] = {
      ["type"] = "Cooldown",
      ["description"] = "Applies the magic reflect spell to the creature."
    },
    ["Flamestrike"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 1.0) damage."
    },
    ["Bleed"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 1.0) bleed damage over 15 seconds."
    },
    ["Blood Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, inflicting (DamageMax * 1.0) bleed damage over 15 seconds."
    },
    ["Massive Dusk Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting up to 3 targets. Inflicts (DamageMax * 0.7) damage which ignores armor, with the first target hit taking +50% damage. Applies a weaken effect of (Control Slots * 3%) for 15 seconds."
    },
    ["Swarmstrike"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a 15% chance on melee attack to apply a cripple effect of (Control Slots * 2%) and pierce effect of (Control Slots * 10) for 15 seconds."
    },
    ["War Stomp"] = {
      ["type"] = "Cooldown",
      ["description"] = "Hits up to 3 targets within 3 tiles, inflicting (DamageMax * 1.25) with first target hit also taking +50% damage."
    },
    ["Mule"] = {
      ["type"] = "Innate",
      ["description"] = "Creature is a pack animal with a capacity of 50 Stones per Control Slot."
    },
    ["Enrage"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to increase melee damage by 20% for 30 seconds (cannot stack)."
    },
    ["Frigid Blast"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a location up to 6 tiles away, hitting up to 3 targets within 1 tile. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage. Applies a chill effect of (Control Slots * 2%) for 60 seconds (stacks up to 25%)."
    },
    ["Blood Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Consumes up to 10 blood within 6 tiles to increase magic resist by (60 + (Blood Consumed * 4)) for 30 seconds (cannot stack)."
    },
    ["Chill Touch"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 0.9) damage and apply a chill effect of (Control Slots * 2%) for the next 60 seconds (stacks up to 25%)."
    },
    ["Chilled Charge"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 1 tile. Inflicts (DamageMax * 0.7) damage, with the first target hit taking +50% damage. Applies a chill effect of (Control Slots * 2%) for the next 60 seconds (stacks up to 25%)."
    },
    ["Frenzy"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to increase attack speed by 10% for 30 seconds (cannot stack)."
    },
    ["Barb Swarm"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles at a location up to 12 tiles away hitting up to 4 targets within 2 tiles. Inflicts (DamageMax * 1.0) bleed damage over for 15 seconds, with the first target hit taking +50% damage."
    },
    ["Constrict"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a (5% + (Control Slots * 5%)) chance on melee hit to entangle creature for 4 seconds and inflict (DamageMax * 2.0) which ignores half of target's armor."
    },
    ["Dreamlull"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to apply a hex effect of (Control Slots * 25) for 15 seconds. Will also hinder creatures for (Control Slots * 1) seconds or hamstring players for 2 seconds."
    },
    ["Elusive Form"] = {
      ["type"] = "Innate",
      ["description"] = "Creature has an innate 25 parry skill against melee attacks."
    },
    ["Shadowstrikes"] = {
      ["type"] = "Innate",
      ["description"] = "Melee attacks ignore 33% of target's armor."
    },
    ["Weakening Web"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a (5 + (Control Slots * 5%)) chance on melee attack to hinder creatures for 3 seconds or hamstring players for 2 seconds.  Also applies a weaken effect of (Control Slots * 4%) for 15 seconds."
    },
    ["Mirror"] = {
      ["type"] = "Cooldown",
      ["description"] = "Spells cast onto the creature have a 15% chance to be reflected back onto the caster."
    },
    ["Vanish"] = {
      ["type"] = "Cooldown",
      ["description"] = "Creature immediately enters stealth."
    },
    ["Web"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a (5 + (Control Slots * 5%)) chance on melee attack to hinder creatures for 3 seconds or hamstring players for 2 seconds."
    },
    ["Backstab"] = {
      ["type"] = "Innate",
      ["description"] = "If stealthed, creature's next melee attack gains +25% accuracy and deals +150% damage."
    },
    ["Charge"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 1 tile. Inflicts (DamageMax * 0.8) damage, with the first target hit taking +50% damage."
    },
    ["Disease"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 0.5) disease damage every 5 seconds for 20 seconds."
    },
    ["Massive Ruby Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a long narrow cone, hitting up to 3 targets. Inflicts (DamageMax * 0.5) damage, with the first target hit taking +50% damage. Applies a pierce effect of (Control Slots * 10) for 30 seconds, with damage increased by 50% if target reduced to 0 armor."
    },
    ["Venom Barrage"] = {
      ["type"] = "Innate",
      ["description"] = "Creature makes its normal melee attacks as ranged attacks up to 12 tiles away. Has a (50% * (poisoning skill / 100)) chance on hit to apply greater poison ''Venom Barrage will have a range of 8 in PvP''"
    },
    ["Crush"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a 15% chance on melee attack apply a pierce effect of (10 * Control Slots) for 15 seconds. If successful, has a (10% * Control Slot) chance to Hinder creatures for 3 seconds or Hamstring players for 2 seconds."
    },
    ["Regeneration"] = {
      ["type"] = "Passive",
      ["description"] = "If below 66% hit points, will restore 5% of maximum health (has 15 second cooldown)."
    },
    ["Fire Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, dealing (DamageMax * 1.5) damage."
    },
    ["Diversion"] = {
      ["type"] = "Innate",
      ["description"] = "Creature has reduced Aggro."
    },
    ["Concussion Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, inflicting (DamageMax * 1.75) damage that ignores half of target's armor. Damage is increased by 50% if tamer has a barding effect active on the target."
    },
    ["Devour"] = {
      ["type"] = "Cooldown",
      ["description"] = "Can consume nearby corpses to heal 15% of maximum health."
    },
    ["Spellbreak"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict an additional (DamageMax * 0.5) damage that ignores armor and applies a hex effect of (Control Slots * 15) for 15 seconds."
    },
    ["Slime Barrage"] = {
      ["type"] = "Innate",
      ["description"] = "Creature makes its normal melee attacks as ranged attacks up to 12 tiles away."
    },
    ["Spellshield"] = {
      ["type"] = "Passive",
      ["description"] = "Spells cast onto the creature have a 15% chance to increase its magic resist skill by (Control Slots * 100) for 3 seconds."
    },
    ["Rooted"] = {
      ["type"] = "Innate",
      ["description"] = "Reflects 50% of Damage Taken within 1 tile."
    },
    ["Cleave"] = {
      ["type"] = "Innate",
      ["description"] = "Successful melee attacks inflict an additional (DamageMax * 0.4) to a random target within 1 tile."
    },
    ["Fury"] = {
      ["type"] = "Innate",
      ["description"] = "+5% Damage for every 30 seconds alive (max +25%)"
    },
    ["Spellflaying"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict (DamageMax * 1.0) bleed damage over 15 seconds."
    },
    ["Grasp"] = {
      ["type"] = "Passive",
      ["description"] = "Has a (5% + (Control Slots * 5%)) chance on melee hit to entangle creatures for 6 seconds or hamstring players for 2 seconds."
    },
    ["Gorge"] = {
      ["type"] = "Cooldown",
      ["description"] = "Inflicts (DamageMax * 2.0) damage against an entangled, hindered, or hamstrung target up to 1 tile away and restores 5% of maximum hit points."
    },
    ["Massive Blood Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting against up to 3 targets. Inflicts (DamageMax * 1.0) bleed damage over for 15 seconds, with the first target hit taking +50% damage."
    },
    ["Corruption Blast"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a location up to 6 tiles away, hitting up to 3 targets within 1 tile. Inflicts (DamageMax * 0.33) disease damage every 5 seconds for 20 seconds, with the first target hit taking +33% damage."
     },
    ["Giant Blood Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Deals 2 melee hits on a target up to 12 tiles away with each hit having a 7.5% chance to inflict Bleed ability on target."
    },
    ["Blood Barrage"] = {
      ["type"] = "Innate",
      ["description"] = "Create makes its normal melee attacks as ranged attacks up to 12 tiles away. Hits have a 15% chance to inflict Bleed ability on target."
    },
    ["Massive Fire Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting up to 3 targets. Inflicts (DamageMax * 0.9) damage, with the first target hit taking +50% damage."
    },
    ["Spellburn"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict an additional (DamageMax * 1.0) damage that ignores armor to the target."
    },
    ["Discharge"] = {
      ["type"] = "Innate",
      ["description"] = "Every 10th melee hit landed will cause creature to inflict (DamageMax * 5.0) damage on its current target (which ignores armor)."
    },
    ["Massive Ice Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting up to 3 targets. Inflicts (DamageMax * 0.8) damage which ignores armor, and the first target hit taking +50% damage. Applies a chill effect of (Control Slots * 2%) for 60 seconds (stacks up to 25%)."
    },
    ["Earth Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, inflicting (DamageMax * 1.75) damage."
    },
    ["Earth Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Creates a shield around the creature that increases melee damage by 15% and armor by 30 for 60 seconds (cannot stack)."
    },
    ["Massive Water Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting up to 3 targets. Inflicts (DamageMax * 0.8) damage, with the first target hit taking +50% damage. Applies a cripple effect of (Control Slots * 4%) for 15 seconds."
    },
    ["Primal Rage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a 15% chance on melee attack or being hit in melee to increase attack speed by 15% and melee damage by 30% for 8 seconds."
    },
    ["Dung Roller"] = {
      ["type"] = "Cooldown",
      ["description"] = "Sends a rolling ball that will travel up to 12 tiles, hitting up to 3 targets in its path. Inflicts (DamageMax * 0.5) damage as well as (DamageMax * 0.25) disease damage every 5 seconds for 20 seconds. First target hit will take +25% damage and +12.5% disease damage."
    },
    ["Warpigment"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to increase melee damage and accuracy by 10% for 60 seconds (can stack up to 30%)."
    },
    ["Shock"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to deal (DamageMax * 1.0) damage that ignores armor to the target. Hinders creatures for (Control Slots * 1) seconds or hamstrings players for 2 seconds."
    },
    ["Epic Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles at a target up to 12 tiles away, dealing 3 hits that each inflict (DamageMax * 0.5) damage that ignores armor."
    },
    ["Steam Cloud"] = {
      ["type"] = "Cooldown",
      ["description"] = "Immediate enters stealth, hitting up to 3 targets within 3 tiles. Inflicts (DamageMax * 0.65) damage which ignores armor, with the first target hit taking +50% damage."
    },
    ["Swordspin"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 1.25) bleed damage over 15 seconds on target. Will also inflict (DamageMax * 0.75) bleed damage over 15 seconds on two additional targets within 1 tile of defender."
    },
    ["Giant Fire Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Inflicts 2 melee hits on a target up to 12 tiles away."
    },
    ["Fire Barrage"] = {
      ["type"] = "Innate",
      ["description"] = "Creature makes its normal melee attacks as ranged attacks up to 12 tiles away."
    },
    ["Swamp Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires at a target up to 12 tiles away which inflicts (DamageMax * 1.25) damage. Has a (Control Slots * 20%) chance to entangle creatures for 5 seconds (will not affect players). Has a poisoning skill % chance to apply greater poison."
    },
    ["Spellblight"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict (DamageMax * 0.5) disease damage every 5 seconds for 20 seconds."
    },
    ["Blood Expertise"] = {
      ["type"] = "Cooldown",
      ["description"] = "Consumes up to 10 blood within 6 tiles to increase accuracy by (10% + (Blood Consumed * 0.75%)) for 30 seconds (cannot stack)."
    },
    ["Scorching Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, dealing (DamageMax * 1.5) damage that ignores half of target's armor and increases the damage creature deals to target by 10% for 60 seconds (stacks up to +30%)."
    },
    ["Flurry"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 6 tiles away, inflicting (DamageMax * 1.3) damage and applying a chill effect of (Control Slots * 2%) for 60 seconds (stacks up to 25%)."
    },
    ["Spellsurge"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to increase Damage of the next spellcast within 10 seconds by 125%."
    },
    ["Weaken"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on attack to apply a weaken effect of (Control Slots * 4%) for 15 seconds."
    },
    ["Massive Bone Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a cone, hitting up to 3 targets. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage. Applies a pierce effect of (Control Slots * 10) for 15 seconds."
    },
    ["Air Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, dealing (DamageMax * 1.5) damage and applying a weaken effect of (Control Slots * 4%) for 15 seconds."
    },
    ["Air Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Creates a shield around the creature that increases accuracy and melee defense by 15% for 60 seconds (cannot stack)."
    },
    ["Soak"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% on a melee attack to apply a cripple effect of (Control Slots * 3%) for 15 seconds."
    },
    ["Darkstrike"] = {
      ["type"] = "Cooldown",
      ["description"] = "Detonates a location 1 tile away, hitting up to 3 targets within 3 tiles. Inflicts (DamageMax * 0.25) damage that ignores half of target's armor and also inflicts (DamageMax * 0.33) disease damage every 5 seconds over 20 seconds. The first target hit also takes +33% normal and disease damage."
    },
    ["Flesheater"] = {
      ["type"] = "Cooldown",
      ["description"] = "Hits up to 3 targets within 3 tiles, inflicting (DamageMax * 0.75) bleed damage over 15 seconds, with the first target hit taking +50% bleed damage. Will restore (Targets Hit * 2%) of maximum health."
    },
    ["Sandblast"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 2 tiles. Inflicts (DamageMax * 0.25) damage and applies a pierce effect of (Control Slots * 15) for 15 seconds."
    },
    ["Poison Dig"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 2 tiles. Inflicts (DamageMax * 0.75) damage and applies greater poison, with damage increased by 50% if target already has greater poison or above."
    },
    ["Fiery Dig"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 2 tiles. Inflicts (DamageMax * 0.9) damage against, with the first target hit taking +50% damage."
    },
    ["Spellvenom"] = {
      ["type"] = "Cooldown",
      ["description"] = "Has a 10% chance on spellcast to apply Greater Poison. Inflicts (DamageMax * 0.5) damage if target already has greater poison or above."
    },
    ["Spellchill"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict an additional (DamageMax * 0.75) damage that ignores armor and applies a chill effect of (Control Slots * 2%) for 60 seconds (stacks up to 25%)."
    },
    ["Dig"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 2 tiles. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage."
    },
    ["Spine Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a 8 tile radius, hitting up to 6 targets. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage."
    },
    ["Spelleater Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Reflects a magic spell and heals 5% of maximum health."
    },
    ["Gore"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on melee attack to inflict (DamageMax * 1.0) bleed damage over 15 seconds and apply a pierce effect of (15 * Control Slots) for 5 seconds."
    },
    ["Manticore Venom"] = {
      ["type"] = "Cooldown",
      ["description"] = "Places a delayed effect on a target 1 tile away, that will deal (DamageMax * 2.0) damage after 10 seconds pass, which will ignore target's armor."
    },
    ["Bad Luck"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance when taking damage to inflict that damage (ignoring armor) also onto the attacker, with damage amount capped at (DamageMax * 1.0)."
    },
    ["Brass Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Applies the reactive armor spell to the creature, with 150 total damage reduction."
    },
    ["Brass Tacks"] = {
      ["type"] = "Cooldown",
      ["description"] = "If creature has a Brass Shield effect active, will consume the effect and fires 5 projectiles at a target up to 12 tiles away, each inflicting (DamageMax * 0.33) damage. Applies a cripple effect of (Control Slots * 4%) for the next 15 seconds."
    },
    ["Poisoneater Shield"] = {
      ["type"] = "Cooldown",
      ["description"] = "Cures poison and heals 5% of maximum health."
    },
    ["Bog Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires 3 waves of projectiles in a 8 tile radius, with each wave hitting up to 6 targets. Each hit inflicts (DamageMax * 0.33) damage and has a 10% chance to inflict (DamageMax * 0.25) disease damage every 5 seconds for 20 seconds."
    },
    ["Grit"] = {
      ["type"] = "Passive",
      ["description"] = "If below 33% hit points, will restore 15% of maximum health (has 15 second cooldown)."
    },
    ["Blood Frenzy"] = {
      ["type"] = "Cooldown",
      ["description"] = "Consumes up to 10 blood within 6 tiles to increase melee attack speed by (7.5% + (Blood Consumed * 0.5%)) for 30 seconds (cannot stack)."
    },
    ["Tranquility"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles at a target up to 12 tiles away, dealing 3 hits that each inflict (DamageMax * 0.4) damage that ignores armor. Also applies a hex effect of (Control Slots * 25) and a weaken effect of (Control Slots * 4%) for 15 seconds."
    },
    ["Eversion"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on successful melee attack to lose 3% of its own health, but will inflict (DamageMax * 0.75) disease damage every 5 seconds for 20 seconds."
    },
    ["Eldritch Breath"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires a projectile at a target up to 12 tiles away, inflicting (DamageMax * 1.5) damage and applying a hex effect of (Control Slots * 15) for 15 seconds."
    },
    ["Earth Seeds"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict (DamageMax * 1.0) bleed damage over 15 seconds."
    },
    ["Spellcrush"] = {
      ["type"] = "Passive",
      ["description"] = "Has a 15% chance on spellcast to inflict an additional (DamageMax * 0.50) damage that ignores armor and applies a pierce effect of (Control Slots * 10) for 15 seconds."
    },
    ["Dust Up"] = {
      ["type"] = "Innate",
      ["description"] = "Creature gains 15% damage resistance for 5 seconds after landing a melee backstab."
    },
    ["Drowned Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Fires projectiles in a 6 tile radius, hitting up to to 5 targets. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage. Applies a cripple effect of (Control Slots * 2%) and pierce effect of (Control Slots * 5) for 15 seconds."
    },
    ["Giant Corpse Barrage"] = {
      ["type"] = "Cooldown",
      ["description"] = "Deals 2 melee hits on a target up to 12 tiles away with each hit having a 7.5% chance to inflict (DamageMax * 0.5) disease damage every 5 seconds for 20 seconds."
    },
    ["Corpse Barrage"] = {
      ["type"] = "Innate",
      ["description"] = "Creature makes its normal melee attacks as ranged attacks up to 12 tiles away. Hits have a 15% chance to inflict (DamageMax * 0.5) disease damage every 5 seconds for 20 seconds."
    },
    ["Hunting Web"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 2 tiles. Inflicts (DamageMax * 0.75) damage, with the first target hit taking +50% damage. Will also hinder creatures for 3 seconds or hamstring players for 2 seconds."
    },
    ["Fiery Charge"] = {
      ["type"] = "Cooldown",
      ["description"] = "Teleports to a location up to 12 tiles away, hitting up to 3 targets within 3 tiles. Inflicts (DamageMax * 0.9) damage, with the first target hit taking +50% damage."
    },
  }


  -- Summoned Creature Information
   local wikiTable = ""
   local summonArray = {
    ["Daemon"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 600,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 95,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["innateability"] = "Fury",
      ["spellname"] = "Summon Daemon",
      ["spellicon"] = "iconsummondaemon",
    },
    ["Air Elemental"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 30,
      ["maxdmg"] = 40,
      ["wrestling"] = 110,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Bleed",
      ["innateability"] = "Cleave",
      ["spellname"] = "Summon Air Elemental",
      ["spellicon"] = "iconsummonair",
    },
    ["Earth Elemental"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 600,
      ["mindmg"] = 40,
      ["maxdmg"] = 50,
      ["wrestling"] = 95,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["innateability"] = "Rooted",
      ["spellname"] = "Summon Earth Elemental",
      ["spellicon"] = "iconsummonearth",
    },
    ["Water Elemental"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 600,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 100,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["poisonresist"] = 0.66,
      ["specialresist"] = 0.33,
      ["cooldownability"] = "Mirror",
      ["innateability"] = "Elusive Form",
      ["spellname"] = "Summon Water Elemental",
      ["spellicon"] = "iconsummonwater",
    },
    ["Fire Elemental"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 400,
      ["mindmg"] = 28,
      ["maxdmg"] = 34,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["cooldownability"] = "Epic Barrage",
      ["spellname"] = "Summon Fire Elemental",
      ["spellicon"] = "iconsummonfire",
    },
    ["Energy Vortex"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 600,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 105,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["innateability"] = "Discharge",
      ["spellname"] = "Energy Vortex",
      ["spellicon"] = "iconenergyvortex",
    },
    ["Blade Spirit"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["innateability"] = "Diversion",
      ["spellname"] = "Blade Spirits",
      ["spellicon"] = "iconbladespirits",
    },
    ["Vampire Thrall"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 600,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 95,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["innateability"] = "Fury",
      ["spellname"] = "Summon Daemon",
      ["spellicon"] = "iconsummondaemon",
      ["necro"] = true,
    },
    ["Skeletal Fiend"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 500,
      ["mindmg"] = 30,
      ["maxdmg"] = 40,
      ["wrestling"] = 110,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Bleed",
      ["innateability"] = "Cleave",
      ["spellname"] = "Summon Air Elemental",
      ["spellicon"] = "iconsummonair",
      ["necro"] = true,
    },
    ["Ancient Mummy"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 600,
      ["mindmg"] = 40,
      ["maxdmg"] = 50,
      ["wrestling"] = 95,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["innateability"] = "Rooted",
      ["spellname"] = "Summon Earth Elemental",
      ["spellicon"] = "iconsummonearth",
      ["necro"] = true,
    },
    ["Rag Witch"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 600,
      ["mindmg"] = 24,
      ["maxdmg"] = 30,
      ["wrestling"] = 100,
      ["armor"] = 25,
      ["magicresist"] = 150,
      ["poisonresist"] = 0.66,
      ["specialresist"] = 0.33,
      ["cooldownability"] = "Mirror",
      ["innateability"] = "Elusive Form",
      ["spellname"] = "Summon Water Elemental",
      ["spellicon"] = "iconsummonwater",
      ["necro"] = true,
    },
    ["Lich"] = {
      ["slots"] = 2,
      ["combat"] = "Spell",
      ["hits"] = 400,
      ["mindmg"] = 28,
      ["maxdmg"] = 34,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["cooldownability"] = "Epic Barrage",
      ["spellname"] = "Summon Fire Elemental",
      ["spellicon"] = "iconsummonfire",
      ["necro"] = true,
    },
    ["Jackel Spirit"] = {
      ["slots"] = 2,
      ["combat"] = "Melee",
      ["hits"] = 600,
      ["mindmg"] = 36,
      ["maxdmg"] = 42,
      ["wrestling"] = 105,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["innateability"] = "Discharge",
      ["spellname"] = "Energy Vortex",
      ["spellicon"] = "iconenergyvortex",
    },
    ["Skeletal Husk"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 300,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 90,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["innateability"] = "Diversion",
      ["spellname"] = "Blade Spirits",
      ["spellicon"] = "iconbladespirits",
      ["necro"] = true,
    },
    ["Polar Bear"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Sand Crab"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 75,
      ["magicresist"] = 50,
      ["cooldownability"] = "Crush",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Grizzly Bear"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Primordial Whelp"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Frenzy",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Shallow Water"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["passiveability"] = {"Soak","Regeneration"},
      ["innateability"] = "Elusive Form",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Firebat"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["passiveability"] = {"Flamestrike","Bleed"},
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Monitor Hatchling"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 55,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["cooldownability"] = "Crush",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Corpse Eater"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["passiveability"] = "Disease",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Black Bear"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Brown Bear"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Aegis Rat"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 100,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["underdogscalar"] = 1.371,
      ["cooldownability"] = "Mirror",
      ["passiveability"] = "Disease",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Flamehound"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = {"Flamestrike","Frenzy"},
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
    },
    ["Imp"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 125,
      ["mindmg"] = 9,
      ["maxdmg"] = 12,
      ["wrestling"] = 45,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 1,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Searing Lizard"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["cooldownability"] = "Crush",
      ["passiveability"] = "Flamestrike",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 1,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Jaguar"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["stealth"] = "X",
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Frenzy",
      ["innateability"] = "Backstab",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 1,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Cave Bear"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 55,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 1,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Drake Whelp"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["cooldownability"] = "Fire Breath",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 2,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Trapdoor Spider"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["poisontype"] = "Greater",
      ["poisoning"] = 20,
      ["stealth"] = "X",
      ["cooldownability"] = {"Vanish","Web"},
      ["innateability"] = "Backstab",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 2,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Minion"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 13,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 2,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Cave Bat"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 125,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 80,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Bleed",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 2,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Blood Ape"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 65,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["cooldownability"] = "Blood Frenzy",
      ["passiveability"] = "Bleed",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 3,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Dragon Whelp"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 18,
      ["maxdmg"] = 22,
      ["wrestling"] = 60,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["cooldownability"] = "Fire Breath",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 3,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Wolfhound"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["cooldownability"] = "Charge",
      ["passiveability"] = "Frenzy",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 3,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Searing Imp"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 12,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 100,
      ["passiveability"] = "Spellburn",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 3,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Molten Mongbat"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 75,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Flamestrike",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 4,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Skulker"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 16,
      ["maxdmg"] = 20,
      ["wrestling"] = 70,
      ["armor"] = 50,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["stealth"] = "X",
      ["cooldownability"] = "Vanish",
      ["passiveability"] = "Disease",
      ["innateability"] = "Backstab",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 4,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Vampire Bat"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 150,
      ["mindmg"] = 20,
      ["maxdmg"] = 24,
      ["wrestling"] = 85,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["specialresist"] = 0.33,
      ["cooldownability"] = "Devour",
      ["passiveability"] = "Bleed",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 4,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Fire Minion"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 9,
      ["maxdmg"] = 13,
      ["wrestling"] = 60,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["passiveability"] = "Spellburn",
      ["spellname"] = "Summon Creature",
      ["tometier"] = 4,
      ["spellicon"] = "iconsummoncreature",
    },
    ["Zombie"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Disease",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
    ["Ghoul"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 100,
      ["mindmg"] = 5,
      ["maxdmg"] = 7,
      ["wrestling"] = 40,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
    ["Skeleton"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 45,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["passiveability"] = "Enrage",
      ["spellname"] = "Summon Creature",
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
    ["Skeletal Knight"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 200,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 1,
      ["spellicon"] = "iconsummoncreature",
      ["passiveability"] = "Enrage",
      ["necro"] = true,
    },
    ["Skeletal Mage"] = {
      ["slots"] = 1,
      ["combat"] = "Spell",
      ["hits"] = 150,
      ["mindmg"] = 7,
      ["maxdmg"] = 9,
      ["wrestling"] = 50,
      ["armor"] = 25,
      ["magicresist"] = 75,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 2,
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
    ["Skeletal Marksman"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 175,
      ["mindmg"] = 12,
      ["maxdmg"] = 16,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 3,
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
    ["Rotting Flesh"] = {
      ["slots"] = 1,
      ["combat"] = "Melee",
      ["hits"] = 225,
      ["mindmg"] = 14,
      ["maxdmg"] = 18,
      ["wrestling"] = 70,
      ["armor"] = 25,
      ["magicresist"] = 50,
      ["poisonresist"] = 0.33,
      ["specialresist"] = 0.33,
      ["spellname"] = "Summon Creature",
      ["tometier"] = 4,
      ["spellicon"] = "iconsummoncreature",
      ["necro"] = true,
    },
  }


  -- Ship Creature Information
   local array = creatureArray
   local shipsArray = {
    ["Blood Daemon"] = {
        ["location"] = "Ships",
        ["difficulty"] = 157.7,
        ["goldvalue"] = 1577,
        ["hits"] = 8000,
        ["minmeleedmg"] = 50,
        ["maxmeleedmg"] = 60,
        ["wrestling"] = 110,
        ["armor"] = 25,
        ["magicresist"] = 100,
        ["magery"] = 100,
        ["minspelldmg"] = 20,
        ["maxspelldmg"] = 30,
        ["slayer"] = "Daemonic",
        ["ai"] = "MeleeMage",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.2,
    },
    ["Blood Feaster"] = {
        ["location"] = "Ships",
        ["difficulty"] = 92.7,
        ["goldvalue"] = 927,
        ["hits"] = 4500,
        ["minmeleedmg"] = 40,
        ["maxmeleedmg"] = 50,
        ["wrestling"] = 90,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Daemonic",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.4,
    },
    ["Bloody Hornbeast"] = {
        ["location"] = "Ships",
        ["difficulty"] = 60.1,
        ["goldvalue"] = 602,
        ["hits"] = 3500,
        ["minmeleedmg"] = 30,
        ["maxmeleedmg"] = 40,
        ["wrestling"] = 90,
        ["armor"] = 50,
        ["magicresist"] = 100,
        ["slayer"] = "Daemonic",
        ["ai"] = "Melee",
        ["speed"] = "VeryFast",
        ["uniquescalar"] = 1.2,
    },
    ["Drowned Dragon"] = {
        ["location"] = "Ships",
        ["difficulty"] = 66.2,
        ["goldvalue"] = 662,
        ["hits"] = 4000,
        ["minmeleedmg"] = 30,
        ["maxmeleedmg"] = 40,
        ["wrestling"] = 80,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["poisonresist"] = 0.6,
        ["slayer"] = "Undead",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.3,
    },
    ["Fungaloid"] = {
        ["location"] = "Ships",
        ["difficulty"] = 42.3,
        ["goldvalue"] = 423,
        ["hits"] = 3000,
        ["minmeleedmg"] = 20,
        ["maxmeleedmg"] = 30,
        ["wrestling"] = 80,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["poisonresist"] = 0.4,
        ["slayer"] = "Nature",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.25,
    },
    ["Hierarch"] = {
        ["location"] = "Ships",
        ["difficulty"] = 64.1,
        ["goldvalue"] = 641,
        ["hits"] = 2500,
        ["minmeleedmg"] = 20,
        ["maxmeleedmg"] = 30,
        ["wrestling"] = 90,
        ["armor"] = 25,
        ["magicresist"] = 150,
        ["magery"] = 100,
        ["minspelldmg"] = 20,
        ["maxspelldmg"] = 30,
        ["slayer"] = "Humanoid",
        ["ai"] = "Mage",
        ["speed"] = "Slow",
        ["uniquescalar"] = 1.3,
    },
    ["Jackal Spirit"] = {
        ["location"] = "Ships",
        ["difficulty"] = 59.3,
        ["goldvalue"] = 594,
        ["hits"] = 3500,
        ["minmeleedmg"] = 30,
        ["maxmeleedmg"] = 40,
        ["wrestling"] = 90,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["parry"] = 50,
        ["poisonresist"] = 0.6,
        ["slayer"] = "Undead",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.25,
    },
    ["Lichenid"] = {
        ["location"] = "Ships",
        ["difficulty"] = 81.7,
        ["goldvalue"] = 817,
        ["hits"] = 4000,
        ["minmeleedmg"] = 40,
        ["maxmeleedmg"] = 50,
        ["wrestling"] = 90,
        ["armor"] = 75,
        ["magicresist"] = 25,
        ["poisonresist"] = 0.4,
        ["slayer"] = "Nature",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.35,
    },
    ["Lizardman Elite Hunter"] = {
        ["location"] = "Ships",
        ["difficulty"] = 64.7,
        ["goldvalue"] = 647,
        ["hits"] = 4000,
        ["minmeleedmg"] = 35,
        ["maxmeleedmg"] = 45,
        ["wrestling"] = 90,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Monstrous",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.14,
    },
    ["Lizardman Elite Warrior"] = {
        ["location"] = "Ships",
        ["difficulty"] = 86.1,
        ["goldvalue"] = 861,
        ["hits"] = 4500,
        ["minmeleedmg"] = 40,
        ["maxmeleedmg"] = 50,
        ["wrestling"] = 90,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Monstrous",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.3,
    },
    ["Lizardman Warchief"] = {
        ["location"] = "Ships",
        ["difficulty"] = 160.7,
        ["goldvalue"] = 1607,
        ["hits"] = 8000,
        ["minmeleedmg"] = 50,
        ["maxmeleedmg"] = 60,
        ["wrestling"] = 100,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Monstrous",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.3,
    },
    ["Murkvine"] = {
        ["location"] = "Ships",
        ["difficulty"] = 47.1,
        ["hits"] = 5000,
        ["minmeleedmg"] = 20,
        ["maxmeleedmg"] = 30,
        ["wrestling"] = 150,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["slayer"] = "Monstrous",
        ["ai"] = "Melee",
        ["speed"] = "Slow",
        ["uniquescalar"] = 1,
    },
    ["Ossuarian Sightless Seer"] = {
        ["location"] = "Ships",
        ["difficulty"] = 138.8,
        ["goldvalue"] = 1388,
        ["hits"] = 5000,
        ["minmeleedmg"] = 20,
        ["maxmeleedmg"] = 30,
        ["wrestling"] = 90,
        ["armor"] = 25,
        ["magicresist"] = 100,
        ["magery"] = 125,
        ["minspelldmg"] = 25,
        ["maxspelldmg"] = 35,
        ["slayer"] = "Humanoid",
        ["ai"] = "Mage",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.35,
    },
    ["Sunken Sorcerer"] = {
        ["location"] = "Ships",
        ["difficulty"] = 123.6,
        ["goldvalue"] = 1236,
        ["hits"] = 5000,
        ["minmeleedmg"] = 20,
        ["maxmeleedmg"] = 30,
        ["wrestling"] = 100,
        ["armor"] = 25,
        ["magicresist"] = 100,
        ["magery"] = 125,
        ["minspelldmg"] = 25,
        ["maxspelldmg"] = 35,
        ["slayer"] = "Monstrous",
        ["ai"] = "Mage",
        ["speed"] = "Slow",
        ["uniquescalar"] = 1.2,
    }, 
  }
   
  -- Strangelands Creature Information
  local strangelandsArray = {
    ["Ankheg"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 23.9,
        ["goldvalue"] = 239,
        ["hits"] = 1500,
        ["minmeleedmg"] = 25,
        ["maxmeleedmg"] = 35,
        ["wrestling"] = 80,
        ["armor"] = 75,
        ["magicresist"] = 25,
        ["poisoning"] = 50,
        ["poisonresist"] = 0.4,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "Slow",
        ["uniquescalar"] = 1.25,
    },
    ["Bullvore"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 34,
        ["goldvalue"] = 341,
        ["hits"] = 2000,
        ["minmeleedmg"] = 35,
        ["maxmeleedmg"] = 45,
        ["wrestling"] = 90,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "Fast",
        ["uniquescalar"] = 1.1,
    },
    ["Devilbat"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 11.2,
        ["goldvalue"] = 110,
        ["hits"] = 800,
        ["minmeleedmg"] = 10,
        ["maxmeleedmg"] = 20,
        ["wrestling"] = 90,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "VeryFast",
        ["uniquescalar"] = 1.25,
    },
    ["Giant Slug"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 6.7,
        ["goldvalue"] = 67,
        ["hits"] = 600,
        ["minmeleedmg"] = 10,
        ["maxmeleedmg"] = 20,
        ["wrestling"] = 50,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["poisonresist"] = 0.4,
        ["slayer"] = "Nature",
        ["ai"] = "Melee",
        ["speed"] = "Slow",
        ["uniquescalar"] = 1.14,
    },
    ["Giant Spider"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 16.5,
        ["goldvalue"] = 166,
        ["hits"] = 1200,
        ["minmeleedmg"] = 15,
        ["maxmeleedmg"] = 25,
        ["wrestling"] = 80,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["poisontype"] = "Deadly",
        ["poisoning"] = 50,
        ["poisonresist"] = 0.6,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1.1,
    },
    ["Great Hart"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 6,
        ["goldvalue"] = 61,
        ["hits"] = 600,
        ["minmeleedmg"] = 10,
        ["maxmeleedmg"] = 20,
        ["wrestling"] = 60,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "Fast",
        ["uniquescalar"] = 1,
    },
    ["Guar"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 7.7,
        ["goldvalue"] = 78,
        ["hits"] = 800,
        ["minmeleedmg"] = 10,
        ["maxmeleedmg"] = 20,
        ["wrestling"] = 50,
        ["armor"] = 50,
        ["magicresist"] = 25,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "Medium",
        ["uniquescalar"] = 1,
    },
    ["Primordial"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 12.8,
        ["goldvalue"] = 128,
        ["hits"] = 1000,
        ["minmeleedmg"] = 15,
        ["maxmeleedmg"] = 25,
        ["wrestling"] = 80,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "VeryFast",
        ["uniquescalar"] = 1.1,
    },
    ["Stalker"] = {
        ["location"] = "Strangelands",
        ["difficulty"] = 26.8,
        ["goldvalue"] = 269,
        ["hits"] = 1500,
        ["minmeleedmg"] = 30,
        ["maxmeleedmg"] = 40,
        ["wrestling"] = 90,
        ["armor"] = 25,
        ["magicresist"] = 25,
        ["stealth"] = "X",
        ["slayer"] = "Beastial",
        ["ai"] = "Melee",
        ["speed"] = "VeryFast",
        ["uniquescalar"] = 1.2,
    }, 
  }


   ------------------------------------------ DO NOT EDIT PAST THIS POINT ------------------------------------------
   if string.lower(creatureType) == "strangelands" then
 
    array = mw.loadData("StrangelandsCreatureData")
   ------------------------------------------ DO NOT EDIT PAST THIS POINT ------------------------------------------
    creatureType = " " .. creatureType .. ""
    iconImage = "[[File:icon-strangelands.png|right|50px|link=Strangelands#Strangelands_Creatures|Strangeland Creature]]"
  elseif string.lower(creatureType) == "ships" then
    array = mw.loadData("ShipCreatureData")
    creatureType = " " .. creatureType .. ""
    iconImage = "[[File:shipdeed.png|right|30px|link=Ships|Ship Creature]]"
  else
    creatureType = ""
   end


   ------------------------------------------ DO NOT EDIT PAST THIS POINT ------------------------------------------
   local creature = array[creatureName]


   local p = {}
   if creature then
  -- Helper function to add comma's between numbers
    local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
  function FormatInt(int)
     local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"
     int = string.reverse(int)  


     if string.len(int) > 3 and string.len(int) < 6 then
     if imageOverride and imageOverride ~= "" then
      int = string.gsub(int,"(%d%d%d)", "%1,")
       imageName = imageOverride
    elseif string.len(int) == 6 then
      int = string.gsub(int,"(%d%d%d)(%d%d%d)", "%1,%2")
    elseif string.len(int) > 6 and string.len(int) < 9 then
       int = string.gsub(int,"(%d%d%d)(%d%d%d)", "%1,%2,")
     end
     end


     int = string.reverse(int)
     -- Automaticly add categories
 
     if namespace == "" or namespace == nil then
    return int
      wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
  end
       wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"
 
  -- Fill out or format values
  for each, array in pairs({creatureArray,tameableArray,summonArray,strangelandsArray,shipsArray}) do
     for index, creature in pairs(array) do
      local defaultStatArray = {
        ["location"] = "?",
        ["difficulty"] = "?",
        ["goldvalue"] = "?",
        ["hits"] = "?",
        ["mindmg"] = "?", -- Followers Only
        ["maxdmg"] = "?", -- Followers Only
        ["minmeleedmg"] = "",
        ["maxmeleedmg"] = "",
        ["wrestling"] = "",
        ["armor"] = "",
        ["magicresist"] = "",
        ["parry"] = "",
        ["atkspd"] = "?",
        ["magery"] = "",
        ["minspelldmg"] = "",
        ["maxspelldmg"] = "",
        ["poisontype"] = "",
        ["poisoning"] = "",
        ["poisonresist"] = "",
        ["stealth"] = "",
        ["slayer"] = "?",
        ["ai"] = "?",
        ["speed"] = "?",
        ["uniquescalar"] = "?",
        ["bosstype"] = "",
        ["armormin"] = "",
        ["magicresistmin"] = "",
        ["poisonresistmin"] = "",
        ["taming"] = "?",  -- Tameabes Only
        ["slots"] = "?",  -- Followers Only
        ["class"] = "?",  -- Tameables Only
        ["combat"] = "?",
        ["underdogscalar"] = "?", -- Tameables Only
        ["cooldownability"] = "", -- Followers Only
        ["innateability"] = "", -- Followers Only
        ["passiveability"] = "", -- Followers Only
        ["specialresist"] = "", -- Followers Only
        ["spellname"] = "", -- Summons Only
        ["spellicon"] = "", -- Summons Only
        ["necro"] = false, -- Summons Only
        ["tometier"] = "", -- Summons Only
      }
 
      if type(creature.location) == "table" then
        local locations = ""
        for i, spawnLocation in pairs(creature.location) do
          if locations ~= "" then
            locations = locations.."<br>"
          end
 
          locations = locations.."[["..spawnLocation.."]]"
        end
        creature.location = locations
       elseif type(creature.location) == "string" and creature.location ~= "?" then
        creature.location = "[["..creature.location.."]]"
      end
 
      if type(creature.goldvalue) == "number" then
        creature.goldvalue = FormatInt(creature.goldvalue)
      end
 
      if type(creature.hits) == "number" then
        creature.unformattedhits = creature.hits
        creature.hits = FormatInt(creature.hits)
      end
 
      if creature.armormin then
        creature.armormin = "<br>("..creature.armormin.." min)"
      end
 
      if creature.magicresistmin then
        creature.magicresistmin = "<br>("..creature.magicresistmin.." min)"
      end
 
      if creature.poisonresistmin then
        creature.poisonresistmin = "<br>("..creature.poisonresistmin.." min)"
      end
 
      if creature.poisonresist then
        creature.poisonresist = (creature.poisonresist*100).."%"
      end
 
      if creature.specialresist then
        creature.specialresist = (creature.specialresist*100).."%"
      end


       if creature.minmeleedmg and creature.minmeleedmg ~= creature.maxmeleedmg then
       if creature.bosstype ~= "" then
         creature.minmeleedmg = creature.minmeleedmg.." - "
         wikiTable = wikiTable .. "[[Category:" .. creature.bosstype .. "es]] [[Category:Bosses]]"
      elseif creature.minmeleedmg == creature.maxmeleedmg then
        creature.maxmeleedmg = ""
       end
       end
      if creature.minspelldmg and creature.minspelldmg ~= creature.maxspelldmg then
        creature.minspelldmg = creature.minspelldmg.." - "
      elseif creature.minspelldmg == creature.maxspelldmg then
        creature.maxspelldmg = ""
      end
      if creature.tometier then
        creature.tometier = " (Tier "..creature.tometier..")"
      end
      for stat, defaultValue in pairs(defaultStatArray) do
        if creature[stat] == nil then
          creature[stat] = defaultValue
        end
      end
     end
     end
  end
  function p.singleCreature(frame)
      -- Parameters passed when the function is invoked
      local creatureName = frame.args[1] -- Sun Wyrm
      local creatureType = frame.args[2] -- Strangelands/Ship
      local imageOverride = frame.args[3] -- sunwyrm.png
      local namespace = frame.args[4] -- {{NAMESPACE}} 
      local iconImage = ""
     
      local wikiTable = ""
     
      local array = creatureArray
      if string.lower(creatureType) == "strangelands" then
        array = strangelandsArray
        creatureType = " "..creatureType..""
        iconImage = "[[File:icon-strangelands.png|right|50px|link=Strangelands#Strangelands_Creatures|Strangeland Creature]]"
      elseif string.lower(creatureType) == "ships" then
        array = shipsArray
        creatureType = " "..creatureType..""
        iconImage = "[[File:shipdeed.png|right|30px|link=Ships|Ship Creature]]"
      else
        creatureType = ""
      end
      local creature = array[creatureName]
     
      if creature then
        local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
        local imageName = string.gsub(formmatedName,"%p+", "")..".jpg"


        if imageOverride and imageOverride ~= "" then
    wikiTable = [=[__NOTOC__
          imageName = imageOverride
        end
 
        -- Automaticly add categories
        if namespace == "" or namespace == nil then
          wikiTable = wikiTable.."[[Category:"..creature.location.."]]"
          wikiTable = wikiTable.."[[Category:"..creature.slayer.." Creatures]]"
 
          if creature.bosstype ~= "" then
            wikiTable = wikiTable.."[[Category:"..creature.bosstype.."es]] [[Category:Bosses]]"
          end
 
        end
 
        wikiTable = [=[__NOTOC__
         <table class="wikitable" style="text-align:center">
         <table class="wikitable" style="text-align:center">
         <th style="border-right:none; border-bottom:none; width:110px">
         <th style="border-right:none; border-bottom:none; width:110px">
         <th colspan="7" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=]..imageName..[=[|link=]]
         <th colspan="7" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
         <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>]=]..iconImage..[=[
    imageName .. [=[|link=]]
         <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>]=] ..
    iconImage .. [=[
         <tr>
         <tr>
         <th style="border-top:none" colspan="9">[[]=]..creatureName..[=[]]
         <th style="border-top:none" colspan="9">[[]=] .. creatureName .. [=[]]
         <tr>
         <tr>
         <th>Slayer
         <th>Slayer
Line 22,886: Line 66:
         <th>Magic Resist
         <th>Magic Resist
         <tr>
         <tr>
         <td>]=]..creature.slayer..[=[
         <td>]=] .. creature.slayer .. [=[
         <td>]=]..creature.difficulty..[=[
         <td>]=] .. creature.difficulty .. [=[
         <td>]=]..creature.goldvalue..[=[
         <td>]=] .. creature.goldvalue .. [=[
         <td>]=]..creature.hits..[=[
         <td>]=] .. creature.hits .. [=[
         <td colspan="2">]=]..creature.minmeleedmg..creature.maxmeleedmg..[=[
         <td colspan="2">]=] .. creature.minmeleedmg .. creature.maxmeleedmg .. [=[
         <td>]=]..creature.wrestling..[=[
         <td>]=] .. creature.wrestling .. [=[
         <td>]=]..creature.armor..creature.armormin..[=[
         <td>]=] .. creature.armor .. creature.armormin .. [=[
         <td>]=]..creature.magicresist..creature.magicresistmin..[=[
         <td>]=] .. creature.magicresist .. creature.magicresistmin .. [=[
         <tr>
         <tr>
         <th>Parry
         <th>Parry
Line 22,904: Line 84:
         <th>AI
         <th>AI
         <tr>
         <tr>
         <td>]=]..creature.parry..[=[
         <td>]=] .. creature.parry .. [=[
         <td>]=]..creature.atkspd..[=[
         <td>]=] .. creature.atkspd .. [=[
         <td>]=]..creature.magery..[=[
         <td>]=] .. creature.magery .. [=[
         <td colspan="2">]=]..creature.minspelldmg..creature.maxspelldmg..[=[
         <td colspan="2">]=] .. creature.minspelldmg .. creature.maxspelldmg .. [=[
         <td>]=]..creature.poisontype..[=[
         <td>]=] .. creature.poisontype .. [=[
         <td>]=]..creature.poisonresist..creature.poisonresistmin..[=[
         <td>]=] .. creature.poisonresist .. creature.poisonresistmin .. [=[
         <td>]=]..creature.stealth..[=[
         <td>]=] .. creature.stealth .. [=[
         <td>]=]..creature.ai.."</table>"
         <td>]=] .. creature.ai .. "</table>"


        return wikiTable
    return wikiTable
      else
  else
        return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No'..creatureType..'creature by the name "'..creatureName..'" was found (Case-sensitive)</big></h1>'
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No' ..
      end
    creatureType .. 'creature by the name "' .. creatureName .. '" was found (Case-sensitive)</big></h1>'
   end
   end
end


  function p.singleFollower(frame)
function p.singleFollower(frame)
    -- Parameters passed when the function is invoked
  local creatureArray = mw.loadData("WildCreatureData")
    local followerName = frame.args[1] -- Sun Wyrm
  local tameableArray = mw.loadData("TameableCreatureData")
    local imageOverride = frame.args[2] -- sunwyrm.png
  local summonArray = mw.loadData("SummonableCreatureData")
    local followerType = frame.args[3] -- Tameable/Summon
    local namespace = frame.args[4] -- {{NAMESPACE}} 


    local wikiTable = ""
  -- Parameters passed when the function is invoked
  local followerName = frame.args[1]    -- Sun Wyrm
  local imageOverride = frame.args[2]  -- sunwyrm.png
  local followerType = frame.args[3]    -- Tameable/Summon
  local namespace = frame.args[4]      -- {{NAMESPACE}}


    local creature = creatureArray[followerName]
  local wikiTable = ""
    local tameable = tameableArray[followerName]
    local summon = summonArray[followerName]


    if string.lower(followerType) ~= "summon" and tameable then
  local creature = creatureArray[followerName]
      local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
  local tameable = tameableArray[followerName]
      local imageName = string.gsub(formmatedName,"%p+", "")..".jpg"
  local summon = summonArray[followerName]


      if imageOverride and imageOverride ~= "" then
  if string.lower(followerType) ~= "summon" and tameable then
        imageName = imageOverride
    local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
      end
    local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"
 
    if imageOverride and imageOverride ~= "" then
      imageName = imageOverride
    end


      -- Automaticlly add categories
    -- Automaticlly add categories
      if namespace == "" or namespace == nil then
    if namespace == "" or namespace == nil then
        if creature then
      if creature then
          wikiTable = wikiTable.."[[Category:"..creature.location.."]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
          wikiTable = wikiTable.."[[Category:"..creature.slayer.." Creatures]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"
        end
        wikiTable = wikiTable.."[[Category:Tameable Creatures]]"
        wikiTable = wikiTable.."[[Category:"..tameable.class.." Class Tameable]]"
        wikiTable = wikiTable.."[[Category:"..tameable.combat.." Tameable]]"
       end
       end
      wikiTable = wikiTable .. "[[Category:Tameable Creatures]]"
      wikiTable = wikiTable .. "[[Category:" .. tameable.class .. " Class Tameable]]"
      wikiTable = wikiTable .. "[[Category:" .. tameable.combat .. " Tameable]]"
    end


      wikiTable = [=[__NOTOC__
    wikiTable = [=[__NOTOC__
       <table class="wikitable" style="text-align:center">
       <table class="wikitable" style="text-align:center">
       <th style="border-right:none; border-bottom:none; width:110px">
       <th style="border-right:none; border-bottom:none; width:110px">
       <th colspan="6" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=]..imageName..[=[|link=]]
       <th colspan="6" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
       <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>[[File:icon-]=]..string.lower(tameable.class)..[=[class.png|link=Animal_Taming#Tamed_Classes|]=]..tameable.class..[=[ Class|right]]
    imageName .. [=[|link=]]
       <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>[[File:icon-]=] ..
    string.lower(tameable.class) .. [=[class.png|link=Animal_Taming#Tamed_Classes|]=] ..
    tameable.class .. [=[ Class|right]]
       <tr>
       <tr>
       <th style="border-top:none" colspan="8">[[]=]..followerName..[=[]]
       <th style="border-top:none" colspan="8">[[]=] .. followerName .. [=[]]
       <tr>
       <tr>
       <th>Min Taming
       <th>Min Taming
Line 22,963: Line 151:
       <th>Hits
       <th>Hits
       <th>Class
       <th>Class
       <th colspan="2">]=]..tameable.combat..[=[ Damage
       <th colspan="2">]=] .. tameable.combat .. [=[ Damage
       <th>Armor
       <th>Armor
       <th>Wrestling
       <th>Wrestling
       <tr>
       <tr>
       <td>]=]..tameable.taming..[=[
       <td>]=] .. tameable.taming .. [=[
       <td>]=]..tameable.slots..[=[
       <td>]=] .. tameable.slots .. [=[
       <td>]=]..tameable.hits..[=[
       <td>]=] .. tameable.hits .. [=[
       <td>]=]..tameable.class..[=[
       <td>]=] .. tameable.class .. [=[
       <td colspan="2>]=]..tameable.mindmg.." - "..tameable.maxdmg..[=[
       <td colspan="2>]=] .. tameable.mindmg .. " - " .. tameable.maxdmg .. [=[
       <td>]=]..tameable.armor..tameable.armormin..[=[
       <td>]=] .. tameable.armor .. tameable.armormin .. [=[
       <td>]=]..tameable.wrestling..[=[
       <td>]=] .. tameable.wrestling .. [=[
       <tr>
       <tr>
       <th>Attack Speed
       <th>Attack Speed
Line 22,984: Line 172:
       <th>Underdog Scalar
       <th>Underdog Scalar
       <tr>
       <tr>
       <td>]=]..tameable.atkspd..[=[
       <td>]=] .. tameable.atkspd .. [=[
       <td>]=]..tameable.magicresist..tameable.magicresistmin..[=[
       <td>]=] .. tameable.magicresist .. tameable.magicresistmin .. [=[
       <td>]=]..tameable.poisonresist..tameable.poisonresistmin..[=[
       <td>]=] .. tameable.poisonresist .. tameable.poisonresistmin .. [=[
       <td>]=]..tameable.specialresist..[=[
       <td>]=] .. tameable.specialresist .. [=[
       <td>]=]..tameable.poisontype..[=[
       <td>]=] .. tameable.poisontype .. [=[
       <td>]=]..tameable.poisoning..[=[
       <td>]=] .. tameable.poisoning .. [=[
       <td>]=]..tameable.stealth..[=[
       <td>]=] .. tameable.stealth .. [=[
       <td>]=]..tameable.underdogscalar.."</table>"
       <td>]=] .. tameable.underdogscalar .. "</table>"


      return wikiTable
    return wikiTable
    elseif string.lower(followerType) ~= "tameable" and summon then
  elseif string.lower(followerType) ~= "tameable" and summon then
      local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
    local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
      local imageName = string.gsub(formmatedName,"%p+", "")..".jpg"
    local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"
      local spelliconImage = "[[File:"..summon.spellicon..".png|link=Spirit Speak#"..summon.spellname.."|"..summon.spellname..summon.tometier.."|right]]"
    local spelliconImage = "[[File:" ..
    summon.spellicon .. ".png|link=Spirit Speak#" .. summon.spellname ..
    "|" .. summon.spellname .. summon.tometier .. "|right]]"


      if summon.necro == true then
    if summon.necro == true then
        spelliconImage = spelliconImage.."[[File:SpellPlus.png|right]]<br><br>[[File:iconvengefulspirit.png|link=Necromancy#Undead Summons|Vengeful Spirit|right]]"
      spelliconImage = spelliconImage ..
      end
      "[[File:SpellPlus.png|right]]<br><br>[[File:iconvengefulspirit.png|link=Necromancy#Undead Summons|Vengeful Spirit|right]]"
    end


      if imageOverride and imageOverride ~= "" then
    if imageOverride and imageOverride ~= "" then
        imageName = imageOverride
      imageName = imageOverride
      end
    end


      -- Automaticlly add categories
    -- Automaticlly add categories
      if namespace == "" or namespace == nil then
    if namespace == "" or namespace == nil then
        if creature then
      if creature then
          wikiTable = wikiTable.."[[Category:"..creature.location.."]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
          wikiTable = wikiTable.."[[Category:"..creature.slayer.." Creatures]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"
        end
        wikiTable = wikiTable.."[[Category:Summonable Creatures]]"
       end
       end
      wikiTable = wikiTable .. "[[Category:Summonable Creatures]]"
    end


      wikiTable = [=[__NOTOC__
    wikiTable = [=[__NOTOC__
       <table class="wikitable" style="text-align:center">
       <table class="wikitable" style="text-align:center">
       <th style="border-right:none; border-bottom:none; width:110px">
       <th style="border-right:none; border-bottom:none; width:110px">
       <th colspan="5" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=]..imageName..[=[|link=]]
       <th colspan="5" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
       <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 5px; width:110px>]=]..spelliconImage..[=[
    imageName .. [=[|link=]]
       <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 5px; width:110px>]=] ..
    spelliconImage .. [=[
       <tr>
       <tr>
       <th style="border-top:none" colspan="7">[[]=]..followerName..[=[]]
       <th style="border-top:none" colspan="7">[[]=] .. followerName .. [=[]]
       <tr>
       <tr>
       <th>Spell
       <th>Spell
       <th>Control Slots
       <th>Control Slots
       <th>Hits
       <th>Hits
       <th colspan="2">]=]..summon.combat..[=[ Damage
       <th colspan="2">]=] .. summon.combat .. [=[ Damage
       <th>Armor
       <th>Armor
       <th>Wrestling
       <th>Wrestling
       <tr>
       <tr>
       <td>]=]..summon.spellname..summon.tometier..[=[
       <td>]=] .. summon.spellname .. summon.tometier .. [=[
       <td>]=]..summon.slots..[=[
       <td>]=] .. summon.slots .. [=[
       <td>]=]..summon.hits..[=[
       <td>]=] .. summon.hits .. [=[
       <td colspan="2>]=]..summon.mindmg.." - "..summon.maxdmg..[=[
       <td colspan="2>]=] .. summon.mindmg .. " - " .. summon.maxdmg .. [=[
       <td>]=]..summon.armor..summon.armormin..[=[
       <td>]=] .. summon.armor .. summon.armormin .. [=[
       <td>]=]..summon.wrestling..[=[
       <td>]=] .. summon.wrestling .. [=[
       <tr>
       <tr>
       <th>Attack Speed
       <th>Attack Speed
Line 23,046: Line 239:
       <th>Stealth
       <th>Stealth
       <tr>
       <tr>
       <td>]=]..summon.atkspd..[=[
       <td>]=] .. summon.atkspd .. [=[
       <td>]=]..summon.magicresist..summon.magicresistmin..[=[
       <td>]=] .. summon.magicresist .. summon.magicresistmin .. [=[
       <td>]=]..summon.poisonresist..summon.poisonresistmin..[=[
       <td>]=] .. summon.poisonresist .. summon.poisonresistmin .. [=[
       <td>]=]..summon.specialresist..[=[
       <td>]=] .. summon.specialresist .. [=[
       <td>]=]..summon.poisontype..[=[
       <td>]=] .. summon.poisontype .. [=[
       <td>]=]..summon.poisoning..[=[
       <td>]=] .. summon.poisoning .. [=[
       <td>]=]..summon.stealth.."</table>"
       <td>]=] .. summon.stealth .. "</table>"


      return wikiTable
    return wikiTable
    else
  else
      return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No tamed/summoned follower found by the name "'..followerName..'" (Case-sensitive)</big></h1>'
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No tamed/summoned follower found by the name "' ..
    end
    followerName .. '" (Case-sensitive)</big></h1>'
   end
   end
end
function p.listSlayerGroup(frame)
  local creatureArray = mw.loadData("WildCreatureData")


   function p.listSlayerGroup(frame)
   local slayerGroup = frame.args[1]
      local slayerGroup = frame.args[1]
  local position = frame.args[2]
      local position = frame.args[2]
  local wikiTable = ""
      local wikiTable = ""


      if position and string.find(string.lower(position),"start") then
  if position and string.find(string.lower(position), "start") then
        wikiTable = [[<table class="wikitable sortable" style="text-align:center">
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
         <th>Name
         <th>Name
         <th>Location
         <th>Location
Line 23,088: Line 284:
         <th>Speed
         <th>Speed
         <th>Unique Scalar]]
         <th>Unique Scalar]]
      else
  else
        wikiTable = ""
    wikiTable = ""
      end
  end


      for creatureName, creature in pairs(creatureArray) do
  for creatureName, creature in pairs(creatureArray) do
        if creature.slayer == slayerGroup then
    if creature.slayer == slayerGroup then
          wikiTable = wikiTable..[=[<tr>
      wikiTable = wikiTable .. [=[<tr>
           <td>[[]=]..creatureName..[=[]]
           <td>[[]=] .. creatureName .. [=[]]
           <td>]=]..creature.location..[=[
           <td>]=] .. creature.location .. [=[
           <td>]=]..creature.slayer..[[
           <td>]=] .. creature.slayer .. [[
           <td>]]..creature.difficulty..[[
           <td>]] .. creature.difficulty .. [[
           <td>]]..creature.goldvalue..[[
           <td>]] .. creature.goldvalue .. [[
           <td>]]..creature.hits..[[
           <td>]] .. creature.hits .. [[
           <td colspan="2">]]..creature.minmeleedmg..creature.maxmeleedmg..[[
           <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
           <td>]]..creature.wrestling..[[
           <td>]] .. creature.wrestling .. [[
           <td>]]..creature.armor..creature.armormin..[[
           <td>]] .. creature.armor .. creature.armormin .. [[
           <td>]]..creature.magicresist..creature.magicresistmin..[[
           <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
           <td>]]..creature.parry..[[
           <td>]] .. creature.parry .. [[
           <td>]]..creature.atkspd..[[
           <td>]] .. creature.atkspd .. [[
           <td>]]..creature.magery..[[
           <td>]] .. creature.magery .. [[
           <td colspan="2">]]..creature.minspelldmg..creature.maxspelldmg..[[
           <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
           <td>]]..creature.poisontype..[[
           <td>]] .. creature.poisontype .. [[
           <td>]]..creature.poisoning..[[
           <td>]] .. creature.poisoning .. [[
           <td>]]..creature.poisonresist..creature.poisonresistmin..[[
           <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
           <td>]]..creature.stealth..[[
           <td>]] .. creature.stealth .. [[
           <td>]]..creature.ai..[[
           <td>]] .. creature.ai .. [[
           <td>]]..creature.speed..[[
           <td>]] .. creature.speed .. [[
           <td>]]..creature.uniquescalar
           <td>]] .. creature.uniquescalar
        end
    end
      end
  end
      if position and position and string.find(string.lower(position),"end") then
  if position and position and string.find(string.lower(position), "end") then
        wikiTable = wikiTable.."</table>"
    wikiTable = wikiTable .. "</table>"
      end
      return wikiTable
   end
   end
  return wikiTable
end


  function p.listLocationGroup(frame)
function p.listLocationGroup(frame)
    local locationGroup = frame.args[1]
  local locationGroup = frame.args[1]
    local position = frame.args[2]
  local position = frame.args[2]
    local wikiTable = ""
  local wikiTable = ""


    local array = creatureArray
  local array = creatureArray


    if string.lower(locationGroup) == "strangelands" then
  if string.lower(locationGroup) == "strangelands" then
      array = strangelandsArray
    array = mw.loadData("StrangelandsCreatureData")
    elseif string.lower(locationGroup) == "ships" then
  elseif string.lower(locationGroup) == "ships" then
      array = shipsArray
    array = mw.loadData("ShipCreatureData")
    end
  end


    if position and string.find(string.lower(position),"start") then
  if position and string.find(string.lower(position), "start") then
      wikiTable = [[<table class="wikitable sortable" style="text-align:center">
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
       <th>Name
       <th>Name
       <th>Slayer
       <th>Slayer
Line 23,159: Line 355:
       <th>Speed
       <th>Speed
       <th>Unique Scalar]]
       <th>Unique Scalar]]
    end
  end
 
    for creatureName, creature in pairs(array) do


      if string.find(creature.location,"[["..locationGroup.."]]") then
  for creatureName, creature in pairs(array) do
        wikiTable = wikiTable..[=[<tr>
    if string.find(creature.location, "[[" .. locationGroup .. "]]") then
         <td>[[]=]..creatureName..[=[]]
      wikiTable = wikiTable .. [=[<tr>
         <td>]=]..creature.slayer..[[
         <td>[[]=] .. creatureName .. [=[]]
         <td>]]..creature.difficulty..[[
         <td>]=] .. creature.slayer .. [[
         <td>]]..creature.goldvalue..[[
         <td>]] .. creature.difficulty .. [[
         <td>]]..creature.hits..[[
         <td>]] .. creature.goldvalue .. [[
         <td colspan="2">]]..creature.minmeleedmg..creature.maxmeleedmg..[[
         <td>]] .. creature.hits .. [[
         <td>]]..creature.wrestling..[[
         <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
         <td>]]..creature.armor..creature.armormin..[[
         <td>]] .. creature.wrestling .. [[
         <td>]]..creature.magicresist..creature.magicresistmin..[[
         <td>]] .. creature.armor .. creature.armormin .. [[
         <td>]]..creature.parry..[[
         <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
         <td>]]..creature.atkspd..[[
         <td>]] .. creature.parry .. [[
         <td>]]..creature.magery..[[
         <td>]] .. creature.atkspd .. [[
         <td colspan="2">]]..creature.minspelldmg..creature.maxspelldmg..[[
         <td>]] .. creature.magery .. [[
         <td>]]..creature.poisontype..[[
         <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
         <td>]]..creature.poisoning..[[
         <td>]] .. creature.poisontype .. [[
         <td>]]..creature.poisonresist..creature.poisonresistmin..[[
         <td>]] .. creature.poisoning .. [[
         <td>]]..creature.stealth..[[
         <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
         <td>]]..creature.ai..[[
         <td>]] .. creature.stealth .. [[
         <td>]]..creature.speed..[[
         <td>]] .. creature.ai .. [[
         <td>]]..creature.uniquescalar
         <td>]] .. creature.speed .. [[
      end
         <td>]] .. creature.uniquescalar
     end
     end
  end


    if position and position and string.find(string.lower(position),"end") then
  if position and position and string.find(string.lower(position), "end") then
      wikiTable = wikiTable.."</table>"
    wikiTable = wikiTable .. "</table>"
    end
  end


    return wikiTable
  return wikiTable
  end
end


  function p.listBosses(frame)
function p.listBosses(frame)
    local bossesToList = frame.args[1] -- Main Boss
  local creatureArray = mw.loadData("WildCreatureData")


    local typeOfBoss = string.lower(bossesToList)
  local bossesToList = frame.args[1]  -- Main Boss
  local typeOfBoss = string.lower(bossesToList)


    local wikiTable = [[<table class="wikitable sortable" style="text-align:center">
  local wikiTable = [[<table class="wikitable sortable" style="text-align:center">
     <th>Name
     <th>Name
     <th>Location
     <th>Location
Line 23,218: Line 414:
     <th>Stealth]]
     <th>Stealth]]


    for creatureName, creature in pairs(creatureArray) do
  for creatureName, creature in pairs(creatureArray) do
      if string.lower(creature.bosstype) == typeOfBoss or typeOfBoss == "all" then
    if string.lower(creature.bosstype) == typeOfBoss or typeOfBoss == "all" then
        if creature.bosstype ~= "" and creature.bosstype ~= "Boss Summon" then
      if creature.bosstype ~= "" and creature.bosstype ~= "Boss Summon" then
          local imageType = ".jpg"
        local imageType = ".jpg"
          local imagePrefix = ""
        local imagePrefix = ""


          if creature.bosstype == "Main Boss" then
        if creature.bosstype == "Main Boss" then
            imageType = ".gif"
          imageType = ".gif"
          elseif creature.bosstype == "Shrine Boss" then
        elseif creature.bosstype == "Shrine Boss" then
            imageType = ".png"
          imageType = ".png"
          elseif creature.bosstype == "Omni Boss" then
        elseif creature.bosstype == "Omni Boss" then
            imageType = ".gif"
          imageType = ".gif"
            imagePrefix = "omni"
          imagePrefix = "omni"
          end
        end


          local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
        local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
          local imageName = imagePrefix..string.gsub(formmatedName,"%p+", "")..imageType
        local imageName = imagePrefix .. string.gsub(formmatedName, "%p+", "") .. imageType


          wikiTable = wikiTable..[[<tr>
        wikiTable = wikiTable .. [[<tr>
           <td>]].."[[File:"..imageName.."|link="..creatureName.."]]<br />[["..creatureName..[=[]]
           <td>]] .. "[[File:" .. imageName .. "|link=" .. creatureName .. "]]<br />[[" .. creatureName .. [=[]]
           <td>]=]..creature.location..[=[
           <td>]=] .. creature.location .. [=[
           <td>]=]..creature.slayer..[[
           <td>]=] .. creature.slayer .. [[
           <td>]]..creature.difficulty..[[
           <td>]] .. creature.difficulty .. [[
           <td>]]..creature.hits..[[
           <td>]] .. creature.hits .. [[
           <td colspan="2">]]..creature.minmeleedmg..creature.maxmeleedmg..[[
           <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
           <td>]]..creature.wrestling..[[
           <td>]] .. creature.wrestling .. [[
           <td>]]..creature.armor..creature.armormin..[[
           <td>]] .. creature.armor .. creature.armormin .. [[
           <td>]]..creature.magicresist..creature.magicresistmin..[[
           <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
           <td>]]..creature.parry..[[
           <td>]] .. creature.parry .. [[
           <td>]]..creature.magery..[[
           <td>]] .. creature.magery .. [[
           <td colspan="2">]]..creature.minspelldmg..creature.maxspelldmg..[[
           <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
           <td>]]..creature.poisontype..[[
           <td>]] .. creature.poisontype .. [[
           <td>]]..creature.poisoning..[[
           <td>]] .. creature.poisoning .. [[
           <td>]]..creature.poisonresist..creature.poisonresistmin..[[
           <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
           <td>]]..creature.stealth
           <td>]] .. creature.stealth
        end
       end
       end
     end
     end
  end


    wikiTable = wikiTable.."</table>"
  wikiTable = wikiTable .. "</table>"


    return wikiTable
  return wikiTable
   end
end
 
function p.listAbilities(frame)
  local tameableArray = mw.loadData("TameableCreatureData")
   local summonArray = mw.loadData("SummonableCreatureData")
  local abilityArray = mw.loadData("FollowerAbilityData")


   function p.listAbilities(frame)
   local creature = frame.args[1]       -- Warpig
    local creature = frame.args[1] -- Warpig
  local followerType = frame.args[2]   -- Tameable/Summon
    local followerType = frame.args[2] -- Tameable/Summon
  local follower = ""
    local follower = ""


    if string.lower(followerType) ~= "summon" and tameableArray[creature] then
  if string.lower(followerType) ~= "summon" and tameableArray[creature] then
      follower = tameableArray[creature]
    follower = tameableArray[creature]
    elseif string.lower(followerType) ~= "tameable" and summonArray[creature] then
  elseif string.lower(followerType) ~= "tameable" and summonArray[creature] then
      follower = summonArray[creature]
    follower = summonArray[creature]
    else
  else
      follower = "undefined"
    follower = "undefined"
    end
  end


    local wikiTable = ""
  local wikiTable = ""


    if follower and follower ~= "undefined" then -- List a follower's abilities if a follower is given
  if follower and follower ~= "undefined" then   -- List a follower's abilities if a follower is given
      wikiTable = [[<table class="wikitable" style="text-align:center">
    wikiTable = [[<table class="wikitable" style="text-align:center">
       <th>Ability
       <th>Ability
       <th>Type
       <th>Type
       <th>Description]]
       <th>Description]]


      local abilities = {}
    local abilities = {}


      for i, creatureAbility in pairs({follower.cooldownability,follower.innateability,follower.passiveability}) do
    for i, creatureAbility in pairs({ follower.cooldownability, follower.innateability, follower.passiveability }) do
        if creatureAbility and creatureAbility ~= "" and type(creatureAbility) == "table" then
      if creatureAbility and creatureAbility ~= "" and type(creatureAbility) == "table" then
          for index, ability in pairs(creatureAbility) do  
        for index, ability in pairs(creatureAbility) do
            table.insert(abilities,ability)
          table.insert(abilities, ability)
          end
        elseif creatureAbility and creatureAbility ~= "" then
          table.insert(abilities,creatureAbility)
         end
         end
      elseif creatureAbility and creatureAbility ~= "" then
        table.insert(abilities, creatureAbility)
       end
       end
    end


      for i, ability in pairs(abilities) do
    for i, ability in pairs(abilities) do
        wikiTable = wikiTable..[[<tr>
      wikiTable = wikiTable .. [[<tr>
           <td>]]..ability..[[
           <td>]] .. ability .. [[
           <td>]]..abilityArray[ability].type..[[
           <td>]] .. abilityArray[ability].type .. [[
           <td style="text-align:left">]]..abilityArray[ability].description
           <td style="text-align:left">]] .. abilityArray[ability].description
      end
    end
   
  elseif follower == "undefined" then   -- List all abilities and the followers that have them
    elseif follower == "undefined" then -- List all abilities and the followers that have them
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
      wikiTable = [[<table class="wikitable sortable" style="text-align:center">
       <th>Ability
       <th>Ability
       <th>Type
       <th>Type
Line 23,309: Line 508:
       <th>Creatures]]
       <th>Creatures]]


      for abilityName, ability in pairs(abilityArray) do  
    for abilityName, ability in pairs(abilityArray) do
       
      wikiTable = wikiTable .. [[<tr>
          wikiTable = wikiTable..[[<tr>
           <td>]] .. abilityName .. [[
           <td>]]..abilityName..[[
           <td>]] .. ability.type .. [[
           <td>]]..ability.type..[[
           <td style="text-align:left">]] .. ability.description .. [[
           <td style="text-align:left">]]..ability.description..[[
           <td>]]
           <td>]]


          -- Find and list any followers with the ability
      -- Find and list any followers with the ability
          for i, array in pairs({tameableArray,summonArray}) do  
      for i, array in pairs({ tameableArray, summonArray }) do
            for followerName, follower in pairs(array) do
        for followerName, follower in pairs(array) do
              if tameableArray[followerName] and not summonArray[followerName] or not tameableArray[followerName] and summonArray[followerName] then -- Prevents listing duplicate creatures
          if tameableArray[followerName] and not summonArray[followerName] or not tameableArray[followerName] and summonArray[followerName] then     -- Prevents listing duplicate creatures
                local followerAbilityType = ""
            local followerAbilityType = ""


                if ability.type == "Cooldown" then
            if ability.type == "Cooldown" then
                  followerAbilityType = follower.cooldownability
              followerAbilityType = follower.cooldownability
                elseif ability.type == "Innate" then
            elseif ability.type == "Innate" then
                  followerAbilityType = follower.innateability
              followerAbilityType = follower.innateability
                elseif ability.type == "Passive" then
            elseif ability.type == "Passive" then
                  followerAbilityType = follower.passiveability
              followerAbilityType = follower.passiveability
                end
            end


                if type(followerAbilityType) == "table" then
            if type(followerAbilityType) == "table" then
                  for creatureName, value in pairs(followerAbilityType) do
              for creatureName, value in pairs(followerAbilityType) do
                    if value == abilityName then
                if value == abilityName then
                      wikiTable = wikiTable.."[["..followerName.."]]<br>"
                   wikiTable = wikiTable .. "[[" .. followerName .. "]]<br>"
                    end
                  end
                elseif followerAbilityType == abilityName then
                   wikiTable = wikiTable.."[["..followerName.."]]<br>"
                 end
                 end
               end
               end
            elseif followerAbilityType == abilityName then
              wikiTable = wikiTable .. "[[" .. followerName .. "]]<br>"
             end
             end
           end
           end
        end
      end


          -- Cut out the extra line break
      -- Cut out the extra line break
          if string.find(wikiTable,"<br>") then
      if string.find(wikiTable, "<br>") then
            wikiTable = string.reverse(wikiTable)
        wikiTable = string.reverse(wikiTable)
            wikiTable = string.sub(wikiTable,5)
        wikiTable = string.sub(wikiTable, 5)
            wikiTable = string.reverse(wikiTable)
        wikiTable = string.reverse(wikiTable)
          end
       end
       end
    else -- If a follower is given but doesn't exist
      return '<h1 style="color:FireBrick;"><big>{{PAGENAME}} Template Error: No tamed/summoned follower found by the name "'..creature..'" (Case-sensitive)</big></h1>'
     end
     end
  else  -- If a follower is given but doesn't exist
    return '<h1 style="color:FireBrick;"><big>{{PAGENAME}} Template Error: No tamed/summoned follower found by the name "' ..
    creature .. '" (Case-sensitive)</big></h1>'
  end


    wikiTable = wikiTable.."</table>"
  wikiTable = wikiTable .. "</table>"


    return wikiTable
  return wikiTable
   end
end
 
function p.summonStatIncrease(frame)
   local summonArray = mw.loadData("SummonableCreatureData")
 
  local summonName = frame.args[1]  -- A summon given to display, defaults to {{PAGENAME}}
  local wikiTable = '<table class="wikitable" style="text-align:center">'


   function p.summonStatIncrease(frame)
   local summon = summonArray[summonName]
    local summonName = frame.args[1] -- A summon given to display, defaults to {{PAGENAME}}
    local wikiTable = '<table class="wikitable" style="text-align:center">'


     local summon = summonArray[summonName]
  if summon then
     local stats = {
      ["hits"] = summon.unformattedhits,
      ["atkspd"] = summon.atkspd,
      ["mindmg"] = summon.mindmg,
      ["maxdmg"] = summon.maxdmg,
      ["wrestling"] = summon.wrestling,
      ["armor"] = summon.armor,
      ["magicresist"] = summon.magicresist
    }


     if summon then
     for statName, stat in pairs(stats) do
      local stats = {
      if type(stats[statName]) == "string" then
        ["hits"] = summon.unformattedhits,
        stats[statName] = 0
        ["atkspd"] = summon.atkspd,
        ["mindmg"] = summon.mindmg,
        ["maxdmg"] = summon.maxdmg,
        ["wrestling"] = summon.wrestling,
        ["armor"] = summon.armor,
        ["magicresist"] = summon.magicresist
      }
     
      for statName, stat in pairs(stats) do
        if type(stats[statName]) == "string" then
          stats[statName] = 0
        end
       end
       end
    end


      wikiTable = wikiTable..[=[<caption>[[]=]..summonName..[=[]]
    wikiTable = wikiTable .. [=[<caption>[[]=] .. summonName .. [=[]]
       <th rowspan="2">Stat
       <th rowspan="2">Stat
       <th colspan="5"> Spirit Speak Skill
       <th colspan="5"> Spirit Speak Skill
Line 23,394: Line 595:
       <tr>
       <tr>
       <th>Hits
       <th>Hits
       <td>]=]..stats.hits..[[
       <td>]=] .. stats.hits .. [[
       <td>]]..stats.hits*1.5*(80/100)..[[
       <td>]] .. stats.hits * 1.5 * (80 / 100) .. [[
       <td>]]..stats.hits*1.5*(100/100)..[[
       <td>]] .. stats.hits * 1.5 * (100 / 100) .. [[
       <td>]]..stats.hits*1.5*(120/100)..[[
       <td>]] .. stats.hits * 1.5 * (120 / 100) .. [[
       <td>]]..stats.hits*1.5*(150/100)..[[
       <td>]] .. stats.hits * 1.5 * (150 / 100) .. [[
       <tr>
       <tr>
       <th>Attack Speed
       <th>Attack Speed
       <td>]]..stats.atkspd..[[
       <td>]] .. stats.atkspd .. [[
       <td>]]..stats.atkspd*1.125*(80/100)..[[
       <td>]] .. stats.atkspd * 1.125 * (80 / 100) .. [[
       <td>]]..stats.atkspd*1.125*(100/100)..[[
       <td>]] .. stats.atkspd * 1.125 * (100 / 100) .. [[
       <td>]]..stats.atkspd*1.125*(120/100)..[[
       <td>]] .. stats.atkspd * 1.125 * (120 / 100) .. [[
       <td>]]..stats.atkspd*1.125*(150/100)..[[
       <td>]] .. stats.atkspd * 1.125 * (150 / 100) .. [[
       <tr>
       <tr>
       <th>]]..summon.combat..[[ Damage
       <th>]] .. summon.combat .. [[ Damage
       <td>]]..stats.mindmg.." - "..stats.maxdmg..[[
       <td>]] .. stats.mindmg .. " - " .. stats.maxdmg .. [[
       <td>]]..stats.mindmg*1.25*(80/100).." - "..stats.maxdmg*1.25*(80/100)..[[
       <td>]] .. stats.mindmg * 1.25 * (80 / 100) .. " - " .. stats.maxdmg * 1.25 * (80 / 100) .. [[
       <td>]]..stats.mindmg*1.25*(100/100).." - "..stats.maxdmg*1.25*(100/100)..[[
       <td>]] .. stats.mindmg * 1.25 * (100 / 100) .. " - " .. stats.maxdmg * 1.25 * (100 / 100) .. [[
       <td>]]..stats.mindmg*1.25*(120/100).." - "..stats.maxdmg*1.25*(120/100)..[[
       <td>]] .. stats.mindmg * 1.25 * (120 / 100) .. " - " .. stats.maxdmg * 1.25 * (120 / 100) .. [[
       <td>]]..stats.mindmg*1.25*(150/100).." - "..stats.maxdmg*1.25*(150/100)..[[
       <td>]] .. stats.mindmg * 1.25 * (150 / 100) .. " - " .. stats.maxdmg * 1.25 * (150 / 100) .. [[
       <tr>
       <tr>
       <th>Wrestling
       <th>Wrestling
       <td>]]..stats.wrestling..[[
       <td>]] .. stats.wrestling .. [[
       <td>]]..stats.wrestling*1.25*(80/100)..[[
       <td>]] .. stats.wrestling * 1.25 * (80 / 100) .. [[
       <td>]]..stats.wrestling*1.25*(100/100)..[[
       <td>]] .. stats.wrestling * 1.25 * (100 / 100) .. [[
       <td>]]..stats.wrestling*1.25*(120/100)..[[
       <td>]] .. stats.wrestling * 1.25 * (120 / 100) .. [[
       <td>]]..stats.wrestling*1.25*(150/100)..[[
       <td>]] .. stats.wrestling * 1.25 * (150 / 100) .. [[
       <tr>
       <tr>
       <th>Armor
       <th>Armor
       <td>]]..stats.armor..[[
       <td>]] .. stats.armor .. [[
       <td>]]..stats.armor+(25*(80/100))..[[
       <td>]] .. stats.armor + (25 * (80 / 100)) .. [[
       <td>]]..stats.armor+(25*(100/100))..[[
       <td>]] .. stats.armor + (25 * (100 / 100)) .. [[
       <td>]]..stats.armor+(25*(120/100))..[[
       <td>]] .. stats.armor + (25 * (120 / 100)) .. [[
       <td>]]..stats.armor+(25*(150/100))..[[
       <td>]] .. stats.armor + (25 * (150 / 100)) .. [[
       <tr>
       <tr>
       <th>Magic Resist
       <th>Magic Resist
       <td>]]..stats.magicresist..[[
       <td>]] .. stats.magicresist .. [[
       <td>]]..stats.magicresist+(50*(80/100))..[[
       <td>]] .. stats.magicresist + (50 * (80 / 100)) .. [[
       <td>]]..stats.magicresist+(50*(100/100))..[[
       <td>]] .. stats.magicresist + (50 * (100 / 100)) .. [[
       <td>]]..stats.magicresist+(50*(120/100))..[[
       <td>]] .. stats.magicresist + (50 * (120 / 100)) .. [[
       <td>]]..stats.magicresist+(50*(150/100))..[[
       <td>]] .. stats.magicresist + (50 * (150 / 100)) .. [[
       </table>]]
       </table>]]


      return wikiTable
    return wikiTable
    else  
  else
      return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No summoned follower found by the name "'..summonName..'" (Case-sensitive)</big></h1>'
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No summoned follower found by the name "' ..
    end
    summonName .. '" (Case-sensitive)</big></h1>'
   end
   end
end


  return p
return p

Revision as of 01:41, 4 November 2024

Documentation for this module may be created at Module:Creatures/doc

local p = {}

function p.singleCreature(frame)
  local creatureArray = mw.loadData("WildCreatureData")

  -- Parameters passed when the function is invoked
  local creatureName = frame.args[1]      -- Sun Wyrm
  local creatureType = frame.args[2]      -- Strangelands/Ship
  local imageOverride = frame.args[3]     -- sunwyrm.png
  local namespace = frame.args[4]         -- {{NAMESPACE}}
  local iconImage = ""

  local wikiTable = ""

  local array = creatureArray

  if string.lower(creatureType) == "strangelands" then
    array = mw.loadData("StrangelandsCreatureData")
    creatureType = " " .. creatureType .. ""
    iconImage = "[[File:icon-strangelands.png|right|50px|link=Strangelands#Strangelands_Creatures|Strangeland Creature]]"
  elseif string.lower(creatureType) == "ships" then
    array = mw.loadData("ShipCreatureData")
    creatureType = " " .. creatureType .. ""
    iconImage = "[[File:shipdeed.png|right|30px|link=Ships|Ship Creature]]"
  else
    creatureType = ""
  end

  local creature = array[creatureName]

  if creature then
    local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
    local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"

    if imageOverride and imageOverride ~= "" then
      imageName = imageOverride
    end

    -- Automaticly add categories
    if namespace == "" or namespace == nil then
      wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
      wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"

      if creature.bosstype ~= "" then
        wikiTable = wikiTable .. "[[Category:" .. creature.bosstype .. "es]] [[Category:Bosses]]"
      end
    end

    wikiTable = [=[__NOTOC__
        <table class="wikitable" style="text-align:center">
        <th style="border-right:none; border-bottom:none; width:110px">
        <th colspan="7" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
    imageName .. [=[|link=]]
        <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>]=] ..
    iconImage .. [=[
        <tr>
        <th style="border-top:none" colspan="9">[[]=] .. creatureName .. [=[]]
        <tr>
        <th>Slayer
        <th>Difficulty
        <th>Gold Value
        <th>Hits
        <th colspan="2">Melee Damage
        <th>Wrestling
        <th>Armor
        <th>Magic Resist
        <tr>
        <td>]=] .. creature.slayer .. [=[
        <td>]=] .. creature.difficulty .. [=[
        <td>]=] .. creature.goldvalue .. [=[
        <td>]=] .. creature.hits .. [=[
        <td colspan="2">]=] .. creature.minmeleedmg .. creature.maxmeleedmg .. [=[
        <td>]=] .. creature.wrestling .. [=[
        <td>]=] .. creature.armor .. creature.armormin .. [=[
        <td>]=] .. creature.magicresist .. creature.magicresistmin .. [=[
        <tr>
        <th>Parry
        <th>Attack Speed
        <th>Magery
        <th colspan="2">Spell Damage
        <th>Poison
        <th>Poison Resist
        <th>Stealth
        <th>AI
        <tr>
        <td>]=] .. creature.parry .. [=[
        <td>]=] .. creature.atkspd .. [=[
        <td>]=] .. creature.magery .. [=[
        <td colspan="2">]=] .. creature.minspelldmg .. creature.maxspelldmg .. [=[
        <td>]=] .. creature.poisontype .. [=[
        <td>]=] .. creature.poisonresist .. creature.poisonresistmin .. [=[
        <td>]=] .. creature.stealth .. [=[
        <td>]=] .. creature.ai .. "</table>"

    return wikiTable
  else
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No' ..
    creatureType .. 'creature by the name "' .. creatureName .. '" was found (Case-sensitive)</big></h1>'
  end
end

function p.singleFollower(frame)
  local creatureArray = mw.loadData("WildCreatureData")
  local tameableArray = mw.loadData("TameableCreatureData")
  local summonArray = mw.loadData("SummonableCreatureData")

  -- Parameters passed when the function is invoked
  local followerName = frame.args[1]    -- Sun Wyrm
  local imageOverride = frame.args[2]   -- sunwyrm.png
  local followerType = frame.args[3]    -- Tameable/Summon
  local namespace = frame.args[4]       -- {{NAMESPACE}}

  local wikiTable = ""

  local creature = creatureArray[followerName]
  local tameable = tameableArray[followerName]
  local summon = summonArray[followerName]

  if string.lower(followerType) ~= "summon" and tameable then
    local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
    local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"

    if imageOverride and imageOverride ~= "" then
      imageName = imageOverride
    end

    -- Automaticlly add categories
    if namespace == "" or namespace == nil then
      if creature then
        wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"
      end
      wikiTable = wikiTable .. "[[Category:Tameable Creatures]]"
      wikiTable = wikiTable .. "[[Category:" .. tameable.class .. " Class Tameable]]"
      wikiTable = wikiTable .. "[[Category:" .. tameable.combat .. " Tameable]]"
    end

    wikiTable = [=[__NOTOC__
      <table class="wikitable" style="text-align:center">
      <th style="border-right:none; border-bottom:none; width:110px">
      <th colspan="6" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
    imageName .. [=[|link=]]
      <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 15px; width:110px>[[File:icon-]=] ..
    string.lower(tameable.class) .. [=[class.png|link=Animal_Taming#Tamed_Classes|]=] ..
    tameable.class .. [=[ Class|right]]
      <tr>
      <th style="border-top:none" colspan="8">[[]=] .. followerName .. [=[]]
      <tr>
      <th>Min Taming
      <th>Control Slots
      <th>Hits
      <th>Class
      <th colspan="2">]=] .. tameable.combat .. [=[ Damage
      <th>Armor
      <th>Wrestling
      <tr>
      <td>]=] .. tameable.taming .. [=[
      <td>]=] .. tameable.slots .. [=[
      <td>]=] .. tameable.hits .. [=[
      <td>]=] .. tameable.class .. [=[
      <td colspan="2>]=] .. tameable.mindmg .. " - " .. tameable.maxdmg .. [=[
      <td>]=] .. tameable.armor .. tameable.armormin .. [=[
      <td>]=] .. tameable.wrestling .. [=[
      <tr>
      <th>Attack Speed
      <th>Magic Resist
      <th>Poison Resist
      <th>Special Resist
      <th>Poison
      <th>Poisoning
      <th>Stealth
      <th>Underdog Scalar
      <tr>
      <td>]=] .. tameable.atkspd .. [=[
      <td>]=] .. tameable.magicresist .. tameable.magicresistmin .. [=[
      <td>]=] .. tameable.poisonresist .. tameable.poisonresistmin .. [=[
      <td>]=] .. tameable.specialresist .. [=[
      <td>]=] .. tameable.poisontype .. [=[
      <td>]=] .. tameable.poisoning .. [=[
      <td>]=] .. tameable.stealth .. [=[
      <td>]=] .. tameable.underdogscalar .. "</table>"

    return wikiTable
  elseif string.lower(followerType) ~= "tameable" and summon then
    local formmatedName = string.gsub(string.lower(followerName), "%s+", "")
    local imageName = string.gsub(formmatedName, "%p+", "") .. ".jpg"
    local spelliconImage = "[[File:" ..
    summon.spellicon .. ".png|link=Spirit Speak#" .. summon.spellname ..
    "|" .. summon.spellname .. summon.tometier .. "|right]]"

    if summon.necro == true then
      spelliconImage = spelliconImage ..
      "[[File:SpellPlus.png|right]]<br><br>[[File:iconvengefulspirit.png|link=Necromancy#Undead Summons|Vengeful Spirit|right]]"
    end

    if imageOverride and imageOverride ~= "" then
      imageName = imageOverride
    end

    -- Automaticlly add categories
    if namespace == "" or namespace == nil then
      if creature then
        wikiTable = wikiTable .. "[[Category:" .. creature.location .. "]]"
        wikiTable = wikiTable .. "[[Category:" .. creature.slayer .. " Creatures]]"
      end
      wikiTable = wikiTable .. "[[Category:Summonable Creatures]]"
    end

    wikiTable = [=[__NOTOC__
      <table class="wikitable" style="text-align:center">
      <th style="border-right:none; border-bottom:none; width:110px">
      <th colspan="5" style="border-width: 1px 0px 0px; height:100px; vertical-align:bottom;"> [[File:]=] ..
    imageName .. [=[|link=]]
      <th style="vertical-align:top; border-left:none; border-bottom:none; margin-left: 5px; width:110px>]=] ..
    spelliconImage .. [=[
      <tr>
      <th style="border-top:none" colspan="7">[[]=] .. followerName .. [=[]]
      <tr>
      <th>Spell
      <th>Control Slots
      <th>Hits
      <th colspan="2">]=] .. summon.combat .. [=[ Damage
      <th>Armor
      <th>Wrestling
      <tr>
      <td>]=] .. summon.spellname .. summon.tometier .. [=[
      <td>]=] .. summon.slots .. [=[
      <td>]=] .. summon.hits .. [=[
      <td colspan="2>]=] .. summon.mindmg .. " - " .. summon.maxdmg .. [=[
      <td>]=] .. summon.armor .. summon.armormin .. [=[
      <td>]=] .. summon.wrestling .. [=[
      <tr>
      <th>Attack Speed
      <th>Magic Resist
      <th>Poison Resist
      <th>Special Resist
      <th>Poison
      <th>Poisoning
      <th>Stealth
      <tr>
      <td>]=] .. summon.atkspd .. [=[
      <td>]=] .. summon.magicresist .. summon.magicresistmin .. [=[
      <td>]=] .. summon.poisonresist .. summon.poisonresistmin .. [=[
      <td>]=] .. summon.specialresist .. [=[
      <td>]=] .. summon.poisontype .. [=[
      <td>]=] .. summon.poisoning .. [=[
      <td>]=] .. summon.stealth .. "</table>"

    return wikiTable
  else
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No tamed/summoned follower found by the name "' ..
    followerName .. '" (Case-sensitive)</big></h1>'
  end
end

function p.listSlayerGroup(frame)
  local creatureArray = mw.loadData("WildCreatureData")

  local slayerGroup = frame.args[1]
  local position = frame.args[2]
  local wikiTable = ""

  if position and string.find(string.lower(position), "start") then
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
        <th>Name
        <th>Location
        <th>Slayer
        <th>Difficulty
        <th>Gold Value
        <th>Hits
        <th colspan="2">Melee Dmg
        <th>Wrestling
        <th>Armor
        <th>Magic Resist
        <th>Parry
        <th>AtkSpd
        <th>Magery
        <th colspan="2">Spell Dmg
        <th>Poison
        <th>Poisoning
        <th>Poison Resist
        <th>Stealth
        <th>AI
        <th>Speed
        <th>Unique Scalar]]
  else
    wikiTable = ""
  end

  for creatureName, creature in pairs(creatureArray) do
    if creature.slayer == slayerGroup then
      wikiTable = wikiTable .. [=[<tr>
          <td>[[]=] .. creatureName .. [=[]]
          <td>]=] .. creature.location .. [=[
          <td>]=] .. creature.slayer .. [[
          <td>]] .. creature.difficulty .. [[
          <td>]] .. creature.goldvalue .. [[
          <td>]] .. creature.hits .. [[
          <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
          <td>]] .. creature.wrestling .. [[
          <td>]] .. creature.armor .. creature.armormin .. [[
          <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
          <td>]] .. creature.parry .. [[
          <td>]] .. creature.atkspd .. [[
          <td>]] .. creature.magery .. [[
          <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
          <td>]] .. creature.poisontype .. [[
          <td>]] .. creature.poisoning .. [[
          <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
          <td>]] .. creature.stealth .. [[
          <td>]] .. creature.ai .. [[
          <td>]] .. creature.speed .. [[
          <td>]] .. creature.uniquescalar
    end
  end
  if position and position and string.find(string.lower(position), "end") then
    wikiTable = wikiTable .. "</table>"
  end
  return wikiTable
end

function p.listLocationGroup(frame)
  local locationGroup = frame.args[1]
  local position = frame.args[2]
  local wikiTable = ""

  local array = creatureArray

  if string.lower(locationGroup) == "strangelands" then
    array = mw.loadData("StrangelandsCreatureData")
  elseif string.lower(locationGroup) == "ships" then
    array = mw.loadData("ShipCreatureData")
  end

  if position and string.find(string.lower(position), "start") then
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
      <th>Name
      <th>Slayer
      <th>Difficulty
      <th>Gold Value
      <th>Hits
      <th colspan="2">Melee Dmg
      <th>Wrestling
      <th>Armor
      <th>Magic Resist
      <th>Parry
      <th>AtkSpd
      <th>Magery
      <th colspan="2">Spell Dmg
      <th>Poison
      <th>Poisoning
      <th>Poison Resist
      <th>Stealth
      <th>AI
      <th>Speed
      <th>Unique Scalar]]
  end

  for creatureName, creature in pairs(array) do
    if string.find(creature.location, "[[" .. locationGroup .. "]]") then
      wikiTable = wikiTable .. [=[<tr>
        <td>[[]=] .. creatureName .. [=[]]
        <td>]=] .. creature.slayer .. [[
        <td>]] .. creature.difficulty .. [[
        <td>]] .. creature.goldvalue .. [[
        <td>]] .. creature.hits .. [[
        <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
        <td>]] .. creature.wrestling .. [[
        <td>]] .. creature.armor .. creature.armormin .. [[
        <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
        <td>]] .. creature.parry .. [[
        <td>]] .. creature.atkspd .. [[
        <td>]] .. creature.magery .. [[
        <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
        <td>]] .. creature.poisontype .. [[
        <td>]] .. creature.poisoning .. [[
        <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
        <td>]] .. creature.stealth .. [[
        <td>]] .. creature.ai .. [[
        <td>]] .. creature.speed .. [[
        <td>]] .. creature.uniquescalar
    end
  end

  if position and position and string.find(string.lower(position), "end") then
    wikiTable = wikiTable .. "</table>"
  end

  return wikiTable
end

function p.listBosses(frame)
  local creatureArray = mw.loadData("WildCreatureData")

  local bossesToList = frame.args[1]   -- Main Boss
  local typeOfBoss = string.lower(bossesToList)

  local wikiTable = [[<table class="wikitable sortable" style="text-align:center">
    <th>Name
    <th>Location
    <th>Slayer
    <th>Difficulty
    <th>Base Hits
    <th colspan="2">Melee Damage
    <th>Wrestling
    <th>Armor
    <th>Magic Resist
    <th>Parry
    <th>Magery
    <th colspan="2">Spell Damage
    <th>Poison
    <th>Poisoning
    <th>Poison Resist
    <th>Stealth]]

  for creatureName, creature in pairs(creatureArray) do
    if string.lower(creature.bosstype) == typeOfBoss or typeOfBoss == "all" then
      if creature.bosstype ~= "" and creature.bosstype ~= "Boss Summon" then
        local imageType = ".jpg"
        local imagePrefix = ""

        if creature.bosstype == "Main Boss" then
          imageType = ".gif"
        elseif creature.bosstype == "Shrine Boss" then
          imageType = ".png"
        elseif creature.bosstype == "Omni Boss" then
          imageType = ".gif"
          imagePrefix = "omni"
        end

        local formmatedName = string.gsub(string.lower(creatureName), "%s+", "")
        local imageName = imagePrefix .. string.gsub(formmatedName, "%p+", "") .. imageType

        wikiTable = wikiTable .. [[<tr>
          <td>]] .. "[[File:" .. imageName .. "|link=" .. creatureName .. "]]<br />[[" .. creatureName .. [=[]]
          <td>]=] .. creature.location .. [=[
          <td>]=] .. creature.slayer .. [[
          <td>]] .. creature.difficulty .. [[
          <td>]] .. creature.hits .. [[
          <td colspan="2">]] .. creature.minmeleedmg .. creature.maxmeleedmg .. [[
          <td>]] .. creature.wrestling .. [[
          <td>]] .. creature.armor .. creature.armormin .. [[
          <td>]] .. creature.magicresist .. creature.magicresistmin .. [[
          <td>]] .. creature.parry .. [[
          <td>]] .. creature.magery .. [[
          <td colspan="2">]] .. creature.minspelldmg .. creature.maxspelldmg .. [[
          <td>]] .. creature.poisontype .. [[
          <td>]] .. creature.poisoning .. [[
          <td>]] .. creature.poisonresist .. creature.poisonresistmin .. [[
          <td>]] .. creature.stealth
      end
    end
  end

  wikiTable = wikiTable .. "</table>"

  return wikiTable
end

function p.listAbilities(frame)
  local tameableArray = mw.loadData("TameableCreatureData")
  local summonArray = mw.loadData("SummonableCreatureData")
  local abilityArray = mw.loadData("FollowerAbilityData")

  local creature = frame.args[1]       -- Warpig
  local followerType = frame.args[2]   -- Tameable/Summon
  local follower = ""

  if string.lower(followerType) ~= "summon" and tameableArray[creature] then
    follower = tameableArray[creature]
  elseif string.lower(followerType) ~= "tameable" and summonArray[creature] then
    follower = summonArray[creature]
  else
    follower = "undefined"
  end

  local wikiTable = ""

  if follower and follower ~= "undefined" then   -- List a follower's abilities if a follower is given
    wikiTable = [[<table class="wikitable" style="text-align:center">
      <th>Ability
      <th>Type
      <th>Description]]

    local abilities = {}

    for i, creatureAbility in pairs({ follower.cooldownability, follower.innateability, follower.passiveability }) do
      if creatureAbility and creatureAbility ~= "" and type(creatureAbility) == "table" then
        for index, ability in pairs(creatureAbility) do
          table.insert(abilities, ability)
        end
      elseif creatureAbility and creatureAbility ~= "" then
        table.insert(abilities, creatureAbility)
      end
    end

    for i, ability in pairs(abilities) do
      wikiTable = wikiTable .. [[<tr>
          <td>]] .. ability .. [[
          <td>]] .. abilityArray[ability].type .. [[
          <td style="text-align:left">]] .. abilityArray[ability].description
    end
  elseif follower == "undefined" then   -- List all abilities and the followers that have them
    wikiTable = [[<table class="wikitable sortable" style="text-align:center">
      <th>Ability
      <th>Type
      <th>Description
      <th>Creatures]]

    for abilityName, ability in pairs(abilityArray) do
      wikiTable = wikiTable .. [[<tr>
          <td>]] .. abilityName .. [[
          <td>]] .. ability.type .. [[
          <td style="text-align:left">]] .. ability.description .. [[
          <td>]]

      -- Find and list any followers with the ability
      for i, array in pairs({ tameableArray, summonArray }) do
        for followerName, follower in pairs(array) do
          if tameableArray[followerName] and not summonArray[followerName] or not tameableArray[followerName] and summonArray[followerName] then     -- Prevents listing duplicate creatures
            local followerAbilityType = ""

            if ability.type == "Cooldown" then
              followerAbilityType = follower.cooldownability
            elseif ability.type == "Innate" then
              followerAbilityType = follower.innateability
            elseif ability.type == "Passive" then
              followerAbilityType = follower.passiveability
            end

            if type(followerAbilityType) == "table" then
              for creatureName, value in pairs(followerAbilityType) do
                if value == abilityName then
                  wikiTable = wikiTable .. "[[" .. followerName .. "]]<br>"
                end
              end
            elseif followerAbilityType == abilityName then
              wikiTable = wikiTable .. "[[" .. followerName .. "]]<br>"
            end
          end
        end
      end

      -- Cut out the extra line break
      if string.find(wikiTable, "<br>") then
        wikiTable = string.reverse(wikiTable)
        wikiTable = string.sub(wikiTable, 5)
        wikiTable = string.reverse(wikiTable)
      end
    end
  else   -- If a follower is given but doesn't exist
    return '<h1 style="color:FireBrick;"><big>{{PAGENAME}} Template Error: No tamed/summoned follower found by the name "' ..
    creature .. '" (Case-sensitive)</big></h1>'
  end

  wikiTable = wikiTable .. "</table>"

  return wikiTable
end

function p.summonStatIncrease(frame)
  local summonArray = mw.loadData("SummonableCreatureData")

  local summonName = frame.args[1]   -- A summon given to display, defaults to {{PAGENAME}}
  local wikiTable = '<table class="wikitable" style="text-align:center">'

  local summon = summonArray[summonName]

  if summon then
    local stats = {
      ["hits"] = summon.unformattedhits,
      ["atkspd"] = summon.atkspd,
      ["mindmg"] = summon.mindmg,
      ["maxdmg"] = summon.maxdmg,
      ["wrestling"] = summon.wrestling,
      ["armor"] = summon.armor,
      ["magicresist"] = summon.magicresist
    }

    for statName, stat in pairs(stats) do
      if type(stats[statName]) == "string" then
        stats[statName] = 0
      end
    end

    wikiTable = wikiTable .. [=[<caption>[[]=] .. summonName .. [=[]]
      <th rowspan="2">Stat
      <th colspan="5"> Spirit Speak Skill
      <tr>
      <th>Base
      <th>80
      <th>100
      <th>120
      <th>150
      <tr>
      <th>Hits
      <td>]=] .. stats.hits .. [[
      <td>]] .. stats.hits * 1.5 * (80 / 100) .. [[
      <td>]] .. stats.hits * 1.5 * (100 / 100) .. [[
      <td>]] .. stats.hits * 1.5 * (120 / 100) .. [[
      <td>]] .. stats.hits * 1.5 * (150 / 100) .. [[
      <tr>
      <th>Attack Speed
      <td>]] .. stats.atkspd .. [[
      <td>]] .. stats.atkspd * 1.125 * (80 / 100) .. [[
      <td>]] .. stats.atkspd * 1.125 * (100 / 100) .. [[
      <td>]] .. stats.atkspd * 1.125 * (120 / 100) .. [[
      <td>]] .. stats.atkspd * 1.125 * (150 / 100) .. [[
      <tr>
      <th>]] .. summon.combat .. [[ Damage
      <td>]] .. stats.mindmg .. " - " .. stats.maxdmg .. [[
      <td>]] .. stats.mindmg * 1.25 * (80 / 100) .. " - " .. stats.maxdmg * 1.25 * (80 / 100) .. [[
      <td>]] .. stats.mindmg * 1.25 * (100 / 100) .. " - " .. stats.maxdmg * 1.25 * (100 / 100) .. [[
      <td>]] .. stats.mindmg * 1.25 * (120 / 100) .. " - " .. stats.maxdmg * 1.25 * (120 / 100) .. [[
      <td>]] .. stats.mindmg * 1.25 * (150 / 100) .. " - " .. stats.maxdmg * 1.25 * (150 / 100) .. [[
      <tr>
      <th>Wrestling
      <td>]] .. stats.wrestling .. [[
      <td>]] .. stats.wrestling * 1.25 * (80 / 100) .. [[
      <td>]] .. stats.wrestling * 1.25 * (100 / 100) .. [[
      <td>]] .. stats.wrestling * 1.25 * (120 / 100) .. [[
      <td>]] .. stats.wrestling * 1.25 * (150 / 100) .. [[
      <tr>
      <th>Armor
      <td>]] .. stats.armor .. [[
      <td>]] .. stats.armor + (25 * (80 / 100)) .. [[
      <td>]] .. stats.armor + (25 * (100 / 100)) .. [[
      <td>]] .. stats.armor + (25 * (120 / 100)) .. [[
      <td>]] .. stats.armor + (25 * (150 / 100)) .. [[
      <tr>
      <th>Magic Resist
      <td>]] .. stats.magicresist .. [[
      <td>]] .. stats.magicresist + (50 * (80 / 100)) .. [[
      <td>]] .. stats.magicresist + (50 * (100 / 100)) .. [[
      <td>]] .. stats.magicresist + (50 * (120 / 100)) .. [[
      <td>]] .. stats.magicresist + (50 * (150 / 100)) .. [[
      </table>]]

    return wikiTable
  else
    return '<h1 style="color:FireBrick;"><big>CreatureTable Template Error: No summoned follower found by the name "' ..
    summonName .. '" (Case-sensitive)</big></h1>'
  end
end

return p