-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathequipment_table_creator.html
1627 lines (1481 loc) · 71.2 KB
/
equipment_table_creator.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Habitica Wiki Equipment Table Creator</title>
<!--
This page outputs the wikia code for creating tables displaying the Equipment Tables in Habitica's official wiki:
http://habitica.fandom.com/wiki/Equipment_Table
http://habitica.fandom.com/wiki/Enchanted_Armoire
It's primarily written for the English language wiki (http://habitica.fandom.com/wiki/)
but can also be used for other languages by specifying the language code in the URL like this:
https://tools.habitica.com/equipment_table_creator.html?language=en
That will cause Habitica's official content translations to be used.
For texts inserted by this page (e.g., table headers), additional
translations need to be added to these objects in this file:
- stringsForLanguage
- regexpsForLanguage
- templateNamesForLanguage
- rewardPageUrls
For some languages, `wikiPageNameCorrections` and `reverseTextForLanguage` might also need to be edited.
This code is licenced under the same terms as Habitica:
https://raw2.github.com/HabitRPG/habitica/develop/LICENSE
https://github.com/habitrpg/tools-for-habitica/blob/master/equipment_table_creator.html
https://tools.habitica.com/equipment_table_creator.html
Contributors:
Phillip Thelen, [email protected] https://github.com/phillipthelen
Alys (Alice Harris), [email protected]
Jazzis (Yuri Mashukov), [email protected] (Russian translation and significant code improvements to enable translations)
Ender_Kerman (https://github.com/EnderKerman) (Chinese translation and code improvements)
-->
<meta name="description" content="Habitica Wiki Equipment Table Creator" />
<meta name="author" content="HabitRPG Inc. [email protected]" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript">
$(function() { // wraps around all our code to not pollute global namespace
var TEST_MODE = false; // causes extra text to be printed in the web page
//TEST_MODE = true;
//////////////////////////////////////////////////////////////////////
//// TRANSLATED STRINGS ///////////////
//// ///////////////
//// Add strings that this page uses (not strings ///////////////
//// that are found in Habitica). ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var stringsForLanguage = {
'en': {
wiki_name: "Habitica Wiki", // the name of the wiki (it must contain "Habitica" and that word must not be translated)
wiki_url: "https://habitica.fandom.com/wiki/", // the part of the URL that appears in all wiki pages for this language
equipment: "equipment",
unknown: "unknown", // used when we don't know the quest type (world boss/boss/collection) or the reward type
not_applicable: "n/a", // an abbreviation meaning 'not applicable' (recommended to use a short word)
kickstarter: "Kickstarter",
contributor: "Contributor",
contributor_gear: "Contributor_Rewards#Contributor_Gear",
absurd_party_hat: "Winter_Wonderland#Absurd_Party_Hat",
absurd_party_robes: "Winter_Wonderland#Absurd_Party_Robes",
winter_special_2014: "Winter_Wonderland#Special_Class_Gear_2014",
winter_special_2015: "Winter_Wonderland#Special_Class_Gear_2015",
summer_special: "Summer_Splash#Special_Class_Gear",
fall_special: "Fall_Festival#Special_Class_Gear",
spring_fling: "Spring_Fling",
take_this_challenges: "Official_Habitica_Challenges#Take_This_Challenges",
weapon_special_critical: "Critical_Warhammer_of_Bug-Crushing",
name: "Name",
image: "Image",
class: "Class",
type: "Type",
cost: "Cost",
con: "CON",
int: "INT",
per: "PER",
str: "STR",
quality: "Quality",
description: "Description",
set: "Set",
release_date: "Release<br />Date",
jan: "Jan",
feb: "Feb",
mar: "Mar",
apr: "Apr",
may: "May",
jun: "Jun",
jul: "Jul",
aug: "Aug",
sep: "Sep",
oct: "Oct",
nov: "Nov",
dec: "Dec",
best: "best",
medium: "medium",
stats_free: "stats<br />free",
head_accessory: "head<br />accessory",
back_accessory: "back<br />accessory",
body_accessory: "body<br />accessory",
head_gear: "head<br />gear",
armor: "armor",
weapon: "weapon",
shield: "shield",
eyewear: "eyewear",
special: "special",
warrior: "warrior",
mage: "mage",
healer: "healer",
rogue: "rogue",
take_this: "Take This",
mystery: "mystery",
armoire: "armoire",
unofficial_set: "unofficial set",
intro: "This page outputs the Fandom wiki code for creating the tables on these pages:",
equipment_table_page_name: "Equipment Table",
enchanted_armoire_page_name: "Enchanted Armoire",
textarea_paste: "Copy everything inside each textarea below and paste it into the appropriate template pages",
textarea_paste_individual: "Copy everything inside the textarea below and paste it into this template page",
textarea_explanation: "Don't edit the code in this textarea. Any edits you make will not be saved for future use.",
total_number_armoire_items: "Total number of Enchanted Armoire items",
and: "and",
},
'ru': {
wiki_name: "Habitica Вики", // the name of the wiki (it must contain "Habitica" and that word must not be translated)
wiki_url: "https://habitica.fandom.com/ru/wiki/", // the part of the URL that appears in all wiki pages for this language
equipment: "снаряжение",
unknown: "неизвестно", // used when we don't know the quest type (world boss/boss/collection) or the reward type
not_applicable: "н/д", // an abbreviation meaning 'not applicable' (recommended to use a short word)
kickstarter: "Kickstarter",
contributor: "Автор",
contributor_gear: "Награды_за_вклад#Снаряжение_участника",
absurd_party_hat: "Зимняя_страна_чудес#Праздничные_шляпы",
absurd_party_robes: "Зимняя_страна_чудес#Праздничные_мантии",
winter_special_2014: "Зимняя_страна_чудес#Специальное_классовое_снаряжение_2014",
winter_special_2015: "Зимняя_страна_чудес#Специальное_классовое_снаряжение_2015",
summer_special: "Летний_всплеск#Специальное_классовое_снаряжение",
fall_special: "Осенний_фестиваль#Специальное_классовое_снаряжение",
spring_fling: "Весенняя_веселуха",
take_this_challenges: "Официальные_испытания_Habitica#Испытания_«Take_This»",
weapon_special_critical: "Молот_победителя_критических_багов",
name: "Название",
image: "Изобр.",
class: "Класс",
type: "Тип",
cost: "Цена",
con: "ТЕЛ",
int: "ИНТ",
per: "ВОС",
str: "СИЛ",
quality: "Качество",
description: "Описание",
set: "Набор",
release_date: "Дата<br />выпуска",
jan: "Янв",
feb: "Фев",
mar: "Мар",
apr: "Апр",
may: "Май",
jun: "Июн",
jul: "Июл",
aug: "Авг",
sep: "Сен",
oct: "Окт",
nov: "Ноя",
dec: "Дек",
best: "лучшее",
medium: "среднее",
stats_free: "бонусов<br />не дает",
head_accessory: "аксессуар<br />на голову",
back_accessory: "аксессуар<br />на спину",
body_accessory: "аксессуар<br />на тело",
head_gear: "головной<br />убор",
armor: "доспехи",
weapon: "оружие",
shield: "щит",
eyewear: "очки",
special: "особое",
warrior: "воин",
mage: "маг",
healer: "целитель",
rogue: "разбойник",
take_this: "Take This",
mystery: "таинственный<br />предмет",
armoire: "зачарованный<br />сундук",
unofficial_set: "неофиц. набор",
intro: "Эта страница выводит вики-разметку для создания таблиц на следующих страницах:",
equipment_table_page_name: "Таблица снаряжения",
enchanted_armoire_page_name: "Зачарованный сундук",
textarea_paste: "Скопируйте все, что находится в каждой текстовой области ниже и вставьте это в соответсвующие страницы шаблонов",
textarea_paste_individual: "Copy everything inside the textarea below and paste it into this template page",
textarea_explanation: "Don't edit the code in this textarea. Any edits you make will not be saved for future use.",
total_number_armoire_items: "Общее кол-во предметов в зачарованном сундуке:",
and: "и",
},
'zh': {
wiki_name: "Habitica维基", // the name of the wiki (it must contain "Habitica" and that word must not be translated)
wiki_url: "https://habitica.fandom.com/zh/wiki/", // the part of the URL that appears in all wiki pages for this language
equipment: "装备", // Translate Note: Never used as far as I (and vs code) know, as of 2021-10
unknown: "未知", // used when we don't know the quest type (world boss/boss/collection) or the reward type
not_applicable: "n/a", // an abbreviation meaning 'not applicable' (recommended to use a short word)
kickstarter: "Kickstarter",
contributor: "贡献者",
contributor_gear: "贡献者的福利#贡献者装备",
absurd_party_hat: "冬季仙境节#Absurd_Party_Hat",
absurd_party_robes: "冬季仙境节#Absurd_Party_Robes",
winter_special_2014: "冬季仙境节#Special_Class_Gear_2014",
winter_special_2015: "冬季仙境节#Special_Class_Gear_2015", // Translate Note: Translation for this page is imcomplete so these are left for future update
summer_special: "夏季嬉水节#特殊装备",
fall_special: "秋季庆典节#特殊装备",
spring_fling: "春季狂欢节",
take_this_challenges: "Habitica官方挑战#Take_This_挑战",
weapon_special_critical: "致命碎虫锤",
name: "名称",
image: "图片",
class: "职业",
type: "类型",
cost: "价格",
con: "体质",
int: "智力",
per: "感知",
str: "力量",
quality: "品质",
description: "描述",
set: "所属套装",
release_date: "推出<br />日期",
jan: "1月",
feb: "2月",
mar: "3月",
apr: "4月",
may: "5月",
jun: "6月",
jul: "7月",
aug: "8月",
sep: "9月",
oct: "10月",
nov: "11月",
dec: "12月",
best: "优秀",
medium: "中等",
stats_free: "无<br />属性",
head_accessory: "头部<br />饰品",
back_accessory: "背部<br />饰品",
body_accessory: "身体<br />饰品",
head_gear: "头盔",
armor: "护甲",
weapon: "武器",
shield: "盾牌",
eyewear: "面部<br />饰品",
special: "特殊",
warrior: "战士",
mage: "法师",
healer: "医者",
rogue: "盗贼",
take_this: "Take This",
mystery: "神秘物品",
armoire: "魔法衣橱",
unofficial_set: "非官方套装",
intro: "本页用于生成以下页面的Fandom维基代码:", //"This page outputs the Fandom wiki code for creating the tables on these pages:",
equipment_table_page_name: "装备列表",//"Equipment Table",
enchanted_armoire_page_name: "魔法衣橱",//"Enchanted Armoire",
textarea_paste: "复制以下每个文本框的内容并粘贴到对应的模板页",//"Copy everything inside each textarea below and paste it into the appropriate template pages",
textarea_paste_individual: "复制此文本框的内容并粘贴到这个模板页",//"Copy everything inside the textarea below and paste it into this template page",
textarea_explanation: "请勿编辑此文本框的内容。任何更改都不会保存。",//"Don't edit the code in this textarea. Any edits you make will not be saved for future use.",
total_number_armoire_items: "魔法衣橱物品总数:",//"Total number of Enchanted Armoire items",
and: "和",
}
};
//////////////////////////////////////////////////////////////////////
//// TRANSLATED REGULAR EXPRESSIONS ///////////////
//// ///////////////
//// Add regular expressions that this page uses. ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var regexpsForLanguage = {
'en': {
increases: " Increases ",
armoire: " Enchanted Armoire: ",
independent_item: /Independent Item/i,
set: /(.+ Set) \(Item ([0-9]+) of ([0-9]+)/i,
unofficial_set: /(Floppy<br \/>Hat|Cat<br \/>Hat)/i,
},
'ru': {
increases: " Увеличивает ",
armoire: " Зачарованный сундук: ",
independent_item: /Независимый предмет/i,
set: /(.+ [Нн]абор|[Нн]абор .+) \(предмет ([0-9]+) из ([0-9]+)/i,
unofficial_set: /(широкополая<br \/>шляпа|Шапка(.+)кота)/i,
},
'zh': {
increases: /((提升|提高|增强|增加)([0-9]|\s))| Increases /,
armoire: /魔法衣橱:| Enchanted Armoire: /,
independent_item: /独立装备|独立物品|Independent Item/i,
set: /(.+套装|.+ Set)(?:(| \(Item )([0-9]+)(?:\/| of )([0-9]+)(?:)|)/i,
unofficial_set: /(软盘帽|(.)猫帽子)/, // Translate Note: The translation of floppy hats is not unified so this is a temporary workaround
}
};
//////////////////////////////////////////////////////////////////////
//// TRANSLATED TEMPLATE NAMES ///////////////
//// ///////////////
//// Add template names that the specific wiki uses. ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var templateNamesForLanguage = {
'en': {
equipment: "Equipment_Table_Code",
armoire: "Enchanted_Armoire_Table_Code",
},
'ru': {
},
'zh': { // Sharing template names with en
}
};
//////////////////////////////////////////////////////////////////////
//// LINKS FOR REWARDS (GEAR, ETC) ///////////////
//// ///////////////
//// Add new entries here (in any order) when ///////////////
//// a quest rewards you with equipment AND when ///////////////
//// that equipment has its own wiki page. ///////////////
//// ///////////////
//// The left-hand side of each line is the 'key' ///////////////
//// for an equipment piece. The right-hand side ///////////////
//// is the wiki page name. ///////////////
//// ///////////////
//// DO NOT PUT SPACES IN THESE PAGE NAMES! ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var rewardPageUrls = {
'en': {
shield_special_goldenknight: "Mustaine%27s_Milestone_Mashing_Morningstar",
weapon_special_2: "Stephen_Weber%27s_Shaft_of_the_Dragon",
head_special_2: "Nameless_Helm",
armor_special_2: "Jean_Chalard%27s_Noble_Tunic",
},
'ru': {
shield_special_goldenknight: 'Моргенштерн_Мастейна,_сминающий_мильные_метки',
weapon_special_2: 'Посох_дракона_Стивена_Уэбера',
head_special_2: 'Безымянный_шлем',
armor_special_2: 'Благородная_туника_Жана_Шалара',
},
'zh': {
shield_special_goldenknight: "Mustaine的碎石流星锤",
weapon_special_2: "Stephen_Weber的巨龙长矛",
head_special_2: "无名头盔",
armor_special_2: "Jean_Chalard的贵族束腰外衣",
}
};
//////////////////////////////////////////////////////////////////////
//// WIKI LINKS FOR **SOME** WIKI PAGES ///////////////
//// ///////////////
//// Add new entries here only when you find that ///////////////
//// an automatically-created link to a wiki page ///////////////
//// is not correct.
//// I.e., this is necessary only if the wiki page ///////////////
//// filename does not match the filename that can ///////////////
//// be created automatically from a name that ///////////////
//// appears in Habitica's 'content' data. ///////////////
//// ///////////////
//// Translation support is NOT needed for every ///////////////
//// English entry here! Include non-English link ///////////////
//// names ONLY if you discover that the links are ///////////////
//// not automatically created correctly. ///////////////
//// ///////////////
//// The left-hand side of each line is the page ///////////////
//// name that was automatically created. The ///////////////
//// right-hand side is the correct page name. ///////////////
//// ///////////////
//// DO NOT PUT SPACES IN THESE PAGE NAMES! ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var wikiPageNameCorrections = {
'en': { // see comments above before adding data here
},
'ru': { // see comments above before adding data here
},
'zh': { // see comments above before adding data here
},
};
//////////////////////////////////////////////////////////////////////
//// TRANSLATED TEXT ORDER ///////////////
//// ///////////////
//// Some data+text phrases in some languages need ///////////////
//// to be reversed or modified in some other way ///////////////
//// compared to English. Specify them here. ///////////////
//// ///////////////
//////////////////////////////////////////////////////////////////////
var reverseTextForLanguage = {
'release_date': { // causes date format to be "2015-11" instead of "Nov 2015"
'zh': true,
}
};
var translationInstructions = // Do not translate this into other languages. It's displayed only in the English version of the page.
'<h3>Translations for Non-English Wikis</h3>' +
'<p>' +
'If you would like to use this tool to create the tables for your own language\'s version of the wiki, add your language\'s code to the URL. ' +
'For example, for the Russian ("ru") version you would use this URL:<br />' +
'<a href="https://tools.habitica.com/equipment_table_creator.html?language=ru">' +
'https://tools.habitica.com/equipment_table_creator.html?<strong>language=ru</strong>' +
'</a>' +
'<br />Habitica\'s official translations will then be used by this page. '
'</p>' +
'<p>So far support exists for the languages below but others can be added!</p>' +
'<ul><li><a href="https://tools.habitica.com/equipment_table_creator.html?language=ru">Russian</a></li></ul>' +
'<ul><li><a href="https://tools.habitica.com/equipment_table_creator.html?language=zh">Chinese(Simplified)</a></li></ul>'
;
//////////////////////////////////////////////////////////////////////
//// Determine Langauge from URL Parameter /////////////////
//////////////////////////////////////////////////////////////////////
const urlParams = new URLSearchParams(window.location.search);
// Get the language specified in the URL if any:
const language = urlParams.get('language') || 'en';
// That language(will be used to choose the appropriate official
// Habitica translations when fetching/ the Habitica content data.
// If that language exists in the stringsForLanguage object, then
// this file contains additional translations specifically for this
// page (e.g., for table headers). Otherwise, English will be used
// for those strings.
const inPageLanguage = (stringsForLanguage[language]) ? language : 'en';
var wikiaBaseUrl = getString('wiki_url');
//////////////////////////////////////////////////////////////////////
//// EQUIPMENT TO BE IGNORED (e.g., not released yet) //////////
//////////////////////////////////////////////////////////////////////
var ignore = {
'weapon_special_3' : true, // only for Kickstarter backers and similar to shield_special_goldenknight
};
//////////////////////////////////////////////////////////////////////
//// EQUIPMENT WITH A CUSTOM "CLASS" VALUE //////////
//////////////////////////////////////////////////////////////////////
var customClass = {
'armor_special_1' : 'contributor',
'head_special_1' : 'contributor',
'shield_special_1' : 'contributor',
'weapon_special_1' : 'contributor',
'armor_special_0' : 'kickstarter',
'head_special_0' : 'kickstarter',
'shield_special_0' : 'kickstarter',
'weapon_special_0' : 'kickstarter',
'armor_special_ks2019' : 'kickstarter',
'eyewear_special_ks2019' : 'kickstarter',
'head_special_ks2019' : 'kickstarter',
'shield_special_ks2019' : 'kickstarter',
'weapon_special_ks2019' : 'kickstarter',
};
//////////////////////////////////////////////////////////////////////
//// RELEASE DATES FOR ENCHANTED ARMOIRE ITEMS ///////////////
//////////////////////////////////////////////////////////////////////
var releaseDates = {
'weapon_armoire_basicCrossbow' : '2015-06',
'weapon_armoire_lunarSceptre' : '2015-06',
'armor_armoire_lunarArmor' : '2015-06',
'armor_armoire_gladiatorArmor' : '2015-06',
'head_armoire_redHairbow' : '2015-06',
'head_armoire_violetFloppyHat' : '2015-06',
'head_armoire_gladiatorHelm' : '2015-06',
'head_armoire_rancherHat' : '2015-06',
'shield_armoire_gladiatorShield' : '2015-06',
'head_armoire_lunarCrown' : '2015-06',
'weapon_armoire_rancherLasso' : '2015-07',
'head_armoire_blueHairbow' : '2015-07',
'armor_armoire_rancherRobes' : '2015-07',
'head_armoire_royalCrown' : '2015-07',
'armor_armoire_goldenToga' : '2015-08',
'armor_armoire_hornedIronArmor' : '2015-08',
'head_armoire_goldenLaurels' : '2015-08',
'head_armoire_hornedIronHelm' : '2015-08',
'weapon_armoire_ironCrook' : '2015-08',
'weapon_armoire_mythmakerSword' : '2015-08',
'head_armoire_redFloppyHat' : '2015-09',
'weapon_armoire_goldWingStaff' : '2015-09',
'armor_armoire_plagueDoctorOvercoat' : '2015-09',
'head_armoire_yellowHairbow' : '2015-09',
'head_armoire_plagueDoctorHat' : '2015-09',
'eyewear_armoire_plagueDoctorMask' : '2015-09',
'weapon_armoire_batWand' : '2015-10',
'head_armoire_blackCat' : '2015-10',
'head_armoire_orangeCat' : '2015-10',
'shield_armoire_midnightShield' : '2015-10',
'weapon_armoire_shepherdsCrook' : '2015-11',
'armor_armoire_shepherdRobes' : '2015-11',
'armor_armoire_royalRobes' : '2015-11',
'head_armoire_blueFloppyHat' : '2015-11',
'head_armoire_shepherdHeaddress' : '2015-11',
'shield_armoire_royalCane' : '2015-11',
'weapon_armoire_crystalCrescentStaff' : '2015-12',
'weapon_armoire_blueLongbow' : '2015-12',
'armor_armoire_crystalCrescentRobes' : '2015-12',
'head_armoire_crystalCrescentHat' : '2015-12',
'armor_armoire_dragonTamerArmor' : '2016-01',
'head_armoire_dragonTamerHelm' : '2016-01',
'shield_armoire_dragonTamerShield' : '2016-01',
'weapon_armoire_glowingSpear' : '2016-01',
'weapon_armoire_barristerGavel' : '2016-02',
'weapon_armoire_jesterBaton' : '2016-02',
'armor_armoire_barristerRobes' : '2016-02',
'armor_armoire_jesterCostume' : '2016-02',
'head_armoire_barristerWig' : '2016-02',
'head_armoire_jesterCap' : '2016-02',
'weapon_armoire_miningPickax' : '2016-03',
'armor_armoire_minerOveralls' : '2016-03',
'head_armoire_minerHelmet' : '2016-03',
'shield_armoire_mysticLamp' : '2016-03',
'weapon_armoire_basicLongbow' : '2016-04',
'armor_armoire_basicArcherArmor' : '2016-04',
'head_armoire_basicArcherCap' : '2016-04',
'headAccessory_armoire_comicalArrow' : '2016-04',
'weapon_armoire_habiticanDiploma' : '2016-05',
'armor_armoire_graduateRobe' : '2016-05',
'head_armoire_graduateCap' : '2016-05',
'shield_armoire_floralBouquet' : '2016-05',
'weapon_armoire_sandySpade' : '2016-06',
'armor_armoire_stripedSwimsuit' : '2016-06',
'head_armoire_greenFloppyHat' : '2016-06',
'shield_armoire_sandyBucket' : '2016-06',
'weapon_armoire_cannon' : '2016-07',
'armor_armoire_cannoneerRags' : '2016-07',
'head_armoire_cannoneerBandanna' : '2016-07',
'armor_armoire_falconerArmor' : '2016-08',
'head_armoire_falconerCap' : '2016-08',
'shield_armoire_perchingFalcon' : '2016-08',
'weapon_armoire_vermilionArcherBow' : '2016-09',
'armor_armoire_vermilionArcherArmor' : '2016-09',
'head_armoire_vermilionArcherHelm' : '2016-09',
'weapon_armoire_ogreClub' : '2016-10',
'armor_armoire_ogreArmor' : '2016-10',
'head_armoire_ogreMask' : '2016-10',
'armor_armoire_ironBlueArcherArmor' : '2016-11',
'armor_armoire_redPartyDress' : '2016-11',
'head_armoire_ironBlueArcherHelm' : '2016-11',
'weapon_armoire_woodElfStaff' : '2016-12',
'armor_armoire_woodElfArmor' : '2016-12',
'head_armoire_woodElfHelm' : '2016-12',
'armor_armoire_ramFleeceRobes' : '2017-01',
'head_armoire_ramHeaddress' : '2017-01',
'shield_armoire_ramHornShield' : '2017-01',
'weapon_armoire_wandOfHearts' : '2017-02',
'armor_armoire_gownOfHearts' : '2017-02',
'head_armoire_crownOfHearts' : '2017-02',
'shield_armoire_redRose' : '2017-02',
'weapon_armoire_forestFungusStaff' : '2017-03',
'armor_armoire_mushroomDruidArmor' : '2017-03',
'head_armoire_mushroomDruidCap' : '2017-03',
'shield_armoire_mushroomDruidShield' : '2017-03',
'weapon_armoire_festivalFirecracker' : '2017-04',
'armor_armoire_greenFestivalYukata' : '2017-04',
'shield_armoire_festivalParasol' : '2017-04',
'weapon_armoire_merchantsDisplayTray' : '2017-05',
'armor_armoire_merchantTunic' : '2017-05',
'head_armoire_merchantChaperon' : '2017-05',
'weapon_armoire_battleAxe' : '2017-06',
'armor_armoire_vikingTunic' : '2017-06',
'head_armoire_vikingHelm' : '2017-06',
'shield_armoire_vikingShield' : '2017-06',
'armor_armoire_swanDancerTutu' : '2017-07',
'head_armoire_swanFeatherCrown' : '2017-07',
'shield_armoire_swanFeatherFan' : '2017-07',
'shield_armoire_goldenBaton' : '2017-07',
'armor_armoire_candlestickMakerOutfit' : '2017-08',
'head_armoire_candlestickMakerHat' : '2017-08',
'shield_armoire_handmadeCandlestick' : '2017-08',
'weapon_armoire_hoofClippers' : '2017-09',
'armor_armoire_farrierOutfit' : '2017-09',
'shield_armoire_horseshoe' : '2017-09',
'armor_armoire_yellowPartyDress' : '2017-09',
'armor_armoire_antiProcrastinationArmor' : '2017-10',
'head_armoire_antiProcrastinationHelm' : '2017-10',
'shield_armoire_antiProcrastinationShield' : '2017-10',
'weapon_armoire_weaversComb' : '2017-11',
'armor_armoire_wovenRobes' : '2017-11',
'shield_armoire_weaversShuttle' : '2017-11',
'weapon_armoire_lamplighter' : '2017-12',
'armor_armoire_lamplightersGreatcoat' : '2017-12',
'head_armoire_lamplightersTopHat' : '2017-12',
'body_armoire_cozyScarf' : '2017-12',
'weapon_armoire_coachDriversWhip' : '2018-01',
'armor_armoire_coachDriverLivery' : '2018-01',
'head_armoire_coachDriversHat' : '2018-01',
'weapon_armoire_scepterOfDiamonds' : '2018-02',
'armor_armoire_robeOfDiamonds' : '2018-02',
'head_armoire_crownOfDiamonds' : '2018-02',
'shield_armoire_shieldOfDiamonds' : '2018-02',
'weapon_armoire_flutteryArmy' : '2018-03',
'armor_armoire_flutteryFrock' : '2018-03',
'head_armoire_flutteryWig' : '2018-03',
'shield_armoire_flutteryFan' : '2018-03',
'head_armoire_bigWig' : '2018-04',
'head_armoire_paperBag' : '2018-04',
'head_armoire_birdsNest' : '2018-04',
'eyewear_armoire_goofyGlasses' : '2018-04',
'weapon_armoire_cobblersHammer' : '2018-05',
'armor_armoire_cobblersCoveralls' : '2018-05',
'shield_armoire_fancyShoe' : '2018-05',
'weapon_armoire_glassblowersBlowpipe' : '2018-06',
'armor_armoire_glassblowersCoveralls' : '2018-06',
'armor_armoire_bluePartyDress' : '2018-06',
'head_armoire_glassblowersHat' : '2018-06',
'shield_armoire_fancyBlownGlassVase' : '2018-06',
'weapon_armoire_poisonedGoblet' : '2018-07',
'armor_armoire_piraticalPrincessGown' : '2018-07',
'head_armoire_piraticalPrincessHeaddress' : '2018-07',
'shield_armoire_piraticalSkullShield' : '2018-07',
'weapon_armoire_jeweledArcherBow' : '2018-08',
'armor_armoire_jeweledArcherArmor' : '2018-08',
'head_armoire_jeweledArcherHelm' : '2018-08',
'weapon_armoire_needleOfBookbinding' : '2018-09',
'armor_armoire_coverallsOfBookbinding' : '2018-09',
'shield_armoire_unfinishedTome' : '2018-09',
'headAccessory_armoire_gogglesOfBookbinding' : '2018-09',
'weapon_armoire_spearOfSpades' : '2018-10',
'armor_armoire_robeOfSpades' : '2018-10',
'head_armoire_veilOfSpades' : '2018-10',
'armor_armoire_softBlueSuit' : '2018-11',
'shield_armoire_softBluePillow' : '2018-11',
'armor_armoire_softGreenSuit' : '2018-12',
'armor_armoire_softRedSuit' : '2018-12',
'shield_armoire_softGreenPillow' : '2018-12',
'shield_armoire_softRedPillow' : '2018-12',
'weapon_armoire_arcaneScroll' : '2019-01',
'armor_armoire_scribesRobe' : '2019-01',
'shield_armoire_mightyQuill' : '2019-01',
'weapon_armoire_chefsSpoon' : '2019-02',
'armor_armoire_chefsJacket' : '2019-02',
'head_armoire_toqueBlanche' : '2019-02',
'shield_armoire_mightyPizza' : '2019-02',
'weapon_armoire_vernalTaper' : '2019-03',
'armor_armoire_vernalVestment' : '2019-03',
'head_armoire_vernalHennin' : '2019-03',
'weapon_armoire_jugglingBalls' : '2019-04',
'weapon_armoire_slingshot' : '2019-04',
'head_armoire_tricornHat' : '2019-04',
'weapon_armoire_nephriteBow' : '2019-05',
'head_armoire_nephriteHelm' : '2019-05',
'armor_armoire_nephriteArmor' : '2019-05',
'weapon_armoire_bambooCane' : '2019-06',
'armor_armoire_boatingJacket' : '2019-06',
'head_armoire_boaterHat' : '2019-06',
'weapon_armoire_astronomersTelescope' : '2019-07',
'armor_armoire_astronomersRobe' : '2019-07',
'head_armoire_astronomersHat' : '2019-07',
'weapon_armoire_magnifyingGlass' : '2019-08',
'armor_armoire_invernessCape' : '2019-08',
'head_armoire_deerstalkerCap' : '2019-08',
'shield_armoire_trustyUmbrella' : '2019-08',
'weapon_armoire_floridFan' : '2019-09',
'weapon_armoire_resplendentRapier' : '2019-09',
'shield_armoire_polishedPocketwatch' : '2019-09',
'weapon_armoire_shadowMastersMace' : '2019-10',
'armor_armoire_shadowMastersRobe' : '2019-10',
'head_armoire_shadowMastersHood' : '2019-10',
'shield_armoire_masteredShadow' : '2019-10',
'weapon_armoire_alchemistsDistiller' : '2019-11',
'armor_armoire_alchemistsRobe' : '2019-11',
'head_armoire_alchemistsHat' : '2019-11',
'shield_armoire_alchemistsScale' : '2019-11',
'armor_armoire_duffleCoat' : '2019-12',
'head_armoire_earflapHat' : '2019-12',
'weapon_armoire_happyBanner' : '2020-01',
'armor_armoire_layerCakeArmor' : '2020-01',
'head_armoire_frostedHelm' : '2020-01',
'shield_armoire_birthdayBanner' : '2020-01',
'weapon_armoire_livelyMatch' : '2020-02',
'armor_armoire_matchMakersApron' : '2020-02',
'head_armoire_matchMakersBeret' : '2020-02',
'shield_armoire_perfectMatch' : '2020-02',
'weapon_armoire_baseballBat' : '2020-03',
'armor_armoire_baseballUniform' : '2020-03',
'head_armoire_baseballCap' : '2020-03',
'shield_armoire_baseballGlove' : '2020-03',
'shield_armoire_hobbyHorse' : '2020-04',
'weapon_armoire_paperCutter' : '2020-04',
'armor_armoire_boxArmor' : '2020-04',
'weapon_armoire_fiddlersBow' : '2020-05',
'armor_armoire_fiddlersCoat' : '2020-05',
'head_armoire_fiddlersCap' : '2020-05',
'shield_armoire_fiddle' : '2020-05',
'weapon_armoire_beachFlag' : '2020-06',
'shield_armoire_lifeBuoy' : '2020-06',
'body_armoire_lifeguardWhistle' : '2020-06',
'weapon_armoire_handyHook' : '2020-07',
'armor_armoire_pirateOutfit' : '2020-07',
'shield_armoire_piratesCompanion' : '2020-07',
'armor_armoire_heroicHerbalistRobe' : '2020-08',
'head_armoire_heroicHerbalistCrispinette' : '2020-08',
'shield_armoire_mortarAndPestle' : '2020-08',
'weapon_armoire_guardiansCrook' : '2020-09',
'armor_armoire_guardiansGown' : '2020-09',
'head_armoire_guardiansBonnet' : '2020-09',
'weapon_armoire_enchantersStaff' : '2020-10',
'armor_armoire_autumnEnchantersCloak' : '2020-10',
'head_armoire_hornsOfAutumn' : '2020-10',
'shield_armoire_darkAutumnFlame' : '2020-10',
'weapon_armoire_clubOfClubs' : '2020-11',
'armor_armoire_doubletOfClubs' : '2020-11',
'head_armoire_capOfClubs' : '2020-11',
'weapon_armoire_eveningTea' : '2020-12',
'armor_armoire_dressingGown' : '2020-12',
'head_armoire_nightcap' : '2020-12',
'weapon_armoire_blueMoonSai' : '2021-01',
'armor_armoire_blueMoonShozoku' : '2021-01',
'head_armoire_blueMoonHelm' : '2021-01',
'shield_armoire_blueMoonSai' : '2021-01',
'armor_armoire_softPinkSuit' : '2021-02',
'head_armoire_pinkFloppyHat' : '2021-02',
'shield_armoire_softPinkPillow' : '2021-02',
'weapon_armoire_jadeGlaive' : '2021-03',
'armor_armoire_jadeArmor' : '2021-03',
'head_armoire_jadeHelm' : '2021-03',
'armor_armoire_clownsMotley' : '2021-04',
'head_armoire_clownsWig' : '2021-04',
'shield_armoire_clownsBalloons' : '2021-04',
'body_armoire_clownsBowtie' : '2021-04',
'eyewear_armoire_clownsNose' : '2021-04',
'shield_armoire_strawberryFood' : '2021-05',
'shield_armoire_rottenMeatFood' : '2021-05',
'shield_armoire_potatoFood' : '2021-05',
'shield_armoire_pinkCottonCandyFood' : '2021-05',
'shield_armoire_meatFood' : '2021-05',
'shield_armoire_honeyFood' : '2021-05',
'shield_armoire_fishFood' : '2021-05',
'shield_armoire_chocolateFood' : '2021-05',
'shield_armoire_blueCottonCandyFood' : '2021-05',
'shield_armoire_milkFood' : '2021-05',
'weapon_armoire_medievalWashboard' : '2021-06',
'armor_armoire_medievalLaundryOutfit' : '2021-06',
'armor_armoire_medievalLaundryDress' : '2021-06',
'head_armoire_medievalLaundryCap' : '2021-06',
'head_armoire_medievalLaundryHat' : '2021-06',
'shield_armoire_medievalLaundry' : '2021-06',
'weapon_armoire_buoyantBubbles' : '2021-07',
'armor_armoire_bathtub' : '2021-07',
'head_armoire_rubberDucky' : '2021-07',
'shield_armoire_bouncyBubbles' : '2021-07',
'armor_armoire_bagpipersKilt' : '2021-08',
'shield_armoire_bagpipes' : '2021-08',
'head_armoire_glengarry' : '2021-08',
'weapon_armoire_heraldsBuisine' : '2021-09',
'armor_armoire_heraldsTunic' : '2021-09',
'head_armoire_heraldsCap' : '2021-09',
'shield_armoire_heraldsMessageScroll' : '2021-09',
'weapon_armoire_skullLantern' : '2021-10',
'armor_armoire_softBlackSuit' : '2021-10',
'head_armoire_blackFloppyHat' : '2021-10',
'shield_armoire_softBlackPillow' : '2021-10',
'weapon_armoire_potionBase' : '2021-11',
'weapon_armoire_potionBlue' : '2021-11',
'weapon_armoire_potionDesert' : '2021-11',
'weapon_armoire_potionGolden' : '2021-11',
'weapon_armoire_potionPink' : '2021-11',
'weapon_armoire_potionRed' : '2021-11',
'weapon_armoire_potionShade' : '2021-11',
'weapon_armoire_potionSkeleton' : '2021-11',
'weapon_armoire_potionWhite' : '2021-11',
'weapon_armoire_potionZombie' : '2021-11',
'weapon_armoire_regalSceptre' : '2021-12',
'head_armoire_regalCrown' : '2021-12',
'weapon_armoire_shootingStarSpell' : '2022-01',
'armor_armoire_shootingStarCostume' : '2022-01',
'head_armoire_shootingStarCrown' : '2022-01',
'weapon_armoire_pinkLongbow' : '2022-02',
'armor_armoire_softVioletSuit' : '2022-02',
'shield_armoire_softVioletPillow' : '2022-02',
'weapon_armoire_gardenersWateringCan' : '2022-03',
'armor_armoire_gardenersOveralls' : '2022-03',
'head_armoire_gardenersSunHat' : '2022-03',
'shield_armoire_gardenersSpade' : '2022-03',
'armor_armoire_strawRaincoat' : '2022-04',
'head_armoire_strawRainHat' : '2022-04',
'weapon_armoire_huntingHorn' : '2022-05',
'shield_armoire_spanishGuitar' : '2022-05',
'shield_armoire_snareDrum' : '2022-05',
'weapon_armoire_blueKite' : '2022-06',
'weapon_armoire_greenKite' : '2022-06',
'weapon_armoire_orangeKite' : '2022-06',
'weapon_armoire_pinkKite' : '2022-06',
'weapon_armoire_yellowKite' : '2022-06',
'armor_armoire_fancyPirateSuit' : '2022-07',
'head_armoire_fancyPirateHat' : '2022-07',
'shield_armoire_treasureMap' : '2022-07',
'weapon_armoire_pushBroom' : '2022-08',
'weapon_armoire_featherDuster' : '2022-08',
'shield_armoire_dustpan' : '2022-08',
'eyewear_armoire_comedyMask' : '2022-09',
'eyewear_armoire_tragedyMask' : '2022-09',
'armor_armoire_sheetGhostCostume' : '2022-10',
'weapon_armoire_magicSpatula' : '2022-11',
'shield_armoire_bubblingCauldron' : '2022-11',
'weapon_armoire_finelyCutGem' : '2022-12',
'armor_armoire_jewelersApron' : '2022-12',
'shield_armoire_jewelersPliers' : '2022-12',
'eyewear_armoire_jewelersEyeLoupe' : '2022-12',
};
// get the current month's date in case the latest Enchanted Armoire
// items haven't been added above yet:
var d = new Date();
var month = d.getMonth() + 1;
var thisMonth = d.getFullYear() + '-' + ((month < 10) ? '0' : '') + month;
//////////////////////////////////////////////////////////////////////
//// IMAGE FILE NAMES FOR EACH EQUIPMENT PIECE ///////////////
//// ///////////////
//// Add new entries here (in any order) when new ///////////////
//// equipment becomes available. ///////////////
//// This is necessary only if the wiki image links ///////////////
//// do not match the file names from Habitica. ///////////////
//////////////////////////////////////////////////////////////////////
var images = {
'armor_healer_1' : 'Acolyterobe.png',
'armor_healer_2' : 'Medicrobe.png',
'armor_healer_3' : 'Defendervestment.png',
'armor_healer_4' : 'Priestvestment.png',
'armor_healer_5' : 'Royalvestment.png',
'armor_rogue_1' : 'Oiledleatherarmor.png',
'armor_rogue_2' : 'Blackleatherarmor.png',
'armor_rogue_3' : 'Camoarmor.png',
'armor_rogue_4' : 'Penumbralarmor.png',
'armor_rogue_5' : 'Umbralarmor.png',
'armor_special_0' : 'BackerOnly-Equip-ShadeArmor.gif',
'armor_special_1' : 'ContributorOnly-Equip-CrystalArmor.gif',
'armor_special_2' : 'Chalard_Tunic.png',
'armor_special_candycane' : 'Candycanerobe.png',
'armor_special_ski' : 'SkisassinParka.png',
'armor_special_snowflake' : 'SnowflakeRobe.png',
'armor_special_springHealer' : 'Fuzzypup.png',
'armor_special_springMage' : 'Rodentiarobes.png',
'armor_special_springRogue' : 'Sleekcatsuit.png',
'armor_special_springWarrior' : 'Bunarmour.png',
'armor_special_yeti' : 'Yetitamerrobe.png',
'armor_warrior_1' : 'A1.png',
'armor_warrior_2' : 'A2.png',
'armor_warrior_3' : 'A3.png',
'armor_warrior_4' : 'A4.png',
'armor_warrior_5' : 'A5.png',
'armor_wizard_1' : 'Magicianrobe.png',
'armor_wizard_2' : 'Wizardrobe.png',
'armor_wizard_3' : 'Robeofmysteries.png',
'armor_wizard_4' : 'Archmagerobe.png',
'armor_wizard_5' : 'Royalmagusrobe.png',
'headAccessory_special_springHealer' : 'yellowdogears.png',
'headAccessory_special_springMage' : 'Bluemouseears.png',
'headAccessory_special_springRogue' : 'Purplecatears.png',
'headAccessory_special_springWarrior' : 'Bunear.png',
'head_healer_1' : 'Quartzcirclet.png',
'head_healer_2' : 'Amethystcirclet.png',
'head_healer_3' : 'Sapphire_circlet.png',
'head_healer_4' : 'Emeralddiadem.png',
'head_healer_5' : 'Royaldiadem.png',
'head_rogue_1' : 'Leatherhood.png',
'head_rogue_2' : 'Blackleatherhood.png',
'head_rogue_3' : 'Camohood.png',
'head_rogue_4' : 'Penumbralhood.png',
'head_rogue_5' : 'Umbralhood.png',
'head_special_0' : 'BackerOnly-Equip-ShadeHelmet.gif',
'head_special_1' : 'ContributorOnly-Equip-CrystalHelmet.gif',
'head_special_2' : 'Nameless_Helm.png',
'head_special_candycane' : 'Candycanehat.png',
'head_special_nye' : 'Absurd_Party_Hat.png',
'head_special_ski' : 'SkisassinHelm.png',
'head_special_snowflake' : 'SnowflakeCrown.png',
'head_special_springHealer' : 'CrownFriendship.png',
'head_special_springMage' : 'Swisscheesehat.png',
'head_special_springRogue' : 'Stealthykittymask.png',
'head_special_springWarrior' : 'Bunhelmet.png',
'head_special_yeti' : 'Yetitamerhelm.png',
'head_warrior_1' : 'H1.png',
'head_warrior_2' : 'H2.png',
'head_warrior_3' : 'H3.png',
'head_warrior_4' : 'H4.png',
'head_warrior_5' : 'H5.png',
'head_wizard_1' : 'Magicianhat.png',
'head_wizard_2' : 'Cornuthaum.png',
'head_wizard_3' : 'Astrologerhat.png',
'head_wizard_4' : 'Archmagehat.png',
'head_wizard_5' : 'Head_wizard_5.png',
'shield_healer_1' : 'Medicbuckler.png',
'shield_healer_2' : 'Kiteshield.png',
'shield_healer_3' : 'Hospitalershield.png',
'shield_healer_4' : 'Saviorshield.png',
'shield_healer_5' : 'Royalshield.png',
'shield_special_0' : 'BackerOnly-Shield-TormentedSkull.gif',
'shield_special_1' : 'Contributor_Shield.png',
'shield_special_ski' : 'SkisassinPoleR.png',
'shield_special_snowflake' : 'SnowflakeShield.png',
'shield_special_springHealer' : 'squeakyball.png',
'shield_special_springWarrior' : 'Eggshield.png',
'shield_special_yeti' : 'Yetitamershield.png',
'shield_warrior_1' : 'S1.png',
'shield_warrior_2' : 'S2.png',
'shield_warrior_3' : 'S3.png',
'shield_warrior_4' : 'S4.png',
'shield_warrior_5' : 'S5.png',
'weapon_healer_0' : 'Novicerod.png',
'weapon_healer_1' : 'Acolyterod.png',
'weapon_healer_2' : 'Quartzrod.png',
'weapon_healer_3' : 'Amethystrod.png',
'weapon_healer_4' : 'Priestrod.png',
'weapon_healer_5' : 'Royalcrosier.png',
'weapon_healer_6' : 'Goldencrosier.png',
'weapon_rogue_0' : 'Dagger.png',
'weapon_rogue_1' : 'Shortsword.png',
'weapon_rogue_2' : 'Scimitar.png',
'weapon_rogue_3' : 'Kukri.png',
'weapon_rogue_4' : 'Nunchaku.png',
'weapon_rogue_5' : 'Ninja-to.png',
'weapon_rogue_6' : 'Hooksword.png',
'weapon_special_0' : 'BackerOnly-Weapon-DarkSoulsBlade.gif',
'weapon_special_1' : 'ContributorOnly-Equip-CrystalBlade.png',
'weapon_special_2' : 'Weber_Shaft.png',
'weapon_special_3' : 'Mustaine_Morning_Star.png',
'shield_special_goldenknight' : 'Mustaine_Morning_Star.png',
'weapon_special_candycane' : 'Candycanestaff.png',
'weapon_special_critical' : 'Glow_hammer_gif_by_zoebeagle.gif',
'weapon_special_ski' : 'SkisassinPoleL.png',
'weapon_special_snowflake' : 'SnowflakeWand.png',
'weapon_special_springHealer' : 'Lovelybone.png',
'weapon_special_springMage' : 'Swisscheesestaff.png',
'weapon_special_springRogue' : 'Hookclaws.png',
'weapon_special_springWarrior' : 'Carrotsword.png',
'weapon_special_yeti' : 'Yetitamerspear.png',
'weapon_warrior_0' : 'Trainingsword.png',
'weapon_warrior_1' : 'WarriorSword.png',
'weapon_warrior_2' : 'Axe.png',
'weapon_warrior_3' : 'Morningstar.png',
'weapon_warrior_4' : 'Sapphireblade.png',
'weapon_warrior_5' : 'Redsword.png',
'weapon_warrior_6' : 'Goldensword.png',
'weapon_wizard_0' : 'Apprenticestaff.png',
'weapon_wizard_1' : 'Woodenstaff.png',
'weapon_wizard_2' : 'Jeweledstaff.png',
'weapon_wizard_3' : 'Ironstaff.png',
'weapon_wizard_4' : 'Brassstaff.png',
'weapon_wizard_5' : 'Archmagestaff.png',