Advertisement
Guest User

Untitled

a guest
Nov 7th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.15 KB | None | 0 0
  1. local spells = {
  2.     ["DEATHKNIGHT"] = {
  3.         [1] = {
  4.             ["Name"] = "Blood Shield",
  5.             ["Icon"] = "spell_deathknight_butcher2",
  6.         },
  7.         [2] = {
  8.             ["Name"] = "Power Word: Shield",
  9.             ["Icon"] = "spell_holy_powerwordshield",
  10.         },
  11.         [3] = {
  12.             ["Name"] = "Divine Aegis",
  13.             ["Icon"] = "spell_holy_devineaegis",
  14.         },
  15.         [4] = {
  16.             ["Name"] = "Illuminated Healing",
  17.             ["Icon"] = "spell_holy_absolution",
  18.         },
  19.         [5] = {
  20.             ["Name"] = "Sacred Shield",
  21.             ["Icon"] = "ability_paladin_blessedmending",
  22.         },
  23.         [6] = {
  24.             ["Name"] = "Total",
  25.             ["Icon"] = "spell_arcane_arcaneresilience",
  26.         },
  27.     ["MONK"] = {
  28.         [1] = {
  29.             ["Name"] = "Guard",
  30.             ["Icon"] = "ability_monk_guard",
  31.         },
  32.         [2] = {
  33.             ["Name"] = "Power Word: Shield",
  34.             ["Icon"] = "spell_holy_powerwordshield",
  35.         },
  36.         [3] = {
  37.             ["Name"] = "Divine Aegis",
  38.             ["Icon"] = "spell_holy_devineaegis",
  39.         },
  40.         [4] = {
  41.             ["Name"] = "Illuminated Healing",
  42.             ["Icon"] = "spell_holy_absolution",
  43.         },
  44.         [5] = {
  45.             ["Name"] = "Sacred Shield",
  46.             ["Icon"] = "ability_paladin_blessedmending",
  47.         },
  48.         [6] = {
  49.             ["Name"] = "Total",
  50.             ["Icon"] = "spell_arcane_arcaneresilience",
  51.         },
  52.     },
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement