View Single Post
07-03-12, 01:40 PM   #3
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
(I should better just contribute straight to Wowpedia, instead of posting this)
  • Wowhead apparently already has the new battlePetAbil link type in their database

    Code:
    "|cff4e96f7|HbattlePetAbil:abilityID:maxHealth:power:speed|h[text]|h|r"

    where 5893399 is my Level 1 [Mr. Chilly]'s unique petID
    Lua Code:
    1. PetJournal_GetPetAbilityHyperlink(abilityID[, petID])
    2.  
    3. PetJournal_GetPetAbilityHyperlink(119, 5893399)
    4. >> "|cff4e96f7|HbattlePetAbil:119:174:15:15|h[Scratch]|h|r"
    5.  
    6. PetJournal_GetPetAbilityHyperlink(119)
    7. >> "|cff4e96f7|HbattlePetAbil:119:100:0:0|h[Scratch]|h|r"

  • C_PetJournal.GetAbilityInfoByID
    Code:
    id, name, icon, maxCooldown, unparsedDescription, numTurns, petType, noStrongWeakHints = C_PetBattles.GetAbilityInfoByID(abilityID)
    Lua Code:
    1. 7, "Alexander's Hand", "INTERFACE\\ICONS\\ABILITY_CRITICALSTRIKE.BLP", 0, "Rushes at the enemy to inflict damage.", 1, 5, false
    2. 70, "Heal Back Line Test", "INTERFACE\\ICONS\\SPELL_HOLY_HEAL.BLP", 2, "Heal's back line 50$ but has a 2-turn cooldown", 1, 1, false
    3. 71, "Damage Test", "INTERFACE\\ICONS\\SPELL_FIRE_FIREBALL.BLP", 0, "", 1, 7, false
    4. 72, "MultiEffect Test", "INTERFACE\\ICONS\\SPELL_FIRE_IMMOLATION.BLP", 0, "", 1, 1, false
    5. 73, "Multi Turn Test", nil, 0, "Bites the target$ dealing [StandardDamage(1$1)] damage immediately$ then [StandardDamage(2$1)] damage on the next turn.\r\n\r\nLasts [numTurns()] |4turn:turns;.", 2, 2, false
    6. 74, "MultiEffect and Multi Turn Test", nil, 0, "", 2, 2, false
    7. 77, "Strong Trap", "INTERFACE\\ICONS\\INV_PET_PETTRAP02.BLP", 0, "Attempt to catch a pet below 35% health.", 1, 1, true
    8. 78, "Apply Timed Dot Test", nil, 5, "", 1, 1, false
    9. 79, "Aura Damage10 Test", nil, 0, "", 0, nil, false
    10. 80, "Apply Bomb Test", nil, 0, "", 1, 1, false
    11. 81, "Aura Bomb 75 Test", nil, 0, "", 3, nil, false
    12. 82, "Apply Dot until cancel test", nil, 0, "", 1, 7, false
    13. 83, "Apply Pad Aura Test", "INTERFACE\\ICONS\\ABILITY_WARLOCK_WHIPLASH.BLP", 0, "", 1, 3, false
    14. 84, "PadAuraTest", "INTERFACE\\ICONS\\ABILITY_THUNDERBOLT.BLP", 0, "", 0, nil, false
    15. 85, "Apply Stun test", "INTERFACE\\ICONS\\SPELL_HOLY_CRUSADERSTRIKE.BLP", 0, "", 1, 2, false
    16. 86, "Stun Aura Test", "INTERFACE\\ICONS\\SPELL_HOLY_FISTOFJUSTICE.BLP", 0, "asdfasdfasdf", 1, nil, false
    17. 87, "Apply Swap Lock", "INTERFACE\\ICONS\\ABILITY_WARLOCK_ANCIENTGRIMOIRE.BLP", 0, "", 1, 10, false
    18. 88, "Swap Lock Aura", "INTERFACE\\ICONS\\ABILITY_AMBUSH.BLP", 0, "", 0, nil, false
    19. 97, "Stun Shot", nil, 0, "", 1, 7, false
    20. 110, "Bite", "INTERFACE\\ICONS\\ABILITY_DRUID_FEROCIOUSBITE.BLP", 0, "Bites at the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 8, false
    21. 111, "Punch", "INTERFACE\\ICONS\\ABILITY_PALADIN_BLESSEDHANDS.BLP", 0, "Bashes the enemy with your fists$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 1, false
    22. 112, "Peck", "INTERFACE\\ICONS\\INV_MISC_BIRDBECK_01.BLP", 0, "Pokes at the enemy with a sharp beak$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 3, false
    23. 113, "Burn", "INTERFACE\\ICONS\\INV_AMMO_FIRETAR.BLP", 0, "Burns the enemy with a blast of fire$ dealing [StandardDamage(1$1)] Elemental damage.", 1, 7, false
    24. 114, "Beam", "INTERFACE\\ICONS\\INV_STAFF_53.BLP", 0, "Blasts the enemy with a beam of arcane power$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    25. 115, "Breath", "INTERFACE\\ICONS\\SPELL_FIRE_FELFLAMEBREATH.BLP", 0, "Overwhelms the enemy with draconic breath$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 2, false
    26. 116, "Zap", "INTERFACE\\ICONS\\SPELL_NATURE_STORMREACH.BLP", 0, "Launches an electrical bolt at the target$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 10, false
    27. 117, "Infected Claw", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_10.BLP", 0, "Tears at the enemy with plagued claws$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 4, false
    28. 118, "Water Jet", "INTERFACE\\ICONS\\INV_MISC_VOLATILEWATER.BLP", 0, "Blasts the enemy with a spray of water$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 9, false
    29. 119, "Scratch", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_04.BLP", 0, "Scratches the enemy$ dealing [StandardDamage(1$1)] [School()] Damage.", 1, 5, false
    30. 120, "Howling Blast", "INTERFACE\\ICONS\\SPELL_FROST_ARCTICWINDS.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to the enemy. \r\n\r\nDeals [StandardDamage(1$2)] additional damage if the target is |cFF0070DDChilled|r.\r\n\r\nDesigner Note: \r\n(Future Version) - Deals [StandardDamage(1$2)/2] additional damage to the target's team if the target is |cFF0070DDChilled|r.", 1, 7, false
    31. 121, "Death Coil [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_DEATHCOIL.BLP", 0, "Deals [StandardDamage(1$1)] Undead damage and heals the user for [points(1$2)]% of the damage dealt.", 1, 4, false
    32. 122, "Tail Sweep [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_MONSTERTAIL_05.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nDeals double damage if the user goes last.", 1, 2, false
    33. 123, "Healing Wave", "INTERFACE\\ICONS\\SPELL_NATURE_HEALINGWAVEGREATER.BLP", 3, "Restores [StandardDamage(1$1)] health to the user.", 1, 9, false
    34. 124, "Rampage", "INTERFACE\\ICONS\\ABILITY_HUNTER_KILLCOMMAND.BLP", 0, "Goes on rampage for three turns$ dealing high damage each turn.", 3, 8, false
    35. 125, "Stun Test 2.0", "INTERFACE\\ICONS\\ABILITY_WARLOCK_SOULSWAP.BLP", 0, "TEST: Patty Mac Stun", 1, 4, false
    36. 131, "Stun Aura Test 2.0", nil, 0, "", 0, nil, false
    37. 132, "Custom Scripted Effect Test", "INTERFACE\\ICONS\\ABILITY_BACKSTAB.BLP", 0, "", 1, 1, false
    38. 133, "Aura - Damage Shield 2.0", nil, 0, "", 0, nil, false
    39. 134, "Damage Shield 2.0test", nil, 0, "", 1, 1, false
    40. 135, "Pristine Trap", "INTERFACE\\ICONS\\INV_PET_PETTRAP.BLP", 0, "Attempt to catch a pet below 35% health.", 1, 1, true
    41. 149, "Heal Test 2.0", "INTERFACE\\ICONS\\ABILITY_SHAMAN_HEALINGTIDE.BLP", 0, "", 1, 5, false
    42. 150, "Custom Scripted Turn Test", "INTERFACE\\ICONS\\ABILITY_MAGE_FIRESTARTER.BLP", 0, "", 1, 5, false
    43. 151, "Poison Fang", "INTERFACE\\ICONS\\SPELL_NATURE_NULLIFYPOISON.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 8, false
    44. 152, "Poison Fang [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_NULLIFYPOISON.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and deals [StandardDamage(1$1$151)] additional [School()] damage per round for 5 rounds.", 1, 8, false
    45. 153, "Attack Reduction", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Your damage has been reduced by 25%.", 1, nil, true
    46. 154, "Speed Reduction", "INTERFACE\\ICONS\\PETBATTLE_SPEED.BLP", 0, "Your speed has been reduced by 30%.", 0, nil, true
    47. 155, "Hiss", "INTERFACE\\ICONS\\ABILITY_HUNTER_SNAKETRAP.BLP", 0, "Deals [StandardDamage(1$2)] [School()] damage and reduces the target's speed by 25% for 4 turns.", 1, 8, false
    48. 156, "Vicious Fang [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_HUNTER_COBRASTRIKES.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. Damage increases by [5*AttackBonus()] each time it hits. Max [25 *AttackBonus()] [School()] damage.\r\n\r\nIf the target is poisoned$ it always deals maximum damage.", 1, 8, false
    49. 157, "Jacob's Test Ability", "INTERFACE\\ICONS\\ABILITY_SEAL.BLP", 0, "", 1, 3, true
    50. 158, "Counterstrike [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_PARRY.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. \r\n\r\nDeals [StandardDamage(1$2)] additional [School()] damage if you were struck this turn.", 1, 1, false
    51. 159, "Burrow", "INTERFACE\\ICONS\\ABILITY_DEATHKNIGHT_DESECRATEDGROUND.BLP", 2, "Burrow under the ground$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 8, false
    52. 160, "Consume [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_SOULLEECH_3.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nThe user is healed for [points(1$2)]% of the damage dealt.", 1, 4, false
    53. 161, "Adrenaline", "INTERFACE\\ICONS\\PETBATTLE_SPEED.BLP", 0, "Your speed has been increased by 100%.", 1, nil, false
    54. 162, "Adrenaline Rush", "INTERFACE\\ICONS\\ABILITY_ROGUE_SPRINT.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and increases your speed by 100% for 4 turns.", 1, 5, false
    55. 163, "Stampede", "INTERFACE\\ICONS\\INV_MISC_FOOT_CENTAUR.BLP", 0, "Starts a stampede$ causing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)] [School()] damage every turn. Lasts [numTurns()] turns. \r\n\r\nOpponents struck by the stampede take double damage for [duration(1$4)] rounds.", 3, 5, false
    56. 164, "Crouch", "INTERFACE\\ICONS\\ABILITY_DRUID_PROWL.BLP", 0, "Your damage taken has been reduced by 50%.", 1, nil, false
    57. 165, "Crouch", "INTERFACE\\ICONS\\ABILITY_DRUID_PROWL.BLP", 4, "The user lowers its body close to the ground$ reducing all damage taken by 50% for 2 turns.", 1, 5, false
    58. 166, "Nut Barrage", "INTERFACE\\ICONS\\INV_MISC_FOOD_PINENUT.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to the current pet every turn.", 1, 5, false
    59. 167, "Nut Barrage", "INTERFACE\\ICONS\\INV_MISC_FOOD_PINENUT.BLP", 3, "Hurls nuts at the enemy$ dealing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)] [School()] damage. \r\n\r\nNuts continue to fall on the enemy team dealing [StandardDamage(1$1$ 166)] [School()] damage each turn for 3 turns.", 1, 5, false
    60. 168, "Healing Flame [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_VOLATILEFIRE.BLP", 0, "Restores [StandardDamage(1$1)] health plus half of the last hit taken by the user.", 1, 2, false
    61. 169, "Deep Breath [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_HEAD_DRAGON_RED.BLP", 0, "Takes one turn to breathe in deeply.  \r\n\r\nThe next turn the user unleashes a devastating breath attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 2, false
    62. 170, "Lift-Off", "INTERFACE\\ICONS\\ABILITY_DRUID_FLIGHTFORM.BLP", 0, "Fly up high$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 3, false
    63. 171, "Scorched Earth", "INTERFACE\\ICONS\\SPELL_SHAMAN_STORMEARTHFIRE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to any pet who enters battle.\r\n\r\nAll pets count as |cFFFF2020Burning|r.", 0, 2, false
    64. 172, "Scorched Earth", "INTERFACE\\ICONS\\SPELL_SHAMAN_STORMEARTHFIRE.BLP", 5, "Scorches the ground$ dealing [StandardDamage(1$1)] [School()] damage and causing all pets who enter or leave battle to take [StandardDamage(1$1$171)] [School(171)] damage.\r\n\r\nLasts [duration(1$2)] rounds.", 1, 2, false
    65. 173, "Cauterize", "INTERFACE\\ICONS\\INV_MISC_RING_FIRELANDS_3.BLP", 0, "Restores [StandardDamage(1$1)] health plus half of the last hit taken by the user.", 1, 7, false
    66. 174, "Stunned", "INTERFACE\\ICONS\\SPELL_FROST_STUN.BLP", 0, "Stunned.\r\n\r\nUnable to give this pet commands.", 1, nil, true
    67. 175, "Volcano", "INTERFACE\\ICONS\\ABILITY_RHYOLITH_VOLCANO.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Elemental damage and stunning the target for 1 round.", 3, nil, false
    68. 176, "Volcano [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_RHYOLITH_VOLCANO.BLP", 0, "Causes the ground beneath the enemy team to tremble. \r\n\r\nAfter 3 turns$ the ground erupts$ causing the current enemy pet to take [StandardDamage(3$1$175)] [School()] damage and be stunned for [duration(3$2$175)] turn.", 1, 7, false
    69. 177, "Immolate", "INTERFACE\\ICONS\\SPELL_FIRE_IMMOLATION.BLP", 0, "Deals [StandardDamage(1$1)] Elemental damage every turn.\r\n\r\n|cFFFF2020Burning|r", 1, 7, false
    70. 178, "Immolate", "INTERFACE\\ICONS\\SPELL_FIRE_IMMOLATION.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage instantly.  Deals [StandardDamage(1$1$177)] additional [petTypeName(abilityPetType())] damage per turn for [duration(1$2)] turns.", 1, 7, false
    71. 179, "Conflagrate", "INTERFACE\\ICONS\\SPELL_FIRE_FIREBALL.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nDeals double damage if the target is already |cFFFF2020Burning|r.", 1, 7, false
    72. 184, "Quills", "INTERFACE\\ICONS\\INV_FEATHER_11.BLP", 0, "Flings 1-2 Quills at the enemy$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nHits an additional time if the user attacks first.", 1, 3, false
    73. 185, "Reckless Strike", "INTERFACE\\ICONS\\ABILITY_HUNTER_ANIMALHANDLER.BLP", 0, "Your damage taken has been increased by 25%.", 1, nil, true
    74. 186, "Reckless Strike", "INTERFACE\\ICONS\\ABILITY_HUNTER_ANIMALHANDLER.BLP", 0, "Deals [StandardDamage(1$1)] Flying damage$ but increases the damage you take for [duration(1$2)] turn by 25%.", 1, 3, false
    75. 187, "Accuracy", "INTERFACE\\ICONS\\ABILITY_HUNTER_SILENTHUNTER.BLP", 0, "Your accuracy has been increased by 25%.", 1, nil, false
    76. 188, "Accuracy", "INTERFACE\\ICONS\\ABILITY_HUNTER_SILENTHUNTER.BLP", 0, "Increases your chance to hit by 25% for 3 turns.", 1, 3, false
    77. 189, "Cyclone", "INTERFACE\\ICONS\\SPELL_NATURE_CYCLONE.BLP", 0, "Has a [accuracy(1$1)]% chance to deal [StandardDamage(1$1)] [School()] damage to your team each turn.", 1, 3, false
    78. 190, "Cyclone", "INTERFACE\\ICONS\\SPELL_NATURE_CYCLONE.BLP", 10, "Creates a cyclone which has a 25% chance to deal [StandardDamage(1$1$189)] [School()] damage to the enemy team each round.\r\n\r\nLasts 10 rounds.", 1, 3, false
    79. 193, "Flank", "INTERFACE\\ICONS\\ABILITY_HUNTER_CROSSFIRE.BLP", 0, "Flanks the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nHits an additional time if the user attacks first.", 1, 5, false
    80. 194, "Metabolic Boost", "INTERFACE\\ICONS\\ABILITY_ROGUE_SPRINT.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and increases your speed by 100% for [duration(1$2)] round.", 1, 6, false
    81. 195, "Metabolic Boost", "INTERFACE\\ICONS\\ABILITY_ROGUE_SPRINT.BLP", 0, "Your speed has been increased by 100%.", 1, nil, false
    82. 196, "Adrenaline Glands", "INTERFACE\\ICONS\\INV_MISC_ORGAN_02.BLP", 0, "Chance to critically strike increased by 50%.\r\nAccuracy reduced by 25%.", 1, nil, false
    83. 197, "Adrenal Glands", "INTERFACE\\ICONS\\INV_MISC_ORGAN_02.BLP", 0, "Increases your critical strike chance by 50% and decreases your accuracy by 25% for 5 rounds.", 1, 6, false
    84. 198, "Zergling Rush", "INTERFACE\\ICONS\\SPELL_SHADOW_SUMMONFELHUNTER.BLP", 0, "Starts a Zergling Rush$ causing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)] [School()] damage every turn. Lasts [numTurns()] turns. \r\n\r\nOpponents struck by the rush take double damage for [duration(1$4)] rounds.", 3, 6, false
    85. 202, "Thrash", "INTERFACE\\ICONS\\SPELL_DRUID_THRASH.BLP", 0, "Wildly flails at the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 8, false
    86. 203, "Lightning Storm", "INTERFACE\\ICONS\\INV_MISC_STORMLORDSFAVOR.BLP", 0, "All pets deal bonus damage each time they attack. \r\n\r\nMechanical abilities deal 25% additional damage.", 0, 10, true
    87. 204, "Call Lightning", "INTERFACE\\ICONS\\INV_MISC_STORMLORDSFAVOR.BLP", 5, "Deals [StandardDamage(1$1)] [School()] damage and causes a Lightning Storm for [duration(1$2)] turns.\r\n\r\nDuring a Lightning Storm$ all pets deal bonus damage on each attack and Mechanical abilities deal 25% additional damage.", 1, 10, false
    88. 205, "Snowstorm", "INTERFACE\\ICONS\\SPELL_FROST_ICESTORM.BLP", 0, "Reduces the cooldown of all abilities by 1 turn. [NYI]\r\n\r\nAll pets are considered |cFF0070DDChilled|r.", 1, 7, true
    89. 206, "Call Blizzard", "INTERFACE\\ICONS\\SPELL_FROST_ICESTORM.BLP", 5, "Deals [StandardDamage(1$1)] [School()] damage and causes a Blizzard. \r\n\r\nDuring a Blizzard$ the cooldown of all pet abilities are reduced by 1 turn[NYI] and all pets are considered |cFF0070DDChilled|r.", 1, 7, false
    90. 207, "Supercharged", "INTERFACE\\ICONS\\SPELL_CHARGEPOSITIVE.BLP", 0, "Damage increased by 150%.", 0, nil, false
    91. 208, "Supercharge", "INTERFACE\\ICONS\\SPELL_CHARGEPOSITIVE.BLP", 2, "Increases the damage of your next attack by 150%.", 1, 10, false
    92. 209, "Ion Cannon", "INTERFACE\\ICONS\\INV_MISC_ENGGIZMOS_12.BLP", 0, "Instantly deals [StandardDamage(1$1)] Mechanical damage. The user must recharge for two turns afterwards.\r\n\r\nWhile recharging$ you cannot perform any other actions.", 3, 10, false
    93. 210, "Shadow Slash", "INTERFACE\\ICONS\\INV_JEWELCRAFTING_SHADOWSPIRIT_02.BLP", 0, "Slashes at the target with dark energy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 4, false
    94. 211, "Siphon Life", "INTERFACE\\ICONS\\SPELL_SHADOW_REQUIEM.BLP", 0, "Deals [StandardDamage(1$1)] Undead damage every turn. The caster of the aura is healed for [points(1$2)]% of the damage dealt.", 1, 4, false
    95. 212, "Siphon Life [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_REQUIEM.BLP", 0, "Deals [StandardDamage(1$1$211)*duration(1$1)] [School()] damage over [duration(1$1)] turns. The user is healed for [points(1$2$211)]% of the damage dealt.", 1, 4, false
    96. 213, "Death and Decay", "INTERFACE\\ICONS\\SPELL_SHADOW_DEATHANDDECAY.BLP", 0, "Deals [StandardDamage(1$1)] Undead damage to the current pet every turn.", 1, nil, false
    97. 214, "Death and Decay", "INTERFACE\\ICONS\\SPELL_SHADOW_DEATHANDDECAY.BLP", 0, "Deals [StandardDamage(1$1$213)] [School()] damage to the enemy's active pet every turn for [duration(1$1)] turns.", 1, 4, false
    98. 215, "Inner Vision", "INTERFACE\\ICONS\\SPELL_ARCANE_FOCUSEDPOWER.BLP", 0, "Damage increased by 100%.", 1, nil, false
    99. 216, "Inner Vision", "INTERFACE\\ICONS\\SPELL_ARCANE_FOCUSEDPOWER.BLP", 0, "Increases the damage of your next attack by 100%.", 1, 6, false
    100. 217, "Curse of Doom", "INTERFACE\\ICONS\\SPELL_SHADOW_AURAOFDARKNESS.BLP", 0, "Deals 60 damage when the effect ends.", 5, nil, false
    101. 218, "Curse of Doom", "INTERFACE\\ICONS\\SPELL_SHADOW_AURAOFDARKNESS.BLP", 0, "Deals [StandardDamage(5$1$217)] [School()] damage after [numTurns(217)] turns.", 1, 4, false
    102. 219, "Jab", "INTERFACE\\ICONS\\ABILITY_MONK_JAB.BLP", 0, "Jabs at the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 1, false
    103. 220, "Jacob's Test Aura", "INTERFACE\\ICONS\\INV_INSCRIPTION_PIGMENT_WHITE.BLP", 0, "", 1, nil, false
    104. 221, "Takedown", "INTERFACE\\ICONS\\ABILITY_MONK_BLACKOUTKICK.BLP", 0, "Takes down an enemy$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nDeals double damage if the target is |cFF808080Stunned|r.", 1, 1, false
    105. 222, "Focus Chi", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage increased by 100%.", 1, nil, false
    106. 223, "Focus Chi", "INTERFACE\\ICONS\\PANDARENRACIAL_INNERPEACE.BLP", 0, "Increases the damage of your next attack by 100%.", 1, 1, false
    107. 224, "Staggered Steps", "INTERFACE\\ICONS\\ABILITY_MONK_STANDINGKICK.BLP", 0, "Your damage taken has been reduced by 50%.", 1, nil, false
    108. 225, "Staggered Steps", "INTERFACE\\ICONS\\ABILITY_MONK_STANDINGKICK.BLP", 4, "The user shrugs off attacks$ reducing all damage taken by 50% for 2 turns.", 1, 1, false
    109. 226, "Fury of a Thousand Fists [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MONK_PALMSTRIKE.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and has a [accuracy(1$2)]% chance to stun the target for [duration(1$2)] turn. \r\n\r\nThe chance to stun becomes 100% if the target is Blinded.", 1, 1, false
    110. 227, "Blackout Kick", "INTERFACE\\ICONS\\ABILITY_MONK_ROUNDHOUSEKICK.BLP", 5, "Stun the target for [duration(1$1)] turns.", 1, 1, false
    111. 228, "Tongue Lash", "INTERFACE\\ICONS\\INV_MISC_FOOD_MEAT_RAW_08.BLP", 0, "Licks the enemy 1-2 times$  dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nHits an additional time if the user attacks first.", 1, 5, false
    112. 229, "Cleansing Rain", "INTERFACE\\ICONS\\INV_ELEMENTAL_PRIMAL_WATER.BLP", 0, "Hostile damage over time effects last one less turn.\r\n\r\nAquatic pets deal 25% more damage.", 0, 9, true
    113. 230, "Cleansing Rain", "INTERFACE\\ICONS\\INV_ELEMENTAL_PRIMAL_WATER.BLP", 5, "Restores [StandardHealing(1$1)] health to your team and calls down a cleansing rain for [duration(1$4)] rounds. \r\n\r\nDuring a cleansing rain$  the duration of hostile damage over time effects is reduced by 1 round and \r\nAquatic pets deal 25% more damage.", 1, 9, false
    114. 231, "Swarm of Flies", "INTERFACE\\ICONS\\SPELL_SHADOW_CARRIONSWARM.BLP", 0, "Deals [StandardDamage(1$1)] Critter damage to the current pet every turn.", 1, nil, false
    115. 232, "Swarm of Flies", "INTERFACE\\ICONS\\SPELL_SHADOW_CARRIONSWARM.BLP", 3, "A swarm of flies attacks the enemy team$ dealing [StandardDamage(1$1$231)] Beast damage every turn for [duration(1$1)] turns.", 1, 5, false
    116. 233, "Frog Kiss", "INTERFACE\\ICONS\\SPELL_SHADOW_SOOTHINGKISS.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. Increases by [StandardDamage(1$2)] each time it is used. \r\n\r\nIf the user kisses [points(1$2)] times in a row$ the target is also turned into a Frog and stunned for [duration(1$2)] turn.", 1, 9, false
    117. 234, "Jacob's Test Aura 2", "INTERFACE\\ICONS\\SPELL_MAGIC_POLYMORPHRABBIT.BLP", 0, "Every time you are damaged$ you will heal for [points(getProcIndex(PROC_ON_DAMAGE_TAKEN)$ 1)]% of that damage. Every time you attack$ you will take [points(getProcIndex(PROC_ON_DAMAGE_DEALT)$ 1)]% of that damage.", 2, nil, false
    118. 235, "Jacob's Test Aura 3", "INTERFACE\\ICONS\\SPELL_NATURE_POLYMORPH_COW.BLP", 0, "Lasts forever increasing speed.", 1, nil, false
    119. 236, "Elusive", "INTERFACE\\ICONS\\ICON_PETFAMILY_CRITTER.BLP", 0, "Critters break out of crowd control effects more quickly.", 0, 5, true
    120. 237, "Enrage", "INTERFACE\\ICONS\\ICON_PETFAMILY_BEAST.BLP", 0, "Beasts deal 25% extra damage below half health.", 0, 8, true
    121. 238, "Recovery", "INTERFACE\\ICONS\\ICON_PETFAMILY_HUMANOID.BLP", 0, "Humanoids recover [points(1$1$726)]% of their maximum health every time they attack.", 0, 1, true
    122. 239, "Swiftness", "INTERFACE\\ICONS\\ICON_PETFAMILY_FLYING.BLP", 0, "Flying creatures gain 50% extra speed while above 50% health.", 1, 3, true
    123. 240, "Purity", "INTERFACE\\ICONS\\ICON_PETFAMILY_WATER.BLP", 0, "The duration of harmful damage over time effects is reduced on Aquatic pets.", 0, 9, true
    124. 241, "Weather Immune", "INTERFACE\\ICONS\\ICON_PETFAMILY_ELEMENTAL.BLP", 0, "Elementals ignore all weather effects.", 0, 7, true
    125. 242, "Damned", "INTERFACE\\ICONS\\ICON_PETFAMILY_UNDEAD.BLP", 0, "Undead pets return to life for one round when killed.", 1, 4, false
    126. 243, "Spellshield", "INTERFACE\\ICONS\\ICON_PETFAMILY_MAGICAL.BLP", 0, "Magic pets cannot be dealt more than 50% of their maximum health in one attack.", 0, 6, true
    127. 244, "Failsafe", "INTERFACE\\ICONS\\ICON_PETFAMILY_MECHANICAL.BLP", 0, "Comes back to life once per battle$ returning to 25% health.", 0, 10, true
    128. 245, "Execute", "INTERFACE\\ICONS\\ICON_PETFAMILY_DRAGON.BLP", 0, "Dragons deal 50% additional damage on the next round after bringing a target's health below 25%.", 0, 2, true
    129. 246, "Hibernation", "INTERFACE\\ICONS\\ABILITY_HIBERNATION.BLP", 0, "Hibernating. \r\nRestores increasing health every turn.", 3, nil, false
    130. 247, "Hibernate", "INTERFACE\\ICONS\\ABILITY_HIBERNATION.BLP", 0, "Fall asleep$ restoring [points(1$1$246)] health on the first turn$ [points(2$1$246)] health on the second$ then [points(3$1$ 246)] health on the third.\r\n\r\nWhile Hibernating you cannot swap pets.", 1, 8, false
    131. 248, "Rooted", "INTERFACE\\ICONS\\SPELL_NATURE_SLOW.BLP", 0, "This pet cannot be swapped.", 0, nil, true
    132. 249, "Grasp", "INTERFACE\\ICONS\\INV_JEWELCRAFTING_TRUESILVERCRAB.BLP", 0, "Grabs the target$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nThe target cannot swap for [duration(1$2)] turns.", 1, 9, false
    133. 250, "Spiderling Swarm", "INTERFACE\\ICONS\\SPELL_NATURE_INSECT_SWARM2.BLP", 0, "Swarms the enemy with spiderlings$ dealing [StandardDamage(1$1)*2] [School()] damage. \r\n\r\nDeals double damage if the target is |cFFa4A4A4Webbed|r.", 1, 8, false
    134. 251, "Uncanny Luck", "INTERFACE\\ICONS\\RACIAL_DWARF_FINDTREASURE.BLP", 0, "Accuracy increased by 50%.\r\nCritical strike chance increased by 25%.", 1, nil, false
    135. 252, "Uncanny Luck", "INTERFACE\\ICONS\\RACIAL_DWARF_FINDTREASURE.BLP", 0, "Increases your team's accuracy by 50% and critical strike chance by 25% for [duration(1$1)] rounds.", 1, 5, false
    136. 253, "Comeback", "INTERFACE\\ICONS\\ABILITY_HUNTER_SURVIVALINSTINCTS.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. \r\n\r\nDeals [StandardDamage(1$2)] additional damage if the user has lower health than the target.", 1, 5, false
    137. 254, "Tranquility", "INTERFACE\\ICONS\\SPELL_NATURE_TRANQUILITY.BLP", 0, "Fills the area with peace$ causing your active pet to restore [points(1$1$255)] health every turn.\r\n\r\nLasts [duration(1$1)] turns.", 1, 5, true
    138. 255, "Tranquility", "INTERFACE\\ICONS\\SPELL_NATURE_TRANQUILITY.BLP", 0, "Restores [points(1$1)] health per turn.", 1, nil, false
    139. 256, "Call Darkness [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_TWILIGHT.BLP", 5, "A shadow falls across the battlefield$ dealing [StandardDamage(1$1)] [School()] damage and turning the weather to Darkness for [duration(1$1)] turns.\r\n\r\nDuring Darkness$ all pets are considered |cFF0070DDBlinded|r and all healing recieved is reduced by 100%.", 1, 1, false
    140. 257, "Darkness", "INTERFACE\\ICONS\\SPELL_SHADOW_TWILIGHT.BLP", 0, "Healing received reduced by 100%.\r\n\r\n|cFF0070DDBlinded|r by the darkness.", 1, nil, false
    141. 258, "Starfall", "INTERFACE\\ICONS\\ABILITY_DRUID_STARFALL.BLP", 5, "Deals [StandardDamage(1$1)] [School()] damage to all enemy pets$ restores [StandardDamage(1$4)] health to all allies and turns the weather into Moonlight for [duration(1$7)] turns.\r\n\r\nDuring Moonlight$ all pets receive 100% additional healing and Magic abilities deal 25% additional damage.", 1, 2, false
    142. 259, "Invisibility [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MAGE_INVISIBILITY.BLP", 0, "After two turns$ you will become invisible for one turn$ becoming unable to be attacked.", 1, 6, false
    143. 260, "Fading", "INTERFACE\\ICONS\\SPELL_MAGIC_LESSERINVISIBILTY.BLP", 0, "Will become invisible in [remainingDuration \r\n()] turns.", 3, nil, false
    144. 261, "Invisible", "INTERFACE\\ICONS\\ABILITY_MAGE_INVISIBILITY.BLP", 0, "Invisible.\r\nImmune to normal attacks.", 1, nil, false
    145. 262, "Crystal Overload", "INTERFACE\\ICONS\\INV_MISC_CRYSTALEPIC.BLP", 0, "You deal 100% additional damage$ but your attack will deal 25% of the original damage to you.", 0, nil, false
    146. 263, "Crystal Overload", "INTERFACE\\ICONS\\INV_MISC_CRYSTALEPIC.BLP", 0, "Your next attack deals double damage$ but deals half the original damage to you.", 1, 7, false
    147. 264, "Grounded", "INTERFACE\\ICONS\\ITEM_EARTHENMIGHT.BLP", 0, "Grounded.", 1, nil, true
    148. 265, "Boulder Toss [NYI Visual]", "INTERFACE\\ICONS\\INV_STONE_WEIGHTSTONE_08.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType()] damage. \r\n\r\nCan hit flying pets and will bring them to the ground for two turns.", 1, 7, false
    149. 267, "Photosynthesis", "INTERFACE\\ICONS\\SPELL_NATURE_RESISTNATURE.BLP", 0, "Restores [points(1$1)] health per turn.\r\n\r\nTwice as effective in Sunny weather.", 1, nil, false
    150. 268, "Photosynthesis", "INTERFACE\\ICONS\\SPELL_NATURE_RESISTNATURE.BLP", 3, "Restores [StandardAttack(1$1$267)] healing every turn.  Lasts [duration(1$1)] turns.\r\n\r\nTwice as effective in sunny weather.", 1, 7, true
    151. 270, "Glowing Toxin [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_SLOWPOISON.BLP", 0, "Deals [points(1$1)]% of the target's max health as damage every turn.\r\n\r\nLasts [duration(1$1)] turns.", 1, 3, false
    152. 271, "Glowing Toxin", "INTERFACE\\ICONS\\SPELL_NATURE_SLOWPOISON.BLP", 0, "Deals [points(1$1)]% of target's maximum health as damage every turn.", 1, 3, false
    153. 272, "Expunge [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_ROGUE_DEVIOUSPOISONS.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType()]. Damage increased by [StandardDamage(1$1)] [petTypeName(abilityPetType()] damage for each Poison effect on the target.", 1, 6, false
    154. 273, "Wish [NYI Visual]", "INTERFACE\\ICONS\\SPELL_HOLY_TESTOFFAITH.BLP", 5, "Next turn$ your active pet will be healed by 50%.", 1, 6, false
    155. 274, "Wish", "INTERFACE\\ICONS\\SPELL_HOLY_TESTOFFAITH.BLP", 0, "Next turn your front pet will be healed by 50%.", 2, nil, false
    156. 275, "Nerfbat", "INTERFACE\\ICONS\\INV_SWORD_139.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.\r\n\r\nDeals double damage if the user has lower health.", 1, 9, false
    157. 276, "Swallow You Whole", "INTERFACE\\ICONS\\TRADE_ARCHAEOLOGY_SHARK JAWS.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nDouble if the target is below 25% health.", 1, 9, false
    158. 277, "Life Exchange [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHAMAN_SPIRITLINK.BLP", 0, "Equalizes the health between the user and his enemy.", 1, 6, false
    159. 278, "Repair", "INTERFACE\\ICONS\\ABILITY_REPAIR.BLP", 5, "Enters repair mode$ performing no actions for two turns$ then repairing heavily.", 3, 10, true
    160. 279, "Heartbroken [NYI Visual]", "INTERFACE\\ICONS\\SPELL_BROKENHEART.BLP", 0, "Next turn you take 50% additional damage. If hurt$ you will dead 100% additional damage for 2 rounds.", 1, 10, false
    161. 280, "Overload", "INTERFACE\\ICONS\\SPELL_NATURE_LIGHTNINGOVERLOAD.BLP", 0, "Increases damage taken by 50%. \r\nIf hurt$ the wearer will deal 100% additional damage for two turns.", 1, nil, false
    162. 281, "Heartbreak", "INTERFACE\\ICONS\\SPELL_BROKENHEART.BLP", 0, "Damage dealt increased by 100%.", 1, nil, false
    163. 282, "Explode", "INTERFACE\\ICONS\\INV_GIZMO_SUPERSAPPERCHARGE.BLP", 0, "Deals damage equal to [points(1$1)]% of the user's max health", 1, 10, false
    164. 283, "Survival", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_ICEBOUNDFORTITUDE.BLP", 3, "You endure the next attack$ preventing your health from being reduced below 1 health.", 1, 5, false
    165. 284, "Survive", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_ICEBOUNDFORTITUDE.BLP", 0, "Health cannot reduced below 1 this trun.", 1, nil, false
    166. 285, "Pad Aura Test 2.0", nil, 0, "", 0, nil, false
    167. 286, "Pad Test 2.0", "INTERFACE\\ICONS\\ABILITY_WARLOCK_SOULSWAP.BLP", 0, "TEST: Patty Mac Stun", 1, 4, false
    168. 287, "Weather Test 2.0", "INTERFACE\\ICONS\\ABILITY_DRUID_TYPHOON.BLP", 0, "TEST: Patty Mac Stun", 1, 4, false
    169. 288, "Weather Aura Test 2.0", nil, 0, "", 0, nil, false
    170. 289, "Stockpile", "INTERFACE\\ICONS\\INV_DRINK_25_HONEYTEA.BLP", 0, "Damage taken reduced by 10%.\r\nMax health increased by 20.\r\nCan be consumed to restore health.", 1, nil, false
    171. 290, "Stockpile", "INTERFACE\\ICONS\\INV_DRINK_25_HONEYTEA.BLP", 0, "Stockpiles a reserve of silithid honey$ increasing maximum health by 20% and reducing damage taken by 10%. \r\n\r\nUse again to consume the honey$ restoring [StandardDamage(1$1)] health.", 1, 5, false
    172. 291, "Pet Battle Initializer", "INTERFACE\\ICONS\\INV_MISC_QUESTIONMARK.BLP", 0, "Initializes pet auras and health.", 1, 10, false
    173. 292, "GM Stun", "INTERFACE\\ICONS\\INV_PET_SLEEPYWILLY.BLP", 0, "Stun the target and make it immune to damage.", 1, 1, false
    174. 293, "Launch Rocket", "INTERFACE\\ICONS\\ABILITY_MOUNT_ROCKETMOUNT.BLP", 0, "First use: Creates a rocket. \r\n\r\nSecond use: Launches the rocket$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 10, false
    175. 294, "Setup Rocket", "INTERFACE\\ICONS\\CREATUREPORTRAIT_GOBLIN_ROCKET.BLP", 0, "A rocket is ready to launch.", 0, 10, false
    176. 295, "GM Heal", "INTERFACE\\ICONS\\SPELL_HOLY_HEAL.BLP", 0, "Full Heal.", 1, 1, false
    177. 296, "Pumped Up", "INTERFACE\\ICONS\\SPELL_NATURE_GIFTOFTHEWATERSPIRIT.BLP", 0, "Damage increased by 10%.\r\nReady to unleash a torrent of water.", 1, nil, false
    178. 297, "Pump", "INTERFACE\\ICONS\\SPELL_NATURE_GIFTOFTHEWATERSPIRIT.BLP", 0, "First use: Increases your damage dealt by 10%.\r\n\r\nSecond use: Blasts the target with a surge of water$ dealing [StandardAttack(1$1)] [School()] damage.", 1, 9, false
    179. 298, "Inspiring Song", "INTERFACE\\ICONS\\SPELL_HOLY_DIVINEHYMN.BLP", 0, "Sings an inspiring song$ which restores [StandardAttack(1$1)] health to all allies.", 1, 7, false
    180. 299, "Arcane Explosion", "INTERFACE\\ICONS\\SPELL_NATURE_WISPSPLODE.BLP", 0, "Deals [StandardAttack(1$1)] [School()] damage plus half damage to the enemy's backline pets.", 1, 6, false
    181. 300, "Locked On", "INTERFACE\\ICONS\\ABILITY_HUNTER_SNIPERTRAINING.BLP", 0, "The enemy is preparing to launch a powerful attack against you.", 1, nil, false
    182. 301, "Lock-On", "INTERFACE\\ICONS\\ABILITY_HUNTER_SNIPERTRAINING.BLP", 0, "First use: Locks onto the target.\r\n\r\nSecond use: Blasts the target with missile$ dealing [StandardAttack(1$1)] [School()] damage.", 1, 10, false
    183. 302, "Planted", "INTERFACE\\ICONS\\SPELL_NATURE_STRANGLEVINES.BLP", 0, "Unable to flee.\r\nAbsorbing nutrients.", 1, nil, false
    184. 303, "Plant [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_HERB_08.BLP", 0, "Activate: Plant your roots into the ground$ absorbing nutrients. While planted your pet cannot swap.\r\n\r\nDeactivate: For every turn spent planted$ you gain [StandardAttack(1$1)] health.", 1, 7, false
    185. 304, "Self Harm", "INTERFACE\\ICONS\\INV_PET_SLEEPYWILLY.BLP", 0, "Deal [StandardDamage(1$1)] [School()] damage to self.", 1, 1, false
    186. 305, "Exposed Wounds", "INTERFACE\\ICONS\\ABILITY_DRUID_INFECTEDWOUND.BLP", 0, "Adds [5*AttackBonus()] damage to every attack against the target. \r\n\r\nLasts [duration(1$1)] turns.", 1, 8, false
    187. 306, "Exposed Wounds", "INTERFACE\\ICONS\\ABILITY_DRUID_INFECTEDWOUND.BLP", 0, "Adds [5*AttackBonus()] damage to every attack against the target.", 1, nil, true
    188. 307, "Kick", "INTERFACE\\ICONS\\ABILITY_KICK.BLP", 2, "Deals [StandardDamage(1$1)] [School()] damage and interrupts multi-turn attacks.", 1, 1, false
    189. 308, "Counterspell", "INTERFACE\\ICONS\\SPELL_FROST_ICESHOCK.BLP", 0, "Interrupts the current attack if you go first.", 1, 6, false
    190. 309, "Shell Shield", "INTERFACE\\ICONS\\INV_SHIELD_21.BLP", 0, "Reduces up to [5*AttackBonus()] damage from every attack against the target.", 1, nil, false
    191. 310, "Shell Shield", "INTERFACE\\ICONS\\INV_SHIELD_21.BLP", 0, "Reduces up to [5*AttackBonus()] damage from each attack against you. \r\n\r\nLasts [duration(1$1)] turns.", 1, 8, false
    192. 311, "Dodge", "INTERFACE\\ICONS\\INV_SHIELD_21.BLP", 0, "Increases your chance to dodge attacks by 100%.", 1, nil, false
    193. 312, "Dodge", "INTERFACE\\ICONS\\SPELL_NATURE_MIRRORIMAGE.BLP", 3, "Increases your chance to dodge an attack by 100%.\r\n\r\nLasts [duration(1$1)] turns.", 1, 1, false
    194. 313, "Mangle", "INTERFACE\\ICONS\\ABILITY_DRUID_MANGLE.BLP", 0, "Adds [2*AttackBonus()] damage to every attack against the target.", 1, nil, true
    195. 314, "Mangle", "INTERFACE\\ICONS\\ABILITY_DRUID_MANGLE.BLP", 0, "Adds [2*AttackBonus()] damage to every attack against the target. \r\n\r\nLasts [duration(1$1)] turns.", 1, 8, false
    196. 315, "Spiked Skin [NYI Visual]", "INTERFACE\\ICONS\\INV_TITANIUM_SHIELD_SPIKE.BLP", 0, "Reduces up to [2*AttackBonus()] damage from each attack against you and deals [2*AttackBonus()] [School()] damage each time you are struck. \r\n\r\nLasts [duration(1$1)] turns.", 1, 2, false
    197. 316, "Spiked Skin", "INTERFACE\\ICONS\\INV_TITANIUM_SHIELD_SPIKE.BLP", 0, "Reduces up to [2*AttackBonus()] damage from each attack and deals [StandardDamage(1$1)] [School()] damage each time you are struck.", 0, 2, false
    198. 317, "Thorns", "INTERFACE\\ICONS\\SPELL_NATURE_THORNS.BLP", 0, "Deals [StandardDamage(1$1)] Elemental damage each time you are struck.", 0, nil, false
    199. 318, "Thorns", "INTERFACE\\ICONS\\SPELL_NATURE_THORNS.BLP", 0, "Deals [5*AttackBonus()] [School()] damage each time you are struck. \r\n\r\nLasts [duration(1$1)] turns.", 1, 7, false
    200. 319, "Magma Wave", "INTERFACE\\ICONS\\ABILITY_RHYOLITH_MAGMAFLOW_WAVE.BLP", 0, "Deals [StandardAttack(1$1)] [School()] damage to the enemy's pets.\r\n\r\nDestroys objects created by both teams.", 1, 7, false
    201. 320, "Unholy Ascension", "INTERFACE\\ICONS\\ABILITY_WARLOCK_ERADICATION.BLP", 0, "All damage taken is increased by 50%.\r\n\r\nHaunted.", 1, nil, false
    202. 321, "Unholy Ascension [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_WARLOCK_ERADICATION.BLP", 0, "Sacrifices your remaining life to haunt the enemy team$ increasing all damage they take by 50% for [duration(1$1)] turns.", 1, 4, false
    203. 322, "Levitated", "INTERFACE\\ICONS\\SPELL_HOLY_LAYONHANDS.BLP", 0, "Levitated$ making you unable to flee. \r\n\r\nFlying", 1, nil, false
    204. 323, "Gravity [NYI Visual]", "INTERFACE\\ICONS\\INV_ELEMENTAL_MOTE_SHADOW01.BLP", 0, "Slams the target into the ground$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nIf used again on the same target$ they are levitated and unable to flee for [duration(1$1)] turns.", 1, 6, false
    205. 324, "Gravity", "INTERFACE\\ICONS\\INV_ELEMENTAL_MOTE_SHADOW01.BLP", 0, "If struck again by Gravity$ the target will be levitated and unable to escape for 2 turns.", 1, nil, false
    206. 325, "Beaver Dam", "INTERFACE\\ICONS\\SPELL_NATURE_NATURETOUCHDECAY.BLP", 0, "Creates a wooden dam that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 5, true
    207. 326, "Beaver Dam", "INTERFACE\\ICONS\\SPELL_NATURE_NATURETOUCHDECAY.BLP", 0, "Protected from enemy attacks.", 0, 5, true
    208. 327, "Hatchlings [NYI Visual]", "INTERFACE\\ICONS\\INV_EGG_08.BLP", 5, "Places 3 eggs onto the field. After 3 turns$ the eggs hatch and attack the opponent.", 1, 2, false
    209. 328, "Eggs", "INTERFACE\\ICONS\\INV_EGG_09.BLP", 0, "Eggs placed on the field will hatch shortly and attack their enemy.", 3, nil, false
    210. 329, "Hatchlings", "INTERFACE\\ICONS\\INV_MISC_HEAD_DRAGON_01.BLP", 0, "Attacks the opponent each round$ dealing [StandardAttack(1$1)*3] [School()] damage.", 2, nil, false
    211. 330, "Sons of the Flame [NYI Visual]", "INTERFACE\\ICONS\\SPELL_FIRE_LAVASPAWN.BLP", 8, "Submerge$ becoming unattackable for [duration(1$1)] rounds. During this time$ the Sons of the Living Flame attack the opponent$ dealing <some> [School()] damage each turn.", 1, 7, false
    212. 331, "Submerged", "INTERFACE\\ICONS\\SPELL_FIRE_LAVASPAWN.BLP", 0, "Submerged. \r\nSons of the Flame will deal [StandardAttack(1$1)] [School()] damage each turn.", 0, nil, false
    213. 332, "Sons of the Living Flame", "INTERFACE\\ICONS\\SPELL_FIRE_LAVASPAWN.BLP", 0, "Deals [StandardDamage(1$1)] Elemental damage to the current pet every turn.", 1, nil, false
    214. 333, "Decoy", "INTERFACE\\ICONS\\INV_CRATE_02.BLP", 0, "Protected from enemy attacks.", 0, 10, true
    215. 334, "Decoy", "INTERFACE\\ICONS\\INV_CRATE_02.BLP", 5, "Creates a wooden decoy that protects your team from two attacks.", 1, 10, true
    216. 338, "Webbed", "INTERFACE\\ICONS\\SPELL_NATURE_WEB.BLP", 0, "This pet cannot be swapped.\r\n\r\nWebbed.", 1, nil, true
    217. 339, "Sticky Web [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_WEB.BLP", 0, "Flings a sticky web at the target$ dealing [StandardDamage(1$1)] [School()] damage and making it impossible to flee for [duration(1$2)] turns.", 1, 8, false
    218. 340, "Underground", "INTERFACE\\ICONS\\ABILITY_DEATHKNIGHT_DESECRATEDGROUND.BLP", 0, "Burrowed underground. \r\nUnattackable.", 1, nil, false
    219. 341, "Flying", "INTERFACE\\ICONS\\ABILITY_DRUID_FLIGHTFORM.BLP", 0, "Flying up high. \r\nUnattackable.", 1, nil, false
    220. 345, "Maul", "INTERFACE\\ICONS\\ABILITY_DRUID_MAUL.BLP", 0, "Splashes the enemy with freezing damage$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage. \r\n\r\nDeals double damage if the target is |cFF970000Bleeding|r.", 1, 8, false
    221. 346, "Roar", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage dealt increased by 25%.", 1, nil, true
    222. 347, "Roar", "INTERFACE\\ICONS\\SPELL_DRUID_STAMEDINGROAR.BLP", 2, "A fierce roar deals [StandardDamage (1$1)] [School()] damage and enrages the user$ increasing the damage they deal by 25% for [duration(1$2)] rounds.", 1, 8, false
    223. 348, "Bash", "INTERFACE\\ICONS\\ABILITY_DRUID_BASH.BLP", 3, "Stun the target for [duration(1$1)] turns.", 1, 8, false
    224. 349, "Smash [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_SMASH.BLP", 0, "Smash the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 8, false
    225. 350, "Clobber", "INTERFACE\\ICONS\\INV_MISC_ADDSOCKETGLOVE.BLP", 5, "Stun the target for [duration(1$1)] turns.", 1, 1, false
    226. 351, "Banana Barrage", "INTERFACE\\ICONS\\ABILITY_HUNTER_ASPECTOFTHEMONKEY.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to the current pet every turn.", 1, 8, false
    227. 352, "Banana Barrage", "INTERFACE\\ICONS\\ABILITY_HUNTER_ASPECTOFTHEMONKEY.BLP", 3, "Hurls bananas at the enemy$ dealing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)+StandardDamage(1$4)] [School()] damage. \r\n\r\nBananas continue to fall on the enemy team dealing [StandardDamage(1$1$ 166)] [School()] damage each turn for [duration(1$5)] turns.", 1, 8, false
    228. 353, "Barrel Ready", "INTERFACE\\ICONS\\ABILITY_VEHICLE_PLAGUEBARREL.BLP", 0, "A barrel is ready to throw.", 1, 8, true
    229. 354, "Barrel Toss", "INTERFACE\\ICONS\\ABILITY_VEHICLE_PLAGUEBARREL.BLP", 0, "First use: Fills a barrel. \r\n\r\nSecond use: Throws the barrel$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 10, false
    230. 355, "Triple Snap", "INTERFACE\\ICONS\\INV_MOUNT_HORDESCORPIONG.BLP", 0, "Wildly flails at the enemy 1-3 times$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage per hit.", 1, 8, false
    231. 356, "Snap", "INTERFACE\\ICONS\\ABILITY_HUNTER_PET_SCORPID.BLP", 0, "Snaps at the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 8, false
    232. 357, "Screech", "INTERFACE\\ICONS\\ABILITY_DEATHKNIGHT_SUMMONGARGOYLE.BLP", 0, "Frightens the target$ dealing [StandardDamage(1$2)] [School()] damage and reducing their speed by 30% for 4 turns.", 1, 8, false
    233. 358, "Sting", "INTERFACE\\ICONS\\ABILITY_POISONSTING.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 8, false
    234. 359, "Sting", "INTERFACE\\ICONS\\ABILITY_POISONSTING.BLP", 0, "Deals [StandardDamage(1$1$358)] [School()] damage every turn for [duration(1$1)] turns.", 1, 8, false
    235. 360, "Flurry", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_01.BLP", 0, "Rapidly strikes at the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 5, false
    236. 361, "Howl", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage taken increased by 100%.", 1, nil, true
    237. 362, "Howl", "INTERFACE\\ICONS\\ABILITY_HUNTER_ASPECTOFTHEFOX.BLP", 2, "A distant howl frightens the target$ increasing the damage they take by 100% for [duration(1$1)] rounds.", 1, 8, false
    238. 363, "Leap", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_05.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF970000Bleeding|r", 1, 8, false
    239. 364, "Leap", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_05.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and increases your speed by 100 for [duration(1$2)] round.", 1, 8, false
    240. 365, "Dazzling Dance", "INTERFACE\\ICONS\\INV_MISC_FIREDANCER_01.BLP", 0, "Speed increased by 50%.", 1, nil, false
    241. 366, "Dazzling Dance", "INTERFACE\\ICONS\\INV_MISC_FIREDANCER_01.BLP", 0, "Increases your team's speed by 50 for [duration(1$1)] rounds.", 1, 5, false
    242. 367, "Chomp", "INTERFACE\\ICONS\\TRADE_ARCHAEOLOGY_TROLLTOOTH W GOLDFILLING.BLP", 0, "Chomps on the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 5, false
    243. 368, "Acidic Goo", "INTERFACE\\ICONS\\INV_MISC_SLIME_01.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn and increases damage taken by 25%.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 5, false
    244. 369, "Acidic Goo", "INTERFACE\\ICONS\\INV_MISC_SLIME_01.BLP", 0, "Spits acidic goo onto the target$ dealing [StandardDamage(1$1$368)] [School()] damage and increasing damage taken by 50% for [duration(1$1)] turns.", 1, 5, false
    245. 370, "Sticky Goo", "INTERFACE\\ICONS\\INV_MISC_VOLATILELIFE_GREEN.BLP", 0, "This pet cannot be swapped.", 1, nil, true
    246. 371, "Sticky Goo [NYI Art]", "INTERFACE\\ICONS\\INV_MISC_VOLATILELIFE_GREEN.BLP", 0, "Flings a sticky goo at the target$ making it impossible to flee for [duration(1$1)] turns.", 1, 8, false
    247. 374, "Trumpet", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage done increased by 25%.", 1, nil, true
    248. 375, "Trumpet Strike [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_MONSTERHORN_03.BLP", 2, "Enrages the user$ increasing the damage they deal by 25% for [duration(1$1)] rounds.", 1, 8, false
    249. 376, "Headbutt", "INTERFACE\\ICONS\\ABILITY_MOUNT_MOUNTAINRAM.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and has a 25% chance to stun the target.", 1, 8, false
    250. 377, "Trample", "INTERFACE\\ICONS\\ABILITY_MOUNT_RIDINGELEKK.BLP", 0, "Tramples the target$ dealing [StandardDamage(1$1) [School()] damage plus an additional [points(1$2)]% of the targets health.", 1, 8, false
    251. 378, "Strike", "INTERFACE\\ICONS\\ABILITY_HUNTER_PET_SPIDER.BLP", 0, "Strikes at the enemy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 8, false
    252. 379, "Poison", "INTERFACE\\ICONS\\SPELL_NATURE_NULLIFYPOISON.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 8, false
    253. 380, "Poison Spit", "INTERFACE\\ICONS\\SPELL_NATURE_NULLIFYPOISON.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and deals [StandardDamage(1$1$379)] additional [School()] damage per round for [duration(1$2)] rounds.", 1, 8, false
    254. 381, "Brittle Webbing", "INTERFACE\\ICONS\\INV_MISC_WEB_01.BLP", 0, "Takes [StandardDamage(1$1)] [School()] damage each time they attack.\r\n\r\nWebbed.", 1, 8, false
    255. 382, "Brittle Webbing [NYI]", "INTERFACE\\ICONS\\INV_MISC_WEB_01.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and coats the target in brittle webbing$ causing them to take [AttackBonus()*points(1$1$381)] [School(381)] damage each time they attack. Lasts [duration(1$2)] turns.", 1, 8, false
    256. 383, "Leech Life", "INTERFACE\\ICONS\\ROGUE_LEECHING_POISON.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nThe user restores [points(1$2)] health. Double if the target is webbed.", 1, 4, false
    257. 384, "Metal Fist", "INTERFACE\\ICONS\\INV_MISC_DESECRATED_PLATEGLOVES.BLP", 0, "Punches the target$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 10, false
    258. 385, "XE-321 Boombot", "INTERFACE\\ICONS\\INV_MISC_BOMB_04.BLP", 0, "Explodes after a delay$ dealing [StandardDamage(4$1)] [School()] damage.", 4, 10, false
    259. 386, "XE-321 Boombot", "INTERFACE\\ICONS\\INV_MISC_BOMB_04.BLP", 0, "Creates a Boombot who detonates after 3 turns$ dealing [StandardDamage(3$1$385)] [School()] damage.", 1, 10, false
    260. 387, "Tympanic Tantrum", "INTERFACE\\ICONS\\ACHIEVEMENT_BOSS_XT002DECONSTRUCTOR_01.BLP", 0, "Pounds the ground$ dealing [StandardDamage(1$1)] [School()] damage to the enemy and half that damage to their backline pet.\r\n\r\nTantrum lasts [numTurns()] and can effect enemies underground.", 3, 10, false
    261. 388, "Overtune", "INTERFACE\\ICONS\\PETBATTLE_SPEED.BLP", 0, "Your speed has been increased by 100%.", 1, nil, false
    262. 389, "Overtune [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_ROGUE_SPRINT.BLP", 0, "Increases your speed by 100% for 4 turns.", 1, 10, false
    263. 390, "Demolish", "INTERFACE\\ICONS\\ABILITY_VEHICLE_SIEGEENGINERAM.BLP", 0, "Rams the target$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nThis ability has a high chance to miss.", 1, 10, false
    264. 391, "Extra Plating", "INTERFACE\\ICONS\\INV_MISC_WARTORNSCRAP_PLATE.BLP", 0, "Your damage taken has been reduced by 50%.", 1, nil, false
    265. 392, "Extra Plating", "INTERFACE\\ICONS\\INV_MISC_WARTORNSCRAP_PLATE.BLP", 4, "The user equips additional plating$ reducing all damage taken by 50% for 2 turns.", 1, 10, false
    266. 393, "Shadowflame", "INTERFACE\\ICONS\\SPELL_FIRE_TWILIGHTFLAMEBREATH.BLP", 0, "Overwhelms the enemy with draconic breath$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 2, false
    267. 394, "Lash [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_HERB_NIGHTMAREVINE.BLP", 0, "Lashes the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per lash.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 7, false
    268. 395, "Soothing Mists", "INTERFACE\\ICONS\\ABILITY_MONK_SOOTHINGMISTS.BLP", 0, "Restores [points(1$1)] health per turn.", 1, nil, false
    269. 396, "Soothing Mists", "INTERFACE\\ICONS\\ABILITY_MONK_SOOTHINGMISTS.BLP", 0, "Restores [StandardDamage(1$1$395)] health to your active pet every turn for [duration(1$1)] turns.", 1, 7, true
    270. 397, "Poison Lash", "INTERFACE\\ICONS\\INV_MISC_HERB_FELWEED.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 7, false
    271. 398, "Poison Lash", "INTERFACE\\ICONS\\INV_MISC_HERB_FELWEED.BLP", 0, "Instantly deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage and deals [StandardDamage(1$1$379)] additional [petTypeName(abilityPetType())] damage per round for 5 rounds.", 1, 7, false
    272. 399, "Entangling Roots", "INTERFACE\\ICONS\\SPELL_DRUID_MASSENTANGLEMENT.BLP", 0, "Next turn your active pet will be entangled in roots and unable to flee for [duration(2$1)] turns.", 2, nil, false
    273. 400, "Entangling Roots [NYI Visual]", "INTERFACE\\ICONS\\SPELL_DRUID_MASSENTANGLEMENT.BLP", 0, "Causes a thick nest of vines to begin growing around the enemy team. \r\n\r\nNext turn$ the opponent's pet will be rooted for [duration(2$1$399)] turns.", 1, 7, false
    274. 401, "Stun Seed", "INTERFACE\\ICONS\\SPELL_LIFEGIVINGSEED.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Elemental damage and stunning the target for 1 round.", 3, nil, false
    275. 402, "Stun Seed [NYI Visual]", "INTERFACE\\ICONS\\SPELL_LIFEGIVINGSEED.BLP", 0, "Plants a seed in the enemy. \r\n\r\nAfter 3 turns$ the seed blooms$ causing the enemy to take [StandardDamage(3$1$175)] [School()] damage and be stunned for [duration(3$2$175)] turn.", 1, 7, false
    276. 403, "Sunlight", "INTERFACE\\ICONS\\PALADIN_HOLY.BLP", 0, "Increases the maximum health of all pets by 10%.\r\n\r\nIncreases healing done by 25%.", 0, 7, false
    277. 404, "Sunlight", "INTERFACE\\ICONS\\PALADIN_HOLY.BLP", 5, "A Solar Beam strikes all enemies$ dealing [StandardDamage(1$1)] [School()] damage and transforms the weather into a sunny day for [duration(1$4)] rounds.\r\n\r\nDuring a sunny day$ the maximum health of all pets is increased by 10% and healing done is increased by 25%.", 1, 7, false
    278. 405, "Early Advantage", "INTERFACE\\ICONS\\SPELL_HOLY_BORROWEDTIME.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.\r\n\r\nDeals double damage if the user has lower health.", 1, 7, false
    279. 406, "Crush", "INTERFACE\\ICONS\\ABILITY_WARRIOR_TITANSGRIP.BLP", 0, "Crush the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 1, false
    280. 407, "Meteor Strike [NYI Visual]", "INTERFACE\\ICONS\\CREATUREPORTRAIT_INFERNAL_BALL_02.BLP", 0, "Launch up high$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you impact$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 6, false
    281. 408, "Immolation", "INTERFACE\\ICONS\\ABILITY_WARLOCK_INFERNO.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to an enemy every turn.\r\n\r\n|cFFFF2020Burning|r", 1, 6, false
    282. 409, "Immolation [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_WARLOCK_INFERNO.BLP", 3, "Ignites the caster$ causing them to deals X [School()] damage to the current enemy every turn. Lasts [duration(1$1)] turns.", 1, 6, false
    283. 410, "Woodchipper", "INTERFACE\\ICONS\\TRADE_ARCHAEOLOGY_VRYKUL_RUNESTICK.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF970000Bleeding|r", 1, 8, false
    284. 411, "Woodchipper", "INTERFACE\\ICONS\\TRADE_ARCHAEOLOGY_VRYKUL_RUNESTICK.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and deals [StandardDamage(1$1$363)] additional [School()] damage per round for [duration(1$2)] rounds.", 1, 8, false
    285. 412, "Gnaw", "INTERFACE\\ICONS\\INV_TRADESKILLITEM_03.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage plus [StandardDamage(1$2)] additional damage if the user goes first.", 1, 8, false
    286. 413, "Ice Lance", "INTERFACE\\ICONS\\SPELL_FROST_FROSTBLAST.BLP", 0, "Splashes the enemy with freezing damage$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nDeals [StandardDamage(1$2)] additional damage if the target is |cFF0070DDChilled|r.", 1, 7, false
    287. 414, "Frost Nova", "INTERFACE\\ICONS\\SPELL_FROST_FROSTNOVA.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and prevents the target from fleeing for [duration(1$2)] turns.\r\n\r\nWhile rooted the target is |cFF0070DDChilled|r.", 1, 7, false
    288. 415, "Frost Shock", "INTERFACE\\ICONS\\SPELL_FROST_FROSTSHOCK.BLP", 0, "Your speed has been reduced by 25%.\r\n\r\n|cFF0070DDChilled|r", 1, nil, true
    289. 416, "Frost Shock", "INTERFACE\\ICONS\\SPELL_FROST_FROSTSHOCK.BLP", 0, "Chills the target$ reducing their speed by 25% for 4 turns.", 1, 7, false
    290. 417, "Geyser", "INTERFACE\\ICONS\\SPELL_NATURE_GIFTOFTHEWATERSPIRIT.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Elemental damage and stunning the target for 1 round.", 3, nil, false
    291. 418, "Geyser [NYI Art]", "INTERFACE\\ICONS\\SPELL_NATURE_GIFTOFTHEWATERSPIRIT.BLP", 0, "Causes a water geyser to form under the enemy team. \r\n\r\nAfter 3 turns$ the geyser erupts$ causing the current enemy pet to take [StandardDamage(3$1$175)] [School()] damage and be stunned for [duration(3$2$175)] turn.", 1, 7, false
    292. 419, "Tidal Wave", "INTERFACE\\ICONS\\SPELL_SHAMAN_TIDALWAVES.BLP", 0, "Deals [StandardAttack(1$1)] [School()] damage to the enemy's pets.\r\n\r\nDestroys objects created by both teams.", 1, 9, false
    293. 420, "Slicing Wind", "INTERFACE\\ICONS\\INV_MISC_VOLATILEAIR.BLP", 0, "Attacks the enemy with 1-3 blades of wind$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage per attack.", 1, 3, false
    294. 421, "Arcane Blast [NYI Visual]", "INTERFACE\\ICONS\\SPELL_ARCANE_BLAST.BLP", 0, "Blasts the enemy with a surge of arcane power$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nDamage increases by [5*AttackBonus()] each time it hits. Max [25 *AttackBonus()] [petTypeName(abilityPetType())] damage.", 1, 6, false
    295. 422, "Shadow Shock [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_PAINSPIKE.BLP", 0, "Shocks the target with dark energy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 4, false
    296. 423, "Blood in the Water", "INTERFACE\\ICONS\\INV_PET_BABYSHARK.BLP", 2, "Deals [StandardDamage(1$1)] [School()] damage$ but has a high chance to miss. \r\n\r\nAlways hits if the target is bleeding.", 1, 9, false
    297. 424, "Tail Slap", "INTERFACE\\ICONS\\INV_MISC_FISH_87.BLP", 0, "Slaps the enemy with its tail$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nHas an above average chance to miss.", 1, 9, false
    298. 425, "Focused", "INTERFACE\\ICONS\\ABILITY_MONK_DPSSTANCE.BLP", 0, "Accuracy increased by 100%.", 1, nil, false
    299. 426, "Focus", "INTERFACE\\ICONS\\ABILITY_MONK_DPSSTANCE.BLP", 0, "Focuses intensely$ increasing your chance to hit by 100% for [duration(1$1)] rounds.", 1, 1, false
    300. 427, "Trap", "INTERFACE\\ICONS\\INV_PET_PETTRAP01.BLP", 0, "Attempt to catch a pet below 35% health.", 1, 1, true
    301. 429, "Claw", "INTERFACE\\ICONS\\INV_MISC_MONSTERCLAW_03.BLP", 0, "Claws at the enemy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 8, false
    302. 430, "Jadeskin", "INTERFACE\\ICONS\\INV_SHIELD_21.BLP", 0, "Reduces up to [5*AttackBonus()] damage from every attack against the target.", 1, nil, false
    303. 431, "Jadeskin [NYI Visual]", "INTERFACE\\ICONS\\INV_SHIELD_21.BLP", 0, "Reduces up to [5*AttackBonus()] damage from each attack against you. \r\n\r\nLasts [duration(1$1)] turns.", 1, 6, true
    304. 432, "Jade Claw [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MONK_TIGERPALM.BLP", 0, "Rakes the enemy with jade claws$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    305. 433, "Jade Barrier [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_CRYSTALEPIC2.BLP", 0, "Creates a jade wall that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 6, false
    306. 434, "Jade Barrier", "INTERFACE\\ICONS\\INV_MISC_CRYSTALEPIC2.BLP", 0, "Protected from enemy attacks.", 1, nil, false
    307. 435, "Stoneskin", "INTERFACE\\ICONS\\SPELL_NATURE_STONESKINTOTEM.BLP", 0, "Reduces up to [5*AttackBonus()] damage from every attack against the target.", 1, nil, false
    308. 436, "Stoneskin [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_STONESKINTOTEM.BLP", 0, "Reduces up to [5*AttackBonus()] damage from each attack against you. \r\n\r\nLasts [duration(1$1)] turns.", 1, 6, false
    309. 437, "Onyx Bite [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MOUNT_ONYXPANTHER.BLP", 0, "Bites the enemy with Onyx teeth$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    310. 438, "Onyx Wall", "INTERFACE\\ICONS\\INV_MISC_STONETABLET_01.BLP", 0, "Protected from enemy attacks.", 1, nil, false
    311. 439, "Onyx Wall [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_STONETABLET_01.BLP", 0, "Creates a stone wall that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 6, false
    312. 440, "Evanescence [NYI Visual]", "INTERFACE\\ICONS\\SPELL_MAGIC_LESSERINVISIBILTY.BLP", 4, "Fade into a cloud of mist$ increasing your chance to dodge by 100%.\r\n\r\nLasts [duration(1$1)] turns.", 1, 6, false
    313. 441, "Ravage", "INTERFACE\\ICONS\\ABILITY_DRUID_RAVAGE.BLP", 0, "Lashes the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per lash.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 8, false
    314. 442, "Spectral Strike [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MOUNT_SPECTRALTIGER.BLP", 0, "Strikes at the enemy with the power of a spirit beast$ causing [StandardDamage(1$1)] [School()] damage. \r\n\r\nThis ability has a high chance to miss$ but always hits if the target is blinded.", 1, 6, false
    315. 443, "Prismatic Barrier", "INTERFACE\\ICONS\\INV_ENCHANT_SHARDPRISMATICLARGE.BLP", 0, "Protected from enemy attacks.", 1, nil, false
    316. 444, "Prismatic Barrier [NYI Visual]", "INTERFACE\\ICONS\\INV_ENCHANT_SHARDPRISMATICLARGE.BLP", 0, "Creates a crystal wall that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 6, false
    317. 445, "Ooze Touch [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_SLIME_01.BLP", 0, "Oozes onto the enemy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    318. 446, "Corrosion", "INTERFACE\\ICONS\\ABILITY_CREATURE_POISON_06.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage each turn.\r\nDamage taken increased by [AttackBonus()*5].", 1, 6, false
    319. 447, "Corrosion [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_CREATURE_POISON_06.BLP", 0, "Splashes the target with corrosive acid$ causing [StandardDamage(1$1)] [School()] damage and increases damage taken by [AttackBonus()*5] for [duration(1$2)] turns.", 1, 6, false
    320. 448, "Creeping Ooze [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_CREATURE_POISON_05.BLP", 0, "Covers the target in a growing ooze$ which deals [StandardDamage(1$1)] [School()] damage plus [AttackBonus()*5] damage each turn.  Lasts [duration(1$1)] turns.", 1, 6, false
    321. 449, "Absorb", "INTERFACE\\ICONS\\ABILITY_CREATURE_DISEASE_03.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.\r\n\r\nThe user is healed for [points(1$2)]% of the damage dealt.", 1, 4, false
    322. 450, "Expunge [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_CREATURE_DISEASE_02.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage plus [duration(1$1)] damage per poison on the target.", 1, 6, false
    323. 451, "Split [NYI]", "INTERFACE\\ICONS\\TRADE_ENCHANTING_GREATERMYSTERIOUSESSENCE.BLP", 0, "Consumes half of your HP to create an identical clone of yourself.", 1, 6, false
    324. 452, "Broom", "INTERFACE\\ICONS\\INV_STAFF_10.BLP", 0, "Whack the enemy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 1, false
    325. 453, "Sandstorm", "INTERFACE\\ICONS\\INV_MISC_DUST.BLP", 5, "Deals [StandardDamage(1$1)] [School()] damage and turns the weather into a sandstorm.\r\n\r\nDuring a sandstorm$ all pets take [AttackBonus()*5] less damage and their accuracy is reduced by 10%.", 1, 3, false
    326. 454, "Sandstorm", "INTERFACE\\ICONS\\INV_MISC_DUST.BLP", 0, "Reduces the damage taken by all pets by up to  [AttackBonus()*5].\r\n\r\nAccuracy reduced by 10%.", 0, 5, true
    327. 455, "Batter", "INTERFACE\\ICONS\\INV_STAFF_21.BLP", 0, "Smacks the enemy 1-3$ dealing [StandardDamage(1$1)] [School()] damage per smack.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 10, false
    328. 456, "Clean-Up [NYI Visual]", "INTERFACE\\ICONS\\INV_STAFF_28.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and removes any objects on the battlefield.", 1, 6, false
    329. 457, "Sweep [NYI Visual]", "INTERFACE\\ICONS\\INV_STAFF_33.BLP", 4, "Sweeps the enemy off the battlefield.\r\n\r\nEjected enemies cannot return for [duration(1$1)] rounds.", 1, 6, false
    330. 458, "Wind-Up", "INTERFACE\\ICONS\\ABILITY_REWINDTIME.BLP", 0, "Damage increased by 10%.\r\nReady to unleash a barrage of attacks.", 1, nil, false
    331. 459, "Wind-Up [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_REWINDTIME.BLP", 0, "First use: Increases your damage dealt by 10%.\r\n\r\nSecond use: Unleashes a flurry of attacks$ dealing [StandardAttack(1$1)] [School()] damage.", 1, 10, false
    332. 460, "Illuminate", "INTERFACE\\ICONS\\ABILITY_PALADIN_BLINDINGLIGHT2.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage  and transforms the weather into a sunny day for [duration(1$2)] rounds.\r\n\r\nDuring a sunny day$ the maximum health of all pets is increased by 10% and healing done is increased by 25%.", 1, 6, false
    333. 461, "Light [NYI Visual]", "INTERFACE\\ICONS\\SPELL_PALADIN_LIGHTOFDAWN.BLP", 0, "Covers the enemy in brilliant light$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage. \r\n\r\nDeals double damage if the target is Blinded.", 1, 6, false
    334. 462, "Blinded", "INTERFACE\\ICONS\\SPELL_SHADOW_TELEPORT.BLP", 0, "Your accuracy is reduced by 100%.", 1, nil, true
    335. 463, "Flash [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_PRIEST_FLASHOFLIGHT.BLP", 3, "A brilliant flash deals [StandardDamage(1$1)] [School()] damage and blinds the target$ reducing their accuracy by 100% for [duration(1$2)] turn.", 1, 6, false
    336. 464, "Illusionary Barrier", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_ANTIMAGICZONE.BLP", 0, "Protected from enemy attacks.", 1, nil, false
    337. 465, "Illusionary Barrier [NYI Visual]", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_ANTIMAGICZONE.BLP", 0, "Creates an illusion that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 6, false
    338. 466, "Nether Gate", "INTERFACE\\ICONS\\SPELL_ARCANE_PORTALDARNASSUS.BLP", 4, "Banishes the enemy from the battlefield.\r\n\r\nBanished enemies cannot return for [duration(1$1)] rounds.", 1, 6, false
    339. 467, "Magical Clone [NYI]", "INTERFACE\\ICONS\\SPELL_NATURE_DOUBLEPOLYMORPH2.BLP", 0, "Creates an identical clone of your opponent.", 1, 6, false
    340. 468, "Agony", "INTERFACE\\ICONS\\SPELL_SHADOW_CURSEOFSARGERAS.BLP", 0, "Inflicts agony on the target$ causing increasing [School()] damage each turn for [duration(1$1)] turns.", 1, 4, false
    341. 469, "Agony", "INTERFACE\\ICONS\\SPELL_SHADOW_CURSEOFSARGERAS.BLP", 0, "Deals increasing damage every turn.", 3, 4, false
    342. 470, "Weakness", "INTERFACE\\ICONS\\SPELL_SHADOW_CURSEOFMANNOROTH.BLP", 0, "Damage and speed reduced by 50%.", 1, nil, true
    343. 471, "Weakness [NYI Visual]", "INTERFACE\\ICONS\\SPELL_SHADOW_CURSEOFMANNOROTH.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and reduces the target's speed by 50% and damage done this turn by 50%.", 1, 6, false
    344. 472, "Blast of Hatred [NYI Visual]", "INTERFACE\\ICONS\\INV_DIABLOSTONE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. \r\n\r\nDeals [StandardDamage(1$2)] extra damage if you were struck first this turn.", 1, 6, false
    345. 473, "Focused Beams [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_ELEMENTALPRECISION_1.BLP", 0, "Blasts the enemy with a beam of arcane power$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage. \r\n\r\nDamage increases by [5*AttackBonus()] each time it hits. Max [25 *AttackBonus()] [petTypeName(abilityPetType())] damage.", 1, 6, false
    346. 474, "Interrupting Gaze", "INTERFACE\\ICONS\\INV_PET_SLEEPYWILLY.BLP", 2, "Deals [StandardDamage(1$1)] [School()] damage and interrupts multi-turn attacks.", 1, 1, false
    347. 475, "Eyeblast [NYI Visual]", "INTERFACE\\ICONS\\ACHIEVEMENT_BOSS_CTHUN.BLP", 2, "Deals [StandardDamage(1$1)] [School()] damage and reduces the target's speed for [duration(1$2)] turns.", 1, 6, false
    348. 476, "Clone Magic [NYI]", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANE02.BLP", 5, "Clones the opponent's last attack.", 1, 6, false
    349. 477, "Snowball", "INTERFACE\\ICONS\\INV_AMMO_SNOWBALL.BLP", 0, "Hits the enemy with a ball of snow$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 7, false
    350. 478, "Magic Hat [NYI Visual]", "INTERFACE\\ICONS\\INV_HELMET_120.BLP", 0, "Throws his hat at the enemy$ dealing  [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    351. 479, "Ice Barrier [NYI Visual]", "INTERFACE\\ICONS\\SPELL_HUNTER_ICETRAP.BLP", 0, "Creates an ice wall that prevents your team from attacking$ but protects your team from 2 attacks.", 1, 6, false
    352. 480, "Ice Barrier", "INTERFACE\\ICONS\\SPELL_HUNTER_ICETRAP.BLP", 0, "Protected from enemy attacks.", 1, nil, false
    353. 481, "Deep Freeze [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MAGE_DEEPFREEZE.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and has a [accuracy(1$2)]% chance to stun the target for [duration(1$2)] turn. \r\n\r\nThe chance to stun becomes 100% if the target is |cFF0070DDChilled|r.", 1, 7, false
    354. 482, "Laser [NYI Visual]", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANE03.BLP", 0, "Blasts the enemy with a laser of arcane power$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage. \r\n\r\nLaser has a 100% hit chance.", 1, 6, false
    355. 483, "Psychic Blast [NYI Visual]", "INTERFACE\\ICONS\\SPELL_PRIEST_MINDSPIKE.BLP", 0, "Overwhelms the target's mind$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage. \r\n\r\nDeals double damage if the weather is an Arcane Storm.", 1, 6, false
    356. 484, "Feedback [NYI Visual]", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANE01.BLP", 0, "Launches a surge of mana at the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 6, false
    357. 485, "Attack Boost", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Your damage has been increased by 25%.", 1, nil, false
    358. 486, "Drain Power [NYI Visual]", "INTERFACE\\ICONS\\WARLOCK_SPELLDRAIN.BLP", 0, "Reduces the target's damage by 25% and increases the user's damage by 25% for [duration(1$1)] turns.", 1, 6, false
    359. 487, "Amplify Magic", "INTERFACE\\ICONS\\SPELL_NATURE_ABOLISHMAGIC.BLP", 0, "Increases damage done by 50%.", 1, nil, false
    360. 488, "Amplify Magic", "INTERFACE\\ICONS\\SPELL_NATURE_ABOLISHMAGIC.BLP", 0, "Increases the damage done by your team by 50% for [duration(1$1)] turns.", 1, 6, false
    361. 489, "Mana Surge [NYI Visual]", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANETORRENT.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn for [numTurns()]. Damage increased during an Arcane Storm.\r\n\r\nYou cannot swap or perform any other actions until the surge has finished.", 3, 6, false
    362. 490, "Reflection [NYI]", "INTERFACE\\ICONS\\ABILITY_PRIEST_REFLECTIVESHIELD.BLP", 5, "Your opponent's next ability hurts them instead.", 1, 1, false
    363. 491, "Rake", "INTERFACE\\ICONS\\ABILITY_DRUID_RAKE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF970000Bleeding|r", 1, 8, false
    364. 492, "Rake", "INTERFACE\\ICONS\\ABILITY_DRUID_RAKE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and reduces the target's next attack by 50%.", 1, 8, false
    365. 493, "Hoof", "INTERFACE\\ICONS\\ABILITY_WARSTOMP.BLP", 0, "Stomps the enemy$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] Damage.", 1, 5, false
    366. 494, "Bleat", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage dealt decreased by 25%.", 1, nil, true
    367. 495, "Baaah [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MAGE_IMPROVEDPOLYMORPH.BLP", 2, "Lets out a helpless bleat$ reducing the damage the target deals by 25% for [duration(1$1)] rounds.", 1, 5, false
    368. 496, "Drowsy", "INTERFACE\\ICONS\\SPELL_NATURE_HEAVYPOLYMORPH1.BLP", 0, "Feeling sleepy... will fall asleep next turn unless hit.", 2, nil, true
    369. 497, "Soothe", "INTERFACE\\ICONS\\SPELL_NATURE_SLEEP.BLP", 3, "Sings to the target$ causing them to become drowsy. \r\n\r\nDrowsy targets will fall asleep at the end of next turn unless hit.", 1, 5, false
    370. 498, "Asleep", "INTERFACE\\ICONS\\ABILITY_HIBERNATION.BLP", 0, "Asleep. \r\n\r\nUnable to give this pet commands. Breaks on damage.", 1, nil, true
    371. 499, "Diseased Bite [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_CREATURE_DISEASE_04.BLP", 0, "Infects the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 4, false
    372. 500, "Flame Breath", "INTERFACE\\ICONS\\SPELL_FIRE_FELFLAMEBREATH.BLP", 0, "Deals [StandardDamage(1$1)] Dragon damage every turn.\r\n\r\n|cFFFF2020Burning|r", 1, 2, false
    373. 501, "Flame Breath", "INTERFACE\\ICONS\\SPELL_FIRE_FELFLAMEBREATH.BLP", 0, "Deals [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage instantly.  Deals [StandardDamage(1$1$177)] additional [petTypeName(abilityPetType())] damage per turn for [duration(1$2)] turns.", 1, 2, false
    374. 502, "Flamethrower", "INTERFACE\\ICONS\\INV_PLATE_FIRELANDS_D_01.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to the current pet every turn.", 1, 7, false
    375. 503, "Flamethrower [NYI Visual]", "INTERFACE\\ICONS\\INV_PLATE_FIRELANDS_D_01.BLP", 3, "Turns the battlefield into a raging inferno$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nFire continues to burn the enemy team dealing [StandardDamage(1$1$ 166)] [School()] damage each turn for [duration(1$2)] turns.", 1, 7, false
    376. 504, "Alpha Strike", "INTERFACE\\ICONS\\ABILITY_HUNTER_EAGLEEYE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nDeals [StandardDamage(1$2)] additional damage if the user goes first.", 1, 3, false
    377. 505, "Silk Cocoon", "INTERFACE\\ICONS\\INV_FABRIC_SILK_03.BLP", 0, "You will block the next attack that strikes you.\r\nSpeed reduced by 100%.", 1, nil, false
    378. 506, "Cocoon Strike", "INTERFACE\\ICONS\\INV_FABRIC_SILK_03.BLP", 4, "Deals [StandardDamage(1$1)] [School()] damage and increases your chance to dodge an attack by 100%.\r\n\r\nLasts [duration(1$2)] turns.", 1, 3, false
    379. 507, "Moth Balls", "INTERFACE\\ICONS\\INV_MISC_THROWINGBALL_01.BLP", 0, "Launches a barrage of smelly pheromones at the target$ each dealing up to [StandardDamage(1$1)] [School()] damage and reducing the target's speed by 25% for [duration(1$5)] rounds.\r\n\r\nThis ability has a high chance to miss.", 1, 3, false
    380. 508, "Moth Dust [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_DUST_INFINITE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and has a 25% chance to put the target to sleep for [duration(1$2)] turns.", 1, 3, false
    381. 509, "Surge", "INTERFACE\\ICONS\\INV_ELEMENTAL_CRYSTAL_WATER.BLP", 0, "Rushes to the enemy on a stream of water$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nThis move always goes first.", 1, 9, false
    382. 510, "Renewing Mists", "INTERFACE\\ICONS\\SPELL_NATURE_TRANQUILITY.BLP", 0, "Restores [points(1$1)] health per turn.", 1, nil, false
    383. 511, "Renewing Mists", "INTERFACE\\ICONS\\SPELL_NATURE_TRANQUILITY.BLP", 0, "Fills the area with a healing mist$ causing your front pet to restore [points(1$1$255)] health every turn.\r\n\r\nLasts [duration(1$1)] turns.", 1, 9, true
    384. 512, "Whirlpool", "INTERFACE\\ICONS\\SPELL_DRUID_URSOLSVORTEX.BLP", 0, "When this effect expires$ your current pet will take [StandardDamage(3$1)] [School()] damage and be unable to flee for [duration(3$2)] turns.", 3, 9, false
    385. 513, "Whirlpool", "INTERFACE\\ICONS\\SPELL_DRUID_URSOLSVORTEX.BLP", 0, "Causes a whirlpool to form under the enemy team. \r\n\r\nIn two turns$ the opponent's pet will take [StandardDamage(3$1$512)] [School()] damage and be rooted for [duration(2$1$399)] turns.", 1, 9, false
    386. 514, "Wild Winds", "INTERFACE\\ICONS\\ABILITY_SHAMAN_WINDWALKTOTEM.BLP", 5, "A sharp wind gust deals [StandardDamage(1$1)] [School()] damage and the enemy team takes [StandardDamage(1$1$677)] [School()] damage every turn for [duration(1$2)] rounds.", 1, 3, false
    387. 515, "Flyby", "INTERFACE\\ICONS\\SPELL_HUNTER_ASPECTOFTHEHAWK.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and increase the target's damage taken by 25% for 4 turns.", 1, 3, false
    388. 516, "Weakened Defenses", "INTERFACE\\ICONS\\ABILITY_WARRIOR_SHATTERINGTHROW.BLP", 0, "Your damage taken has been increased by 25%.", 1, nil, true
    389. 517, "Nocturnal Strike", "INTERFACE\\ICONS\\ABILITY_PRIEST_DARKNESS.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. This ability has a high chance to miss. \r\n\r\nAlways hits if the target is blinded.", 1, 3, false
    390. 518, "Predatory Strike", "INTERFACE\\ICONS\\ABILITY_DRUID_PREDATORYINSTINCTS.BLP", 5, "Deals [StandardDamage(1$1)] [School()] damage. If the target is below 25% health$ they are instantly killed.", 1, 3, false
    391. 519, "Apocalypse [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_WARLOCK_HANDOFGULDAN.BLP", 20, "Calls down a meteor$ which will fall [duration(1$1)] rounds from now$ instantly killing all active pets.\r\n\r\nRoaches always survive this attack.", 1, 5, false
    392. 520, "Hawk Eye", "INTERFACE\\ICONS\\ABILITY_HUNTER_MASTERMARKSMAN.BLP", 0, "Your critical strike chance has been increased by 25%.", 1, nil, false
    393. 521, "Hawk Eye", "INTERFACE\\ICONS\\ABILITY_HUNTER_MASTERMARKSMAN.BLP", 0, "Increases your critical strike chance by 25% for [duration(1$1)] turns.", 1, 3, false
    394. 522, "Nevermore", "INTERFACE\\ICONS\\INV-MOUNT_RAVEN_54.BLP", 20, "Your opponent's next ability becomes unusable for [points(1$1$738)] turns.", 1, 3, false
    395. 523, "Squawk", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage dealt decreased by 25%.", 1, nil, true
    396. 524, "Squawk [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_HUNTER_PET_OWL.BLP", 2, "Lets out a loud squawk$ reducing the damage the target deals by 25% for [duration(1$1)] rounds.", 1, 5, false
    397. 525, "Emerald Bite [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MOUNT_ONYXPANTHER.BLP", 0, "Bites the enemy with Emerald teeth$ dealing [StandardDamage(1$1)] [petTypeName(abilityPetType())] damage.", 1, 6, false
    398. 526, "Stench", "INTERFACE\\ICONS\\ACHIEVEMENT_HALLOWEEN_ROTTENEGG_01.BLP", 0, "Team accuracy reduced by 20%.", 1, nil, true
    399. 527, "Stench", "INTERFACE\\ICONS\\ACHIEVEMENT_HALLOWEEN_ROTTENEGG_01.BLP", 5, "Reduces the enemy team's accuracy by 25% for [duration(1$1)] turns.", 1, 5, false
    400. 528, "Frost Spit", "INTERFACE\\ICONS\\SPELL_FROST_ICEFLOES.BLP", 0, "Spits a blast of ice at the target$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 7, false
    401. 529, "Belly Slide [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_PENGUINPET.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. This ability has a high chance to miss. \r\n\r\nThis attack goes first if the weather is a Blizzard.", 1, 3, false
    402. 532, "Body Slam", "INTERFACE\\ICONS\\ABILITY_MONK_DPSSTANCE.BLP", 0, "Slams into the enemy$ dealing [StandardDamage(1$1)] [School()] damage and dealing [StandardDamage(1$1)] [School()] damage to themselves.", 1, 1, false
    403. 533, "Rebuild", "INTERFACE\\ICONS\\INV_MISC_ENGGIZMOS_37.BLP", 3, "Rebuilds itself and any mechanical allies$ restoring [StandardDamage(1$1)] health.", 1, 7, false
    404. 535, "Pounce", "INTERFACE\\ICONS\\ABILITY_DRUID_SUPRISEATTACK.BLP", 0, "Pounces the enemy$ dealing [StandardDamage(1$1)] [School()] damage plus [StandardDamage(1$2)] [School()] if the user strikes first.", 1, 8, false
    405. 536, "Prowl", "INTERFACE\\ICONS\\ABILITY_DRUID_PROWL.BLP", 5, "Reduces your speed by 30% and increases the damage of your next attack by 150%.", 1, 8, false
    406. 537, "Attack Reduction", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Damage dealt has been reduced by 50% for the next attack.", 0, nil, true
    407. 538, "Devour", "INTERFACE\\ICONS\\ABILITY_DRUID_SKINTEETH.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage every turn for [numTurns()] turns. \r\n\r\nIf the user kills an enemy with Devour$ they restore [StandardDamage(1$2)] health.", 2, 8, false
    408. 539, "Bleat", "INTERFACE\\ICONS\\SPELL_NATURE_SICKLYPOLYMORPH.BLP", 4, "Sings an inspiring song$ which restores [StandardDamage(1$1)] health to all allies.", 1, 5, false
    409. 540, "Chew", "INTERFACE\\ICONS\\SPELL_NATURE_POLYMORPH.BLP", 0, "Chewing on grass. Will deal [StandardDamage(1$1)] damage when done.", 2, nil, false
    410. 541, "Chew", "INTERFACE\\ICONS\\SPELL_NATURE_POLYMORPH.BLP", 0, "Patiently chew some grass. On the next turn$ you will deal [StandardDamage(2$1$540)] [School()] damage in addition to your next attack.", 1, 5, false
    411. 542, "Shattered Defenses", "INTERFACE\\ICONS\\ABILITY_WARRIOR_SHIELDBREAK.BLP", 0, "Increases your damage taken by 100%.", 0, nil, true
    412. 543, "Prowl", "INTERFACE\\ICONS\\ABILITY_DRUID_PROWL.BLP", 0, "Speed reduced by 30%.\r\nDamage increased by 150%.", 1, nil, false
    413. 544, "Speed Boost", "INTERFACE\\ICONS\\PETBATTLE_SPEED.BLP", 0, "Your speed has been increased by 100.", 1, nil, false
    414. 546, "Frost Nova", "INTERFACE\\ICONS\\SPELL_FROST_FROSTNOVA.BLP", 0, "This pet cannot be swapped.\r\n\r\n|cFF0070DDChilled|r.", 1, nil, false
    415. 549, "GM Trap", "INTERFACE\\ICONS\\INV_PET_PETTRAP.BLP", 0, "", 1, 1, false
    416. 562, "GM Kill", "INTERFACE\\ICONS\\ACHIEVEMENT_BG_KILLINGBLOW_30.BLP", 0, "Kills the target. Cheater.", 1, 2, false
    417. 563, "Quick Attack", "INTERFACE\\ICONS\\ACHIEVEMENT_GUILDPERK_MRPOPULARITY_RANK2.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. \r\n\r\nThis ability always goes first.", 1, 5, false
    418. 564, "Dive [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_GIFTOFTHEWATERSPIRIT.BLP", 0, "Submerges$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 9, false
    419. 565, "Underground", "INTERFACE\\ICONS\\ABILITY_DEATHKNIGHT_DESECRATEDGROUND.BLP", 0, "Submerged. \r\nUnattackable.", 1, nil, false
    420. 566, "Powerball [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_FOOD_73CINNAMONROLL.BLP", 0, "Spin at the enemy$ dealing [StandardDamage(1$1)] [School()] damage and increasing your speed by [points(1$2)]. \r\n\r\nYour speed continues to increase each time you use Powerball.", 1, 5, false
    421. 567, "Rush", "INTERFACE\\ICONS\\ABILITY_HUNTER_PET_WOLF.BLP", 0, "Rushes the enemy$ dealing [StandardDamage(1$1)][School()] damage and causes the user to go first next turn.", 1, 8, false
    422. 568, "Feign Death", nil, 0, "The user feigns death$ causing the opponent's attack to miss. The user then swaps automatically with your highest health pet.", 1, 8, false
    423. 569, "Crystal Prison", "INTERFACE\\ICONS\\CREATUREPORTRAIT_ILLIDANCRYSTAL01.BLP", 5, "Seals the target in crystal$ stunning them for [duration(1$1)] turns.", 1, 8, false
    424. 570, "Broom Strike", "INTERFACE\\ICONS\\ACHIEVEMENT_HALLOWEEN_CAT_01.BLP", 0, "Hop onto a magical broom and fly at the enemy$ dealing [StandardDamage(1$1)] [School()] damage with a [points(1$2)]% chance to force the opponent to switch to another pet.", 1, 6, false
    425. 571, "Horn Attack", "INTERFACE\\ICONS\\INV_WEAPON_SHORTBLADE_70.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage.\r\n\r\nIf the user is faster than the target$ they have a [points(1$2)]% chance to be trampled and lose their turn.", 1, 8, false
    426. 572, "Mudslide", "INTERFACE\\ICONS\\ACHIEVEMENT_ZONE_SWAMPSORROWS_01.BLP", 0, "Calls down a mudslide$ dealing [StandardDamage(1$1)] [School()] damage and causing muddy weather for [duration(1$2)] turns. \r\n\r\nMuddy weather prevents any pet on the battlefield from swapping out.", 1, 5, false
    427. 573, "Nature's Touch", "INTERFACE\\ICONS\\SPELL_NATURE_HEALINGWAVEGREATER.BLP", 3, "Restores [StandardDamage(1$1)] health to the user.", 1, 9, false
    428. 574, "Nature's Ward", nil, 0, "Restores [StandardHealing(1$1)] health every turn for [duration(1$2)] turns.\r\n\r\nWhile healing$ your type is tranformed into [School()].", 1, 7, false
    429. 575, "Slippery Ice", "INTERFACE\\ICONS\\SPELL_HUNTER_ICETRAP.BLP", 0, "Shoots a jet of rapidly chilling ice$ dealing [StandardDamage(1$1)] [School()] damage and coats the ground near the enemy with ice.\r\n\r\nFrozen ground increases the chance they will slip and miss by 20%. Lasts [duration(1$1)] rounds.", 1, 7, false
    430. 576, "Perk Up [NYI Visual]", "INTERFACE\\ICONS\\INV_PET_MOUSE.BLP", 4, "Restores [StandardHealing(1$1)] health and increases the maximum health of your team by [points(1$1$577)] for [duration(1$2)] turns.", 1, 5, false
    431. 577, "Healthy", "INTERFACE\\ICONS\\PETBATTLE_HEALTH.BLP", 0, "Increases your maximum health by 5 points per level.", 1, nil, false
    432. 578, "Buried Treasure [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_BONE_01.BLP", 3, "Digs up a bone$ healing up to [points(1$1)]% of your health.", 1, 5, false
    433. 579, "Gobble Strike [NYI Visual]", "INTERFACE\\ICONS\\INV_THANKSGIVING_TURKEY.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and increases your speed by 50% for [duration(1$2] turns.", 1, 5, false
    434. 580, "Food Coma [NYI Visual]", "INTERFACE\\ICONS\\INV_THANKSGIVING_TURKEY_ACT.BLP", 5, "Stun the target for [duration(1$1)] turns.", 1, 5, false
    435. 581, "Flock", "INTERFACE\\ICONS\\SPELL_MAGIC_POLYMORPHCHICKEN.BLP", 0, "Flocks the target$ causing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)] [School()] damage every turn. Lasts [numTurns()] turns. \r\n\r\nOpponents struck by the flock take double damage for [duration(1$4)] rounds.", 3, 3, false
    436. 582, "Intensity [NYI Visual]", nil, 0, "Focuses intensely on the next three attacks$ dealing bonus damage. \r\n\r\nThe bonus damage decreases each time you attack.", 1, 5, false
    437. 583, "Intensity", "INTERFACE\\ICONS\\PETBATTLE_ATTACK.BLP", 0, "Deals bonus damage on the next attack.\r\n\r\nThe bonus is reduced each time you deal damage.", 1, nil, false
    438. 584, "Winter Spirit", "INTERFACE\\ICONS\\SPELL_FROST_ICEFLOES.BLP", 0, "Fires a blast of cold air$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 7, false
    439. 585, "Holiday Cheer", "INTERFACE\\ICONS\\INV_CHEST_CLOTH_HOLIDAY_CHRISTMAS_A_02.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and increases your speed by 100% for 4 turns.", 1, 1, false
    440. 586, "Gift of Winter's Veil [NYI Visual]", "INTERFACE\\ICONS\\INV_HOLIDAY_CHRISTMAS_PRESENT_01.BLP", 4, "Deals [StandardDamage(1$1)] [School()] damage to the enemy.", 1, 6, false
    441. 587, "Plumage [NYI]", "INTERFACE\\ICONS\\INV_FEATHER_13.BLP", 0, "Reduces up to [StandardDamage(1$1) damage taken by your team.", 1, 5, false
    442. 588, "Devastate", "INTERFACE\\ICONS\\ABILITY_MONK_DRAGONKICK.BLP", 0, "Fly up high$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 2, false
    443. 589, "Arcane Storm", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANE03.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to all enemies and warps the weather into Arcane Winds for [duration(1$2)] turns. \r\n\r\nDuring Arcane Winds$ pets cannot be stunned or rooted.", 1, 6, false
    444. 590, "Arcane Winds", "INTERFACE\\ICONS\\SPELL_ARCANE_ARCANE03.BLP", 0, "Pets cannot be stunned or rooted.", 1, nil, false
    445. 591, "Wild Magic", "INTERFACE\\ICONS\\ABILITY_DRUID_INFECTEDWOUND.BLP", 0, "Adds [5*AttackBonus()] damage to every attack against the target.", 1, nil, true
    446. 592, "Wild Magic", "INTERFACE\\ICONS\\ABILITY_DRUID_INFECTEDWOUND.BLP", 0, "Adds [5*AttackBonus()] damage to every attack against the target. \r\n\r\nLasts [duration(1$1)] turns.", 1, 6, false
    447. 593, "Surge of Power", "INTERFACE\\ICONS\\SPELL_HOLY_SURGEOFLIGHT.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage. The user must recharge for two turns afterwards.\r\n\r\nWhile recharging$ you cannot perform any other actions.", 3, 6, false
    448. 594, "Sleeping Gas", "INTERFACE\\ICONS\\INV_MISC_POWDER_MITHRIL.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage. If the target is struck 3 times$ they will fall asleep for up to [duration(1$2)] turns.", 1, 2, false
    449. 595, "Moonfire", "INTERFACE\\ICONS\\SPELL_NATURE_STARFALL.BLP", 10, "Deals [StandardDamage(1$1)] [School()] damage and turns the weather into Moonlight for [duration(1$2)] turns.\r\n\r\nDuring Moonlight$ all pets receive 100% additional healing and Magic abilities deal 25% additional damage.", 1, 6, false
    450. 596, "Moonlight", "INTERFACE\\ICONS\\SPELL_NATURE_MOONGLOW.BLP", 0, "Increases healing received by 100%.", 0, 6, true
    451. 597, "Emerald Presence [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_GEM_EMERALD_01.BLP", 0, "Reduces up to [5*AttackBonus()] damage from each attack against you. \r\n\r\nLasts [duration(1$1)] turns.", 1, 6, false
    452. 598, "Emerald Dream [NYI Visual]", "INTERFACE\\ICONS\\SPELL_ARCANE_PORTALSHATTRATH.BLP", 0, "Fall asleep$ restoring [points(1$1$246)] health on the first turn$ [points(2$1$246)] health on the second$ then [points(3$1$ 246)] health on the third.\r\n\r\nWhile in the Emerald Dream$ you cannot swap pets.", 1, 8, false
    453. 599, "Emerald Dream", "INTERFACE\\ICONS\\SPELL_ARCANE_PORTALSHATTRATH.BLP", 0, "Dreaming. \r\nRestores increasing health every turn.", 3, nil, false
    454. 600, "Time Stop [NYI Visual]", "INTERFACE\\ICONS\\SPELL_NATURE_TIMESTOP.BLP", 5, "Stun the target for [duration(1$1)] turns.", 1, 2, false
    455. 601, "Time Bomb", "INTERFACE\\ICONS\\SPELL_HOLY_BORROWEDTIME.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Magic damage and stunning the target for 1 round.", 3, nil, false
    456. 602, "Time Bomb [NYI Visual]", "INTERFACE\\ICONS\\SPELL_HOLY_BORROWEDTIME.BLP", 0, "Places a temporal rift beneath the enemy team. \r\n\r\nAfter 3 turns$ the rift erupts$ causing the current enemy pet to take [StandardDamage(3$1$175)] [School()] damage and be stunned for [duration(3$2$175)] turn.", 1, 6, false
    457. 603, "Temporal Lapse", "INTERFACE\\ICONS\\SPELL_MAGE_ALTERTIME.BLP", 20, "Your team's attacks are doubled for [duration(1$2)] turns.", 1, 2, false
    458. 604, "Extreme Power", "INTERFACE\\ICONS\\SPELL_MAGE_ALTERTIME.BLP", 0, "Your team's attacks deal 100% additional damage.", 0, nil, false
    459. 605, "Elementium Bolt", "INTERFACE\\ICONS\\ABILITY_DEATHWING_SHRAPNEL.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Dragon damage and stunning the target for [duration(3$2)] rounds.", 3, nil, false
    460. 606, "Elementium Bolt", "INTERFACE\\ICONS\\ABILITY_DEATHWING_SHRAPNEL.BLP", 0, "Launches an elementium bolt at the enemy team. \r\n\r\nAfter 3 turns$ the bolt strikes$ causing the current enemy pet to take [StandardDamage(3$1$175)] [School()] damage and become stunned for [duration(3$2$175)] turn.", 1, 7, false
    461. 607, "Cataclysm", "INTERFACE\\ICONS\\ABILITY_DEATHWING_CATACLYSM.BLP", 0, "Devastates the target$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nThis ability has a high chance to miss.", 1, 2, false
    462. 608, "Nether Blast", "INTERFACE\\ICONS\\SPELL_ARCANE_BLAST.BLP", 0, "Blasts the enemy with a surge of arcane power$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nDamage increases by [5*AttackBonus()] each time it hits. Max [25 *AttackBonus()] [petTypeName(abilityPetType())] damage.", 1, 6, false
    463. 609, "Instability [NYI Visual]", nil, 0, "Deals [StandardDamage(1$1)] [School()] damage. This attack has a high change to miss.", 1, 2, false
    464. 610, "Ancient Blessing", nil, 0, "Increases your maximum health by [points(1$1)] points per level.", 1, nil, false
    465. 611, "Ancient Blessing [NYI Visual]", "INTERFACE\\ICONS\\INV_QIRAJIDOL_LIFE.BLP", 5, "Heals the user for [StandardDamage(1$2)] health and increases the maximum health of your team by [points(1$1$610)] per level for [duration(1$1)] turns.", 1, 5, false
    466. 612, "Proto-Strike", "INTERFACE\\ICONS\\ABILITY_MOUNT_DRAKE_PROTO.BLP", 0, "Fly up high$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 2, false
    467. 613, "Competitive Spirit", "INTERFACE\\ICONS\\ACHIEVEMENT_REPUTATION_05.BLP", 0, "Damage increased by 25%.", 1, nil, false
    468. 614, "Competitive Spirit", "INTERFACE\\ICONS\\ACHIEVEMENT_REPUTATION_06.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and increases your damage dealt by 25% for [duration(1$2)] turns.", 1, 6, false
    469. 615, "Wrath of Tarecgosa", "INTERFACE\\ICONS\\STAVE_2H_TARECGOSA_E_01STAGEFINAL.BLP", 20, "Your team's attacks are doubled for [duration(1$2)] turns.", 1, 2, false
    470. 616, "Blinkstrike", "INTERFACE\\ICONS\\SPELL_ARCANE_BLINK.BLP", 0, "Blink to the enemy$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nThis move always goes first.", 1, 6, false
    471. 617, "Spark", "INTERFACE\\ICONS\\ITEM_SPARKOFRAGNOROS.BLP", 0, "Fires a spark 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nAttacks an additional time if the user attacks first.", 1, 7, false
    472. 621, "Stone Rush", "INTERFACE\\ICONS\\ABILITY_MONK_DPSSTANCE.BLP", 0, "Slams into the enemy$ dealing [StandardDamage(1$1)] [School()] damage and dealing [StandardDamage(1$1)] [School()] damage to themselves.", 1, 1, false
    473. 623, "Ice Tomb", "INTERFACE\\ICONS\\SPELL_FROST_FROZENORB.BLP", 0, "Detonates after [numTurns()] turns$ dealing [StandardDamage(3$1)] Elemental damage and stunning the target for 1 round.", 3, nil, false
    474. 624, "Ice Tomb [NYI Visual]", "INTERFACE\\ICONS\\SPELL_FROST_FROZENORB.BLP", 0, "Launches an orb of freezing energy at the target. \r\n\r\nAfter 3 turns$ the ice hits$ causing the current enemy pet to take [StandardDamage(3$1$623)] [School()] damage and be stunned for [duration(3$2$623)] turn.", 1, 7, false
    475. 625, "Ice Spike", "INTERFACE\\ICONS\\SPELL_FROST_ICESHARD.BLP", 0, "Impales the target$ dealing [StandardDamage(1$1)] [School()] damage.\r\n\r\nThis ability has a high chance to miss.", 1, 7, false
    476. 626, "Skitter", "INTERFACE\\ICONS\\INV_MISC_MONSTERSPIDERCARAPACE_01.BLP", 0, "Pokes the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 5, false
    477. 627, "Rock Barrage", "INTERFACE\\ICONS\\INV_STONE_10.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage to the current pet every turn.", 1, 7, false
    478. 628, "Rock Barrage", "INTERFACE\\ICONS\\INV_STONE_10.BLP", 3, "Hurls rocks at the enemy$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nRocks continue to fall on the enemy team dealing [StandardDamage(1$1$ 166)] [School()] damage each turn for 3 turns.", 1, 7, false
    479. 630, "Poisoned Branch", "INTERFACE\\ICONS\\INV_STAFF_BRANCH.BLP", 0, "Instantly deals [StandardDamage(1$1)] [School()] damage and deals [StandardDamage(1$1$379)] additional [School()] damage per round for [duration(1$2)] rounds.", 1, 7, false
    480. 631, "Super Sticky Goo [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_VOLATILELIFE_GREEN.BLP", 0, "Flings a sticky goo at the target$ dealing [StandardDamage(1$1)] [School()] damage and making it impossible to flee for [duration(1$1)] turns.", 1, 7, false
    481. 632, "Confusing Sting [NYI]", "INTERFACE\\ICONS\\ABILITY_POISONARROW.BLP", 0, "The target is stung$ dealing [StandardDamage(1$1)] [School()] damage every turn for [duration(1$1)] turns. \r\n\r\nWhile stung$ the target has a 10% chance to confuse themselves while attacking.", 1, 3, false
    482. 633, "Confusing Sting", "INTERFACE\\ICONS\\SPELL_NATURE_NULLIFYPOISON.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.\r\n\r\n|cFF1EFF00Poisoned.|r", 1, 3, false
    483. 634, "Minefield", "INTERFACE\\ICONS\\INV_MISC_ENGGIZMOS_20.BLP", 0, "Lays down a field of mines behind the opponent. The next pet to swap into the battle will receive [StandardDamage(1$1$635)] [School()] damage.", 1, 10, false
    484. 635, "Minefield", "INTERFACE\\ICONS\\INV_MISC_ENGGIZMOS_20.BLP", 0, "The next pet on this team to enter the battlefield recieves [StandardDamage(1$1)] [School()] damage.", 0, 10, false
    485. 636, "Sticky Grenade", "INTERFACE\\ICONS\\INV_MISC_PYRIUMGRENADE.BLP", 0, "Throws a sticky grenade at the target. After [numTurns(637)] the grenade detonates$ dealing [StandardDamage(3$1$637)] [School()] damage.", 1, 10, false
    486. 637, "Sticky Grenade", "INTERFACE\\ICONS\\INV_MISC_PYRIUMGRENADE.BLP", 0, "Throws a sticky grenade at the target. After [numTurns()] the grenade detonates$ dealing [StandardDamage(1$1)] [School()] damage.", 3, nil, false
    487. 639, "Toxic Smoke", "INTERFACE\\ICONS\\SPELL_HOLIDAY_TOW_SPICECLOUD.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.", 1, 10, false
    488. 640, "Toxic Smoke", "INTERFACE\\ICONS\\SPELL_HOLIDAY_TOW_SPICECLOUD.BLP", 0, "Covers the enemy team in toxic smoke$ dealing [StandardDamage(1$1)] [School()] and dealing [StandardDamage(1$1$639)] [School()] damage every turn for [duration(1$2)] turns.", 1, 10, false
    489. 641, "Egg Barrage", "INTERFACE\\ICONS\\INV_EGG_01.BLP", 0, "Deals [StandardDamage(1$1)] Critter damage to the current pet every turn.", 1, nil, false
    490. 642, "Egg Barrage", "INTERFACE\\ICONS\\INV_EGG_01.BLP", 3, "Hurls eggs at the enemy$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nEggs continue to fall on the enemy team dealing [StandardDamage(1$1$ 166)] [School()] damage each turn for 3 turns.", 1, 5, false
    491. 643, "Nut Bomb [NYI]", nil, 0, "Places a nut bomb near the enemy. After [duration(1$1)] turns the bomb will detonate$ harming the current enemy pet.", 1, 6, false
    492. 644, "Quake", "INTERFACE\\ICONS\\ACHIEVEMENT_BOSS_XT002DECONSTRUCTOR_01.BLP", 0, "Pounds the ground$ dealing [StandardDamage(1$1)] [School()] damage to the enemy and half that damage to their backline pet.\r\n\r\nQuake lasts [numTurns()] and can effect enemies underground.", 3, 10, false
    493. 645, "Launch", "INTERFACE\\ICONS\\INV_GIZMO_ROCKETBOOT_01.BLP", 0, "Launch up high$ becoming unattackable for one turn. \r\n\r\nOn the next turn$ you attack$ dealing [StandardDamage(2$1)] [School()] damage.", 2, 10, false
    494. 646, "Shock and Awe", "INTERFACE\\ICONS\\ABILITY_MONK_PALMSTRIKE.BLP", 3, "Deals [StandardDamage(1$1)] [School()] damage and has a [accuracy(1$2)]% chance to stun the target for [duration(1$2)] turn.", 1, 10, false
    495. 647, "Bombing Run [NYI]", nil, 0, "Deals [StandardDamage(1$1)] [School()] damage and places a bomb near the enemy team. \r\n\r\nAfter [duration(1$1)] turns the bomb will detonate$ harming the current enemy pet.", 1, 6, false
    496. 648, "Bone Bite [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_BONE_09.BLP", 0, "Bites at the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 4, false
    497. 649, "BONESTORM [NYI Visual]", "INTERFACE\\ICONS\\ACHIEVEMENT_BOSS_LORDMARROWGAR.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage$ but costs [points(1$1)]% of your total health.", 1, 4, false
    498. 650, "Bone Prison [NYI Visual]", "INTERFACE\\ICONS\\INV_MISC_BONE_02.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and prevents the target from fleeing for [duration(1$2)] turns.", 1, 4, false
    499. 651, "Rock$ Paper$ Scissors [NYI]", nil, 0, "Deals [StandardDamage(1$1)] damage from a random school.", 1, 4, false
    500. 652, "Haunt [NYI]", "INTERFACE\\ICONS\\ABILITY_WARLOCK_HAUNT.BLP", 0, "The user transforms into an unholy spirit and enters the target$ dealing [StandardDamage(1$1)] [School()] damage every turn. \r\n\r\nWhile haunting a target$ the user is considered dead.", 1, 4, false
    501. 653, "Haunt", "INTERFACE\\ICONS\\ABILITY_WARLOCK_HAUNT.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage every turn.", 1, 4, false
    502. 654, "Ghostly Bite [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_WARLOCK_IMPROVEDSOULLEECH.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and stuns the user for [duration(1$2)] turns.", 1, 4, false
    503. 655, "Creepy Chomp [NYI Visual]", "INTERFACE\\ICONS\\TRADE_ARCHAEOLOGY_TROLLTOOTH W GOLDFILLING.BLP", 0, "Chomps on the enemy$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 4, false
    504. 657, "Plagued Blood", "INTERFACE\\ICONS\\SPELL_SHADOW_CORPSEEXPLODE.BLP", 0, "Deals [StandardDamage(1$1)] [School()] damage and plagues the target for [duration(1$2)] rounds. \r\n\r\nWhile plagued$ undead enemies who strike the target are healed.", 1, 4, false
    505. 658, "Plagued Blood [NYI]", nil, 0, "When struck by an Undead attack$ the attacker is healed.", 0, nil, true
    506. 659, "Spreading Infection [NYI]", nil, 4, "Deals [StandardDamage(1$1)] [School()] damage and places a contagious infection on the target which deals [StandardDamage(1$1$123)] [School()] damage twice then jumps to an allied pet. Jumps up to 3 times.", 1, 4, false
    507. 660, "Spreading Infection", nil, 0, "Deals [StandardDamage(1$1)] damage each turn.\r\n\r\nWhen the effect expires$ it jumps to an ally.", 2, nil, false
    508. 661, "Spreading Infection", nil, 0, "Deals [StandardDamage(1$1)] damage each turn.\r\n\r\nWhen the effect expires$ it jumps to an ally.", 2, nil, false
    509. 662, "Spreading Infection", nil, 0, "Deals [StandardDamage(1$1)] damage each turn.", 2, nil, false
    510. 663, "Corpse Explosion", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_EXPLODE_GHOUL.BLP", 0, "Instantly kills the user$ causing [points(1$1)]% of their health as [School()] damage to the enemy and infects the target.\r\n\r\nInfected targets receive  [points(1$1$664)]% of their maximum health as [School()] damage every turn for [duration(1$2)] turns.", 1, 4, false
    511. 664, "Corpse Explosion", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_EXPLODE_GHOUL.BLP", 0, "Deals [points(1$1)]% of the target's health as [School()] damage every turn.\r\n\r\n|cFFAAFFAAPoisoned|r", 1, 4, false
    512. 665, "Consume Corpse [NYI Visual]", "INTERFACE\\ICONS\\SPELL_DEATHKNIGHT_GNAW_GHOUL.BLP", 5, "Consumes an allied corpse to restore [points(1$1)]% of total health.\r\n\r\nCorpses can only be used once.", 1, 4, false
    513. 666, "Rabid Strike", nil, 0, "Deals [StandardDamage(1$1)] [School()] damage and turns the target rabid for [duration(1$2)] rounds.\r\n\r\nWhile rabid$ the target deals 25% additional damage and receives 50% additional damage.", 1, 4, false
    514. 667, "Aged Yolk", "INTERFACE\\ICONS\\ACHIEVEMENT_HALLOWEEN_ROTTENEGG_01.BLP", 3, "Removes all buffs and debuffs.", 1, 1, true
    515. 668, "Dreadful Breath [NYI Visual]", "INTERFACE\\ICONS\\ACHIEVEMENT_REPUTATION_MURLOCORACLE.BLP", 0, "Channels a dreadful toxic breath which deals [StandardDamage(1$1)] [School()] damage to the enemy team each round for [numTurns()] rounds.\r\n\r\nDeals additional damage if the weather is rainy.", 3, 1, false
    516. 669, "Backflip [NYI Visual]", "INTERFACE\\ICONS\\ABILITY_MONK_ROUNDHOUSEKICK.BLP", 3, "Performs a flip$ dealing [StandardDamage(1$1)] [School()] damage. \r\n\r\nInterrupts the opponents turn if the user goes first.", 1, 1, false
    517. 670, "Snap Trap", "INTERFACE\\ICONS\\ABILITY_HUNTER_TRAPLAUNCHER.BLP", 0, "Places a snap trap onto the ground. Opponents have a chance to trigger the trap each time they attack.\r\n\r\nWhen the opponent triggers the trap$ they will take [StandardDamage(1$1$1)] [School()] damage and be unable to attack for [duration(1$2)] turns.", 1, 1, false
    518. 671, "Snap Trap", "INTERFACE\\ICONS\\ABILITY_HUNTER_TRAPLAUNCHER.BLP", 0, "Attacks have a chance to stun and root the user$ making them unable to flee.", 1, nil, false
    519. 677, "Wild Winds", "INTERFACE\\ICONS\\ABILITY_SHAMAN_WINDWALKTOTEM.BLP", 0, "The current pet takes [StandardDamage(1$1)] [School()] damage every turn.", 1, 3, false
    520. 681, "Battle Recovery", "INTERFACE\\ICONS\\INV_MISC_EMBERWEAVEBANDAGE.BLP", 0, "Your pet regains a portion of the health lost fighting after battle.", 1, 1, true
    521. 682, "Apocalypse", "INTERFACE\\ICONS\\ABILITY_WARLOCK_HANDOFGULDAN.BLP", 0, "A meteor is falling from the twisting nether. When it lands all active pets will die.\r\n\r\nUnless they are cockroaches.", 11, 5, false
    522. 683, "Apocalypse", "INTERFACE\\ICONS\\ABILITY_WARLOCK_HANDOFGULDAN.BLP", 0, "A meteor is falling from the twisting nether. When it lands all active pets will die.\r\n\r\nUnless they are cockroaches.", 11, 5, false
    523. 684, "GM Suicide", "INTERFACE\\ICONS\\ACHIEVEMENT_BG_KILLINGBLOW_30.BLP", 0, "Kills the caster. Giving up so soon?", 1, 4, false
    524. 706, "Swarm", "INTERFACE\\ICONS\\SPELL_NATURE_INSECT_SWARM2.BLP", 0, "Starts a swarm$ causing [StandardDamage(1$1)+StandardDamage(1$2)+StandardDamage(1$3)] [School()] damage every turn. Lasts [numTurns()] turns. \r\n\r\nOpponents struck by the swarm take double damage for [duration(1$4)] rounds.", 3, 5, false
    525. 710, "Build Turret", "INTERFACE\\ICONS\\INV_GIZMO_GNOMISHFLAMETURRET.BLP", 0, "Builds a turret that assaults the enemy team's front pet$ dealing [StandardDamage(1$1$711)*3] [School()] damage each round. \r\n\r\nEach turret lasts [duration(1$1)] rounds.", 1, 10, false
    526. 711, "Turret", "INTERFACE\\ICONS\\INV_GIZMO_GNOMISHFLAMETURRET.BLP", 0, "Deals [StandardDamage(1$1)*3] [School()] damage to the enemy's front pet each round.", 1, 10, false
    527. 712, "Railgun", "INTERFACE\\ICONS\\INV_GIZMO_ZAPTHROTTLEGASCOLLECTOR.BLP", 0, "Burns the enemy with a blast of fire$ dealing [StandardDamage(1$1)] [School()] damage.", 1, 7, false
    528. 713, "Blitz", "INTERFACE\\ICONS\\WARRIOR_TALENT_ICON_BLITZ.BLP", 0, "Pummels the enemy 1-2 times$ dealing [StandardDamage(1$1)] [School()] damage per hit.\r\n\r\nHits an additional time if the user attacks first.", 1, 1, false
    529. 714, "GM Revive", "INTERFACE\\ICONS\\SPELL_NATURE_REINCARNATION.BLP", 0, "Resurrect Pets.", 1, 1, false
    530. 717, "Banished", "INTERFACE\\ICONS\\SPELL_SHADOW_CRIPPLE.BLP", 0, "Banished pets cannot return to battle until the effect has worn off.", 0, nil, false
    531. 718, "Mudslide [NYI]", "INTERFACE\\ICONS\\ACHIEVEMENT_ZONE_SWAMPSORROWS_01.BLP", 0, "All pets who enter battle are rooted for [duration(1$1)] turns.\r\n\r\nRooted enemies are unable to swap out.", 0, 5, false
    532. 720, "Clone", "INTERFACE\\ICONS\\TRADE_ENCHANTING_GREATERMYSTERIOUSESSENCE.BLP", 0, "A clone has been created who will perform additional attacks each round.", 0, 6, false
    533. 721, "Slippery Ice", "INTERFACE\\ICONS\\SPELL_HUNTER_ICETRAP.BLP", 0, "Accuracy reduced by 20%.\r\n\r\nAll pets are considered |cFF0070DDChilled|r.", 0, 7, true
    534. 722, "GM Unkillable", "INTERFACE\\ICONS\\ACHIEVEMENT_BG_MOST_DAMAGE_KILLINGBLOW_DIELEAST.BLP", 0, "Makes the target unkillable.", 1, 1, false
    535. 723, "Failsafe", "INTERFACE\\ICONS\\ICON_PETFAMILY_MECHANICAL.BLP", 0, "Comes back to life once per battle$ returning to 25% health.", 1, 10, true
    536. 724, "Damned", "INTERFACE\\ICONS\\ICON_PETFAMILY_UNDEAD.BLP", 0, "Undead pets return to life for one round when killed.", 1, 4, false
    537. 725, "GM Unkillable", "INTERFACE\\ICONS\\ACHIEVEMENT_BG_MOST_DAMAGE_KILLINGBLOW_DIELEAST.BLP", 0, "Hey baby$ just look at how unkillable I am.", 1, nil, true
    538. 726, "Recovery", "INTERFACE\\ICONS\\ICON_PETFAMILY_HUMANOID.BLP", 0, "Humanoids recover [points(1$1$726)]% of their maximum health every time they attack.", 1, 1, true
    539. 728, "GM Pass", "INTERFACE\\ICONS\\INV_MISC_PUNCHCARDS_RED.BLP", 0, "After you.\r\n\r\nNo$ no$ after YOU.", 1, 1, false
    540. 733, "GM Execute Range", "INTERFACE\\ICONS\\ACHIEVEMENT_BG_KILLX_FLAGCARRIERS_BEFORE_LEAVE_BASE.BLP", 0, "Sets the target's health to [points(1$1)]%.", 1, 2, false
    541. 734, "Crystal Prison", "INTERFACE\\ICONS\\CREATUREPORTRAIT_ILLIDANCRYSTAL01.BLP", 0, "Stunned.\r\n\r\nUnable to give this pet commands.", 1, nil, true
    542. 735, "Speed Boost", "INTERFACE\\ICONS\\PETBATTLE_SPEED.BLP", 0, "Your speed has been increased by 50.", 1, nil, false
    543. 737, "Meteor", "INTERFACE\\ICONS\\CREATUREPORTRAIT_INFERNAL_BALL_02.BLP", 0, "Flying up high. \r\nUnattackable.", 1, nil, true
    544. 738, "Nevermore", "INTERFACE\\ICONS\\INV-MOUNT_RAVEN_54.BLP", 0, "This pet's next ability will be locked out for [points(1$1)] rounds.", 1, 3, true
    noteworthy:

  • C_PetJournal.GetPetAbilityList
    C_PetJournal.GetPetAbilityInfo


    (202 is the speciesID of [Baby Blizzard Bear])
    Code:
    abilities, levels = C_PetJournal.GetPetAbilityList(speciesID)
    name, icon, petType = C_PetJournal.GetPetAbilityInfo(abilityID)
    Lua Code:
    1. C_PetJournal.GetPetAbilityList(202)
    2. >>
    3. {
    4.     1 = 110, -- C_PetJournal.GetPetAbilityInfo(110) => "Bite", "INTERFACE\ICONS\ABILITY_DRUID_FEROCIOUSBITE.BLP", 8
    5.     2 = 345, -- "Maul", "INTERFACE\ICONS\ABILITY_DRUID_MAUL.BLP", 8
    6.     3 = 247, -- "Hibernate", "INTERFACE\ICONS\ABILITY_HIBERNATION.BLP", 8
    7.     4 = 206, -- "Call Blizzard", "INTERFACE\ICONS\SPELL_FROST_ICESTORM.BLP", 7
    8.     5 = 348, -- "Bash", "INTERFACE\ICONS\ABILITY_DRUID_BASH.BLP", 8
    9.     6 = 347  -- "Roar", "INTERFACE\ICONS\SPELL_DRUID_STAMEDINGROAR.BLP", 8
    10. },
    11. {
    12.     1 = 1, -- available at level 1
    13.     2 = 2, -- available at level 2
    14.     3 = 4, -- available at level 4
    15.     4 = 10
    16.     5 = 15,
    17.     6 = 20
    18. }

  • petType


    Lua Code:
    1. BATTLE_PET_NAME_1 = "Humanoid"
    2. BATTLE_PET_NAME_2 = "Dragonkin"
    3. BATTLE_PET_NAME_3 = "Flying"
    4. BATTLE_PET_NAME_4 = "Undead"
    5. BATTLE_PET_NAME_5 = "Critter"
    6. BATTLE_PET_NAME_6 = "Magic"
    7. BATTLE_PET_NAME_7 = "Elemental"
    8. BATTLE_PET_NAME_8 = "Beast"
    9. BATTLE_PET_NAME_9 = "Aquatic"
    10. BATTLE_PET_NAME_10 = "Mechanical"

(2012.07.05) Edit: There is something odd going on. When I edit this post, it doesn't show the "Last edited by ..." thing. Not that I don't mind though =)