View Single Post
09-16-18, 09:39 AM   #5
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
The Enum.PowerType.Mana shown in the linked code is a number. Here’s the full table:

Lua Code:
  1. Enum = {
  2.     PowerType = {
  3.         Alternate = 10,
  4.         ArcaneCharges = 16,
  5.         Chi = 12,
  6.         ComboPoints = 4,
  7.         Energy = 3,
  8.         Focus = 2,
  9.         Fury = 17,
  10.         HealthCost = -2,
  11.         HolyPower = 9,
  12.         Insanity = 13,
  13.         LunarPower = 8,
  14.         Maelstrom = 11,
  15.         Mana = 0,
  16.         None = -1,
  17.         NumPowerTypes = 19,
  18.         Obsolete = 14,
  19.         Obsolete2 = 15,
  20.         Pain = 18,
  21.         Rage = 1,
  22.         Runes = 5,
  23.         RunicPower = 6,
  24.         SoulShards = 7,
  25.     },
  26. }

Last edited by Kanegasi : 09-16-18 at 10:31 AM. Reason: tabs > spaces; sorted; removed brackets and quotes
  Reply With Quote