-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternal_ids.rb
More file actions
52 lines (51 loc) · 1.74 KB
/
Copy pathinternal_ids.rb
File metadata and controls
52 lines (51 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Internal IDs. Some of these aren't exposed in .part files.
# Sorted by the English name as the key for ease in querying.
class_internal_ids = {
"Any Class" => "ID_FMP_CLASS_0",
"Ardent" => "ID_FMP_CLASS_529",
"Artificer" => "ID_FMP_CLASS_125",
"Assassin" => "ID_FMP_CLASS_466",
"Avenger" => "ID_FMP_CLASS_129",
"Barbarian" => "ID_FMP_CLASS_148",
"Bard" => "ID_FMP_CLASS_104",
"Battlemind" => "ID_FMP_CLASS_124",
"Berserker" => "ID_FMP_CLASS_906",
"Binder" => "ID_FMP_CLASS_821",
"Blackguard" => "ID_FMP_CLASS_813",
"Bladesinger" => "ID_FMP_CLASS_883",
"Cavalier" => "ID_FMP_CLASS_784",
"Cleric" => "ID_FMP_CLASS_2",
"Druid" => "ID_FMP_CLASS_126",
"Elementalist" => "ID_FMP_CLASS_956",
"Executioner" => "ID_FMP_CLASS_811",
"Fighter" => "ID_FMP_CLASS_3",
"Hexblade" => "ID_FMP_CLASS_793",
"Hunter" => "ID_FMP_CLASS_788",
"Invoker" => "ID_FMP_CLASS_127",
"Knight" => "ID_FMP_CLASS_713",
"Mage" => "ID_FMP_CLASS_722",
"Monk" => "ID_FMP_CLASS_362",
"Paladin" => "ID_FMP_CLASS_4",
"Protector" => "ID_FMP_CLASS_909",
"Psion" => "ID_FMP_CLASS_437",
"Ranger" => "ID_FMP_CLASS_5",
"Rogue" => "ID_FMP_CLASS_6",
"Runepriest" => "ID_FMP_CLASS_602",
"Scout" => "ID_FMP_CLASS_790",
"Seeker" => "ID_FMP_CLASS_472",
"Sentinel" => "ID_FMP_CLASS_779",
"Sha'ir" => "ID_FMP_CLASS_958",
"Shaman" => "ID_FMP_CLASS_147",
"Skald" => "ID_FMP_CLASS_907",
"Slayer" => "ID_FMP_CLASS_716",
"Sorcerer" => "ID_FMP_CLASS_128",
"Swordmage" => "ID_FMP_CLASS_53",
"Thief" => "ID_FMP_CLASS_719",
"Vampire" => "ID_FMP_CLASS_817",
"Warden" => "ID_FMP_CLASS_134",
"Warlock" => "ID_FMP_CLASS_7",
"Warlord" => "ID_FMP_CLASS_8",
"Warpriest" => "ID_FMP_CLASS_705",
"Witch" => "ID_FMP_CLASS_908",
"Wizard" => "ID_FMP_CLASS_9",
}