[go: up one dir, main page]

Menu

[r9]: / kscraft / trunk / constants.py  Maximize  Restore  History

Download this file

905 lines (844 with data), 37.0 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
 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
# constants.py: Dark Age of Camelot Spellcrafting Calculator
# See http://www.ugcs.caltech.edu/~jlamanna/daoc/sccalc/index.html for updates
# Copyright (C) 2003, James Lamanna (jlamanna@ugcs.caltech.edu)
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
ScVersion = "1.42b + ehrayn/patch 1.0.0"
ClassList = { 'Albion' : ['Armsman', 'Cabalist', 'Cleric', 'Friar',
'Heretic', 'Infiltrator', 'Mercenary', 'Minstrel', 'Necromancer',
'Paladin', 'Reaver', 'Scout', 'Sorcerer', 'Theurgist', 'Wizard' ],
'Hibernia' : ['Animist', 'Bainshee', 'Bard', 'Blademaster', 'Champion',
'Druid', 'Eldritch', 'Enchanter', 'Hero', 'Mentalist', 'Nightshade',
'Ranger', 'Valewalker', 'Vampiir', 'Warden' ],
'Midgard' : ['Berserker', 'Bonedancer', 'Healer', 'Hunter',
'Runemaster', 'Savage', 'Shadowblade', 'Shaman', 'Skald', 'Spiritmaster',
'Thane', 'Valkyrie', 'Warlock', 'Warrior' ] }
TabList = ['Chest', 'Arms', 'Head', 'Legs', 'Hands', 'Feet', 'Right Hand',
'Left Hand', '2 Handed', 'Ranged', 'Spare', 'Neck', 'Cloak', 'Jewel',
'Belt', 'Left Ring', 'Right Ring', 'Left Wrist', 'Right Wrist']
TypeList = ['Unused', 'Stat', 'Resist', 'Hits', 'Power', 'Focus', 'Skill']
DropTypeList = ['Unused', 'Stat', 'Resist', 'Hits', 'Power', 'Focus', 'Skill',
'Cap Increase', 'Other Bonus']
StatList = [
['Strength', 'Fiery'], ['Constitution', 'Earthen'],
['Dexterity', 'Vapor'], ['Quickness', 'Airy'], ['Intelligence', 'Dusty'],
['Piety', 'Watery'], ['Charisma', 'Icy'] , ['Empathy', 'Heated'] ]
DropStatList = [
['Strength', 'Fiery'], ['Constitution', 'Earthen'],
['Dexterity', 'Vapor'], ['Quickness', 'Airy'], ['Intelligence', 'Dusty'],
['Piety', 'Watery'], ['Charisma', 'Icy'] , ['Empathy', 'Heated'],
['Acuity', '' ] ]
AllBonusList = { 'Armsman' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Crush', 'Slash', 'Thrust', 'Polearm', 'Two Handed'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Cabalist' : {'All Focus Bonus' : ['Body Focus', 'Matter Focus', 'Spirit Focus'],
'All Magic Skill Bonus' : ['Body Magic', 'Matter Magic', 'Spirit Magic'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Cleric' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Rejuvenation', 'Enhancement', 'Smite'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Friar' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Rejuvenation', 'Enhancement'],
'All Melee Skill Bonus' : ['Staff'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Heretic' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Rejuvenation', 'Enhancement'],
'All Melee Skill Bonus' : ['Crush', 'Flexible'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Infiltrator' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Slash', 'Thrust'],
'All Dual Wield Skill Bonus' : ['Dual Wield'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Mercenary' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Crush', 'Slash', 'Thrust'],
'All Dual Wield Skill Bonus' : ['Dual Wield'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Minstrel' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Instruments'],
'All Melee Skill Bonus' : ['Slash', 'Thrust'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Charisma'] },
'Necromancer' : {'All Focus Bonus' : ['Deathsight Focus', 'Death Servant Focus',
'Painworking Focus'],
'All Magic Skill Bonus' : ['Deathsight', 'Death Servant', 'Painworking'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Paladin' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Crush', 'Slash', 'Thrust', 'Polearm', 'Two Handed'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Reaver' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Soulrending'],
'All Melee Skill Bonus' : ['Crush', 'Slash', 'Thrust', 'Flexible'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Scout' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Slash', 'Thrust'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : ['Longbow'],
'Acuity' : [] },
'Sorcerer' : {'All Focus Bonus' : ['Body Focus', 'Mind Focus', 'Matter Focus'],
'All Magic Skill Bonus' : ['Body Magic', 'Mind Magic', 'Matter Magic'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Theurgist' : {'All Focus Bonus' : ['Earth Focus', 'Cold Focus', 'Wind Focus'],
'All Magic Skill Bonus' : ['Earth Magic', 'Cold Magic', 'Wind Magic'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Wizard' : {'All Focus Bonus' : ['Earth Focus', 'Cold Focus', 'Fire Focus'],
'All Magic Skill Bonus' : ['Earth Magic', 'Cold Magic', 'Fire Magic'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Animist' : {'All Focus Bonus' : ['Creeping Path Focus', 'Arboreal Focus', 'Verdant Path Focus'],
'All Magic Skill Bonus' : ['Arboreal Path', 'Creeping Path', 'Verdant Path'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Bainshee' : {'All Focus Bonus' : ['Ethereal Shriek Focus', 'Phantasmal Wail Focus', 'Spectral Guard Focus'],
'All Magic Skill Bonus' : ['Ethereal Shriek', 'Phantasmal Wail', 'Spectral Guard'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Bard' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Regrowth', 'Nurture', 'Music'],
'All Melee Skill Bonus' : ['Blades', 'Blunt'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Charisma'] },
'Blademaster' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Blades', 'Blunt', 'Piercing'],
'All Dual Wield Skill Bonus' : ['Celtic Dual'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Champion' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Valor'],
'All Melee Skill Bonus' : ['Blades', 'Blunt', 'Piercing', 'Large Weaponry'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Druid' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Regrowth', 'Nature', 'Nurture'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Empathy'] },
'Eldritch' : {'All Focus Bonus' : ['Light Focus', 'Mana Focus', 'Void Focus'],
'All Magic Skill Bonus' : ['Light', 'Mana', 'Void'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Enchanter' : {'All Focus Bonus' : ['Light Focus', 'Mana Focus', 'Enchantments Focus'],
'All Magic Skill Bonus' : ['Light', 'Mana', 'Enchantments'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Mentalist' : {'All Focus Bonus' : ['Light Focus', 'Mana Focus', 'Mentalism Focus'],
'All Magic Skill Bonus' : ['Light', 'Mana', 'Mentalism'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Hero' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Blades', 'Blunt', 'Celtic Spear', 'Large Weaponry', 'Piercing'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Nightshade' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Blades', 'Blunt', 'Piercing'],
'All Dual Wield Skill Bonus' : ['Celtic Dual'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Ranger' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Pathfinding'],
'All Melee Skill Bonus' : ['Blades', 'Piercing'],
'All Dual Wield Skill Bonus' : ['Celtic Dual'],
'Archery Skill Bonus' : ['Recurve Bow'],
'Acuity' : ['Empathy'] },
'Valewalker' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Arboreal Path'],
'All Melee Skill Bonus' : ['Scythe'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Intelligence'] },
'Vampiir' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Dementia', 'Shadow Mastery', 'Vampiiric Embrace'],
'All Melee Skill Bonus' : ['Piercing'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Warden' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Nurture', 'Regrowth', 'Nature'],
'All Melee Skill Bonus' : ['Blades', 'Blunt'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Empathy'] },
'Berserker' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Axe', 'Hammer', 'Sword'],
'All Dual Wield Skill Bonus' : ['Left Axe'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Bonedancer' : {'All Focus Bonus' : ['Darkness Focus', 'Suppression Focus', 'Bone Army Focus'],
'All Magic Skill Bonus' : ['Darkness', 'Suppression', 'Bone Army'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Healer' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Mending', 'Augmentation'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Hunter' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Beastcraft'],
'All Melee Skill Bonus' : ['Spear', 'Sword'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : ['Composite Bow'],
'Acuity' : [] },
'Runemaster' : {'All Focus Bonus' : ['Darkness Focus', 'Suppression Focus', 'Runecarving Focus'],
'All Magic Skill Bonus' : ['Darkness', 'Suppression', 'Runecarving'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Savage' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Savagery'],
'All Melee Skill Bonus' : ['Sword', 'Axe', 'Hammer', 'Hand To Hand'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Shadowblade' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Sword', 'Axe'],
'All Dual Wield Skill Bonus' : ['Left Axe'],
'Archery Skill Bonus' : [],
'Acuity' : [] },
'Shaman' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Augmentation', 'Mending', 'Subterranean'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Skald' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Battlesongs'],
'All Melee Skill Bonus' : ['Sword', 'Hammer', 'Axe'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Charisma'] },
'Spiritmaster' : {'All Focus Bonus' : ['Darkness Focus', 'Suppression Focus', 'Summoning Focus'],
'All Magic Skill Bonus' : ['Darkness', 'Suppression', 'Summoning'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Thane' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Stormcalling'],
'All Melee Skill Bonus' : ['Sword', 'Hammer', 'Axe'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Valkyrie' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : ['Odin\'s Will'],
'All Melee Skill Bonus' : ['Sword', 'Spear'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Warlock' : {'All Focus Bonus' : ['Cursing'],
'All Magic Skill Bonus' : ['Cursing', 'Hexing', 'Witchcraft'],
'All Melee Skill Bonus' : [],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : ['Piety'] },
'Warrior' : {'All Focus Bonus' : [],
'All Magic Skill Bonus' : [],
'All Melee Skill Bonus' : ['Sword', 'Hammer', 'Axe'],
'All Dual Wield Skill Bonus' : [],
'Archery Skill Bonus' : [],
'Acuity' : [] } }
HighCapBonusList = [
'Power Percentage Bonus',
'Debuff Bonus',
'Buff Bonus',
'Healing Bonus',
'Spell Duration Bonus',
'AF Bonus',
'Fatigue' ]
OtherBonusList = [
[ 'Power Percentage Bonus', ''],
[ 'Debuff Bonus', ''],
[ 'Buff Bonus', ''],
[ 'Healing Bonus', ''],
[ 'Spell Duration Bonus', ''],
[ 'Casting Speed Bonus', ''],
[ 'Spell Range Bonus', ''],
[ 'Spell Damage Bonus', ''],
[ 'Archery Damage Bonus', ''],
[ 'Archery Range Bonus', ''],
[ 'Archery Speed Bonus', ''],
[ 'Style Damage Bonus', ''],
[ 'Melee Damage Bonus', ''],
[ 'Melee Speed Bonus', ''],
[ 'AF Bonus', ''],
[ 'Fatigue', ''] ]
CapIncreaseList = [
['Strength', ''], ['Constitution', ''],
['Dexterity', ''], ['Quickness', ''], ['Intelligence', ''],
['Piety', ''], ['Charisma', ''] , ['Empathy', ''],
['Hits', ''], ['Power', ''], ['Acuity', ''], ['AF', ''] ]
StatValues = ['1', '4', '7', '10', '13', '16', '19', '22', '25', '28']
QualityValues = ['94', '95', '96', '97', '98', '99', '100']
ResistList = [ ['Body Resist', 'Dusty'], ['Cold Resist', 'Icy'],
['Heat Resist', 'Heated'], ['Energy Resist', 'Light'],
['Matter Resist', 'Earthen'], ['Spirit Resist', 'Vapor'],
['Crush Resist', 'Fiery'], ['Thrust Resist', 'Airy'],
['Slash Resist', 'Watery'] ]
ResistValues = ['1', '2', '3', '5', '7', '9', '11', '13', '15', '17']
HitsList = [ ['Hits', 'Blood'] ]
HitsValues = ['4', '12', '20', '28', '36', '44', '52', '60', '68', '76']
PowerList = [ ['Power', 'Mystical'] ]
PowerValues = ['1', '2', '3', '5', '7', '9', '11', '13', '15', '17']
FocusList = {
'Albion' :
[ ['Body Focus', 'Heat Sigil'],
['Cold Focus', 'Ice Sigil'],
['Death Servant Focus', 'Ashen Sigil'],
['Deathsight Focus', 'Vacuous Sigil'],
['Earth Focus', 'Earth Sigil'],
['Fire Focus', 'Fire Sigil'],
['Matter Focus', 'Dust Sigil'],
['Mind Focus', 'Water Sigil'],
['Painworking Focus', 'Salt Crusted Sigil'],
['Spirit Focus', 'Vapor Sigil'],
['Wind Focus', 'Air Sigil'],
['All Focus Bonus', 'Brilliant Sigil'] ],
'Hibernia' :
[ ['Arboreal Focus', 'Steaming Spell Stone'] ,
['Creeping Path Focus', 'Oozing Spell Stone'],
['Enchantments Focus', 'Vapor Spell Stone'],
['Ethereal Shriek Focus', 'Ethereal Spell Stone'],
['Light Focus', 'Fire Spell Stone'],
['Mana Focus', 'Water Spell Stone'],
['Mentalism Focus', 'Earth Spell Stone'],
['Phantasmal Wail Focus', 'Phantasmal Spell Stone'],
['Spectral Guard Focus', 'Spectral Spell Stone'],
['Verdant Path Focus', 'Mineral Encrusted Spell Stone'],
['Void Focus', 'Ice Spell Stone'],
['All Focus Bonus', 'Brilliant Spell Stone'] ],
'Midgard' :
[ ['Bone Army Focus', 'Ashen Rune'],
['Cursing Focus', 'Blighted Rune'],
['Darkness Focus', 'Ice Rune'],
['Runecarving Focus', 'Heat Rune'],
['Summoning Focus', 'Vapor Rune'],
['Suppression Focus', 'Dust Rune'],
['All Focus Bonus', 'Brilliant Rune'] ] }
DropFocusList = {
'Albion' :
[ ['Body Focus', 'Heat Sigil'],
['Cold Focus', 'Ice Sigil'],
['Death Servant Focus', 'Ashen Sigil'],
['Deathsight Focus', 'Vacuous Sigil'],
['Earth Focus', 'Earth Sigil'],
['Fire Focus', 'Fire Sigil'],
['Matter Focus', 'Dust Sigil'],
['Mind Focus', 'Water Sigil'],
['Painworking Focus', 'Salt Crusted Sigil'],
['Spirit Focus', 'Vapor Sigil'],
['Wind Focus', 'Air Sigil'],
['All Focus Bonus', 'Brilliant Sigil'] ],
'Hibernia' :
[ ['Arboreal Focus', 'Steaming Spell Stone'] ,
['Creeping Path Focus', 'Oozing Spell Stone'],
['Enchantments Focus', 'Vapor Spell Stone'],
['Ethereal Shriek Focus', 'Ethereal Spell Stone'],
['Light Focus', 'Fire Spell Stone'],
['Mana Focus', 'Water Spell Stone'],
['Mentalism Focus', 'Earth Spell Stone'],
['Phantasmal Wail Focus', 'Phantasmal Spell Stone'],
['Spectral Guard Focus', 'Spectral Spell Stone'],
['Verdant Path Focus', 'Mineral Encrusted Nature Stone'],
['Void Focus', 'Ice Spell Stone'],
['Ethereal Shriek Focus', 'Ethereal Spell Stone'],
['Phantasmal Wail Focus', 'Phantasmal Spell Stone'],
['Spectral Guard Focus', 'Spectral Spell Stone'],
['All Focus Bonus', 'Brilliant Spell Stone'] ],
'Midgard' :
[ ['Bone Army Focus', 'Ashen Rune'],
['Cursing Focus', 'Blighted Rune'],
['Darkness Focus', 'Ice Rune'],
['Runecarving Focus', 'Heat Rune'],
['Summoning Focus', 'Vapor Rune'],
['Suppression Focus', 'Dust Rune'],
['All Focus Bonus', 'Brilliant Rune'] ] }
FocusValues = ['5', '10', '15', '20', '25', '30', '35', '40', '45', '50']
SkillList = {
'Midgard' :
[ ['Augmentation', 'Airy Chaos Rune'],
['Axe', 'Earthen War Rune'],
['Battlesongs', 'Airy Primal Rune'],
['BeastCraft', 'Earthen Primal Rune'],
['Bone Army', 'Ashen Primal Rune'],
['Composite Bow', 'Airy War Rune'],
['Critical Strike', 'Heated Battle Jewel'],
['Cursing', 'Blighted Primal Rune'],
['Darkness', 'Icy Chaos Rune'],
['Envenom', 'Dusty Battle Jewel'],
['Hammer', 'Fiery War Rune'],
['Hand To Hand', 'Lightning Charged War Rune'],
['Hexing', 'Unholy Primal Rune'],
['Left Axe', 'Icy War Rune'],
['Mending', 'Watery Chaos Rune'],
["Odin's Will", 'Valiant Primal Rune'],
['Pacification', 'Earthen Chaos Rune'],
['Parry', 'Vapor Battle Jewel'],
['Runecarving', 'Heated Chaos Rune'],
['Shield', 'Fiery Battle Jewel'],
['Spear', 'Heated War Rune'],
['Staff', 'Earthen Battle Jewel'],
['Stealth', 'Airy Battle Jewel'],
['Stormcalling', 'Fiery Primal Rune'],
['Subterranean', 'Fiery Chaos Rune'],
['Summoning', 'Vapor Chaos Rune'],
['Suppression', 'Dusty Chaos Rune'],
['Sword', 'Watery War Rune'],
['Thrown Weapons', 'Vapor War Rune'],
['All Magic Skill Bonus', 'Finesse Primal Rune'],
['All Melee Skill Bonus', 'Finesse War Rune'] ],
'Albion' : [
['Body Magic', 'Heated Evocation Sigil' ],
['Chants', 'Earthen Fervor Sigil' ],
['Cold Magic', 'Icy Evocation Sigil' ],
['Critical Strike','Heated Battle Jewel' ],
['Crossbow', 'Vapor War Sigil' ],
['Crush', 'Fiery War Sigil' ],
['Death Servant', 'Ashen Fervor Sigil' ],
['Deathsight', 'Vacuous Fervor Sigil' ],
['Dual Wield', 'Icy War Sigil' ],
['Earth Magic', 'Earthen Evocation Sigil' ],
['Enhancement', 'Airy Fervor Sigil' ],
['Envenom', 'Dusty Battle Jewel' ],
['Flexible', 'Molten Magma War Sigil' ],
['Fire Magic','Fiery Evocation Sigil' ],
['Instruments', 'Vapor Fervor Sigil' ],
['Longbow', 'Airy War Sigil' ],
['Matter Magic', 'Dusty Evocation Sigil' ],
['Mind Magic', 'Watery Evocation Sigil' ],
['Painworking','Salt Crusted Fervor Sigil' ],
['Parry', 'Vapor Battle Jewel' ],
['Polearm', 'Earthen War Sigil' ],
['Rejuvenation', 'Watery Fervor Sigil' ],
['Shield', 'Fiery Battle Jewel' ],
['Slash', 'Watery War Sigil' ],
['Smite','Fiery Fervor Sigil' ],
['Soulrending', 'Steaming Fervor Sigil' ],
['Spirit Magic', 'Vapor Evocation Sigil' ],
['Staff', 'Earthen Battle Jewel' ],
['Stealth', 'Airy Battle Jewel' ],
['Thrust','Dusty War Sigil' ],
['Two Handed', 'Heated War Sigil' ],
['Wind Magic', 'Air Evocation Sigil'],
['All Magic Skill Bonus', 'Finesse Fervor Sigil'],
['All Melee Skill Bonus', 'Finesse War Sigil'] ],
'Hibernia' :
[ ['Arboreal Path', 'Steaming Nature Spell Stone'],
['Blades', 'Watery War Spell Stone'],
['Blunt', 'Fiery War Spell Stone'],
['Celtic Dual', 'Icy War Spell Stone'],
['Celtic Spear', 'Earthen War Spell Stone'],
['Creeping Path', 'Oozing Nature Spell Stone'],
['Critical Strike', 'Heated Battle Jewel'],
['Dementia', 'Aberrant Arcane Spell Stone'],
['Enchantments', 'Vapor Arcane Spell Stone'],
['Envenom', 'Dusty Battle Jewel'],
['Ethereal Shriek', 'Ethereal Arcane Spell Stone'],
['Large Weaponry', 'Heated War Spell Stone'],
['Light', 'Fiery Arcane Spell Stone'],
['Mana', 'Watery Arcane Spell Stone'],
['Mentalism', 'Earthen Arcane Spell Stone'],
['Music', 'Airy Nature Spell Stone'],
['Nature', 'Earthen Nature Spell Stone'],
['Nurture', 'Fiery Nature Spell Stone'],
['Parry', 'Vapor Battle Jewel'],
['Phantasmal Wail', 'Phantasmal Arcane Spell Stone'],
['Piercing', 'Dusty War Spell Stone'],
['Recurve Bow', 'Airy War Spell Stone'],
['Regrowth', 'Watery Nature Spell Stone'],
['Scythe', 'Light War Spell Stone'],
['Shadow Mastery', 'Shadowy Arcane Spell Stone'],
['Shield', 'Fiery Battle Jewel'],
['Spectral Guard', 'Spectral Arcane Spell Stone'],
['Staff', 'Earthen Battle Jewel'],
['Stealth', 'Airy Battle Jewel'],
['Valor', 'Airy Arcane Spell Stone'],
['Vampiiric Embrace', 'Embracing Arcane Spell Stone'],
['Verdant Path', 'Mineral Encrusted Nature Spell Stone'],
['Void', 'Icy Arcane Spell Stone'],
['All Magic Skill Bonus', 'Finesse Nature Spell Stone'],
['All Melee Skill Bonus', 'Finesse War Spell Stone'] ] }
DropSkillList = {
'Midgard' :
[ ['Augmentation', 'Airy Chaos Rune'],
['Axe', 'Earthen War Rune'],
['Battlesongs', 'Airy Primal Rune'],
['BeastCraft', 'Earthen Primal Rune'],
['Bone Army', 'Ashen Chaos Rune'],
['Composite Bow', 'Airy War Rune'],
['Critical Strike', 'Heated Battle Jewel'],
['Cursing', 'Blighted Primal Rune'],
['Darkness', 'Icy Chaos Rune'],
['Envenom', 'Dusty Battle Jewel'],
['Hammer', 'Fiery War Rune'],
['Hand To Hand', 'Lightning Charged War Rune'],
['Hexing', 'Unholy Primal Rune'],
['Left Axe', 'Icy War Rune'],
['Mending', 'Watery Chaos Rune'],
['Odin\'s Will', 'Valiant Primal Rune'],
['Pacification', 'Earthen Chaos Rune'],
['Parry', 'Vapor Battle Jewel'],
['Runecarving', 'Heated Chaos Rune'],
['Shield', 'Fiery Battle Jewel'],
['Spear', 'Heated War Rune'],
['Staff', 'Earthen Battle Jewel'],
['Stealth', 'Airy Battle Jewel'],
['Stormcalling', 'Fiery Primal Rune'],
['Subterranean', 'Fiery Chaos Rune'],
['Summoning', 'Vapor Chaos Rune'],
['Suppression', 'Dusty Chaos Rune'],
['Sword', 'Watery War Rune'],
['Thrown Weapons', 'Vapor War Rune'],
['All Magic Skill Bonus', 'Finesse Primal Rune'],
['All Melee Skill Bonus', 'Finesse War Rune'],
['All Dual Wield Skill Bonus', ''],
['Archery Skill Bonus', ''] ],
'Albion' : [
['Body Magic', 'Heated Evocation Sigil' ],
['Chants', 'Earthen Fervor Sigil' ],
['Cold Magic', 'Icy Evocation Sigil' ],
['Critical Strike','Heated Battle Jewel' ],
['Crossbow', 'Vapor War Sigil' ],
['Crush', 'Fiery War Sigil' ],
['Cursing', 'Blighted Primal Rune'],
['Death Servant', 'Ashen Fervor Sigil' ],
['Deathsight', 'Vacuous Fervor Sigil' ],
['Dual Wield', 'Icy War Sigil' ],
['Earth Magic', 'Earthen Evocation Sigil' ],
['Enhancement', 'Airy Fervor Sigil' ],
['Envenom', 'Dusty Battle Jewel' ],
['Flexible', 'Molten Magma War Sigil' ],
['Fire Magic','Fiery Evocation Sigil' ],
['Hexing', 'Unholy Primal Rune'],
['Instruments', 'Vapor Fervor Sigil' ],
['Longbow', 'Airy War Sigil' ],
['Matter Magic', 'Dusty Evocation Sigil' ],
['Mind Magic', 'Watery Evocation Sigil' ],
['Odin\'s Will', 'Valiant Primal Rune'],
['Painworking','Salt Crusted Fervor Sigil' ],
['Parry', 'Vapor Battle Jewel' ],
['Polearm', 'Earthen War Sigil' ],
['Rejuvenation', 'Watery Fervor Sigil' ],
['Shield', 'Fiery Battle Jewel' ],
['Slash', 'Watery War Sigil' ],
['Smite','Fiery Fervor Sigil' ],
['Soulrending', 'Steaming Fervor Sigil' ],
['Spirit Magic', 'Vapor Evocation Sigil' ],
['Staff', 'Earthen Battle Jewel' ],
['Stealth', 'Airy Battle Jewel' ],
['Thrust','Dusty War Sigil' ],
['Two Handed', 'Heated War Sigil' ],
['Wind Magic', 'Air Evocation Sigil'],
['All Magic Skill Bonus', 'Finesse Fervor Sigil'],
['All Melee Skill Bonus', 'Finesse War Sigil'],
['All Dual Wield Skill Bonus', ''],
['Archery Skill Bonus', ''] ],
'Hibernia' :
[ ['Arboreal Path', 'Steaming Nature Spell Stone'],
['Blades', 'Watery War Spell Stone'],
['Blunt', 'Fiery War Spell Stone'],
['Celtic Dual', 'Icy War Spell Stone'],
['Celtic Spear', 'Earthen War Spell Stone'],
['Creeping Path', 'Oozing Nature Spell Stone'],
['Critical Strike', 'Heated Battle Jewel'],
['Dementia', 'Aberrant Arcane Spell Stone'],
['Enchantments', 'Vapor Arcane Spell Stone'],
['Envenom', 'Dusty Battle Jewel'],
['Ethereal Shriek', 'Ethereal Arcane Spell Stone'],
['Large Weaponry', 'Heated War Spell Stone'],
['Light', 'Fiery Arcane Spell Stone'],
['Mana', 'Watery Arcane Spell Stone'],
['Mentalism', 'Earthen Arcane Spell Stone'],
['Music', 'Airy Nature Spell Stone'],
['Nature', 'Earthen Nature Spell Stone'],
['Nurture', 'Fiery Nature Spell Stone'],
['Parry', 'Vapor Battle Jewel'],
['Phantasmal Wail', 'Phantasmal Arcane Spell Stone'],
['Piercing', 'Dusty War Spell Stone'],
['Recurve Bow', 'Airy War Spell Stone'],
['Regrowth', 'Watery Nature Spell Stone'],
['Scythe', 'Light War Spell Stone'],
['Shadow Mastery', 'Shadowy Arcane Spell Stone'],
['Shield', 'Fiery Battle Jewel'],
['Spectral Guard', 'Spectral Arcane Spell Stone'],
['Staff', 'Earthen Battle Jewel'],
['Stealth', 'Airy Battle Jewel'],
['Valor', 'Airy Arcane Spell Stone'],
['Vampiiric Embrace', 'Embracing Arcane Spell Stone'],
['Verdant Path', 'Mineral Encrusted Nature Spell Stone'],
['Void', 'Icy Arcane Spell Stone'],
['All Magic Skill Bonus', 'Finesse Nature Spell Stone'],
['All Melee Skill Bonus', 'Finesse War Spell Stone'],
['All Dual Wield Skill Bonus', ''],
['Archery Skill Bonus', ''] ] }
SkillValues = ['1', '2', '3', '4', '5', '6', '7', '8']
# Placeholder
UnusedList = [ ]
UnusedValues = [ ]
Caps = { 'Str' : 'AttributeCap', 'Con' : 'AttributeCap',
'Dex' : 'AttributeCap', 'Qui' : 'AttributeCap',
'Int' : 'AttributeCap',
'Pie' : 'AttributeCap',
'Cha' : 'AttributeCap',
'Emp' : 'AttributeCap',
'Body' : 'ResistCap',
'Cold' : 'ResistCap', 'Heat' : 'ResistCap',
'Energy' : 'ResistCap', 'Matter' : 'ResistCap',
'Spirit' : 'ResistCap', 'Crush' : 'ResistCap',
'Thrust' : 'ResistCap',
'Slash' : 'ResistCap', 'Hits' : 'HitsCap',
'Power' : 'PowerCap', 'Skill' : 'SkillCap' }
ImbueMultipliers = { 'Stat' : 1.0, 'Resist' : 2.0, 'Skill' : 5.0,
'Hits' : 0.25, 'Power' : 2.0, 'Focus' : 1.0, 'Unused' : 0.0 }
OCStartPercentages = [0, 10, 20, 30, 50, 70]
GemQualOCModifiers = { '' : 0, '94': 0, '95' : 0, '96' : 1, '97' : 3, '98' : 5,
'99' : 8, '100' : 11 }
ItemQualOCModifiers = { '94': 0, '95' : 0, '96' : 6, '97' : 8, '98' : 10,
'99' : 18, '100' : 26 }
GemCosts = [ 160, 920, 3900, 13900, 40100, 88980, 133000, 198920, 258240, 296860 ]
RemakeCosts = [ 120, 560, 1740, 5260, 14180, 30660, 45520, 67680, 87640, 100700 ]
MaterialGems = ['Lo', 'Um', 'On', 'Ee', 'Pal', 'Mon', 'Ros', 'Zo', 'Kath', 'Ra' ]
LiquidsOrder = [ 'Sun Light',
'Draconic Fire', 'Treant Blood', 'Swamp Fog',
'Air Elemental Essence', 'Leviathan Blood',
'Heat From an Unearthly Pyre',
'Undead Ash and Holy Water',
'Frost From a Wasteland',
'Giant Blood', 'Mystic Energy' ]
DustsOrder = ['Ground Draconic Scales',
'Essence of Life', 'Bloodied Battlefield Dirt',
'Unseelie Dust', 'Fairy Dust', 'Other Worldly Dust',
'Ground Caer Stone', 'Ground Blessed Undead Bone',
'Ground Cave Crystal',
'Ground Giant Bone', 'Ground Vendo Bone',
'Soot From Niflheim']
GemLiquids = {
'Fiery' : 'Draconic Fire',
'Earthen': 'Treant Blood',
'Vapor' : 'Swamp Fog',
'Airy' : 'Air Elemental Essence',
'Heated' : 'Heat From an Unearthly Pyre',
'Icy' : 'Frost From a Wasteland',
'Watery' : 'Leviathan Blood',
'Dusty' : 'Undead Ash and Holy Water',
'Fire' : 'Draconic Fire',
'Earth' : 'Treant Blood',
'Vapor' : 'Swamp Fog',
'Air' : 'Air Elemental Essence',
'Heat' : 'Heat From an Unearthly Pyre',
'Ice' : 'Frost From a Wasteland',
'Water' : 'Leviathan Blood',
'Dust' : 'Undead Ash and Holy Water',
'Ashen' : 'Undead Ash and Holy Water',
'Vacuous' : 'Swamp Fog',
'Salt' : 'Mystic Energy',
'Steaming Spell' : 'Swamp Fog',
'Steaming Nature' : 'Swamp Fog',
'Steaming Fervor' : 'Heat From an Unearthly Pyre',
'Oozing' : 'Treant Blood',
'Mineral' : 'Heat From an Unearthly Pyre',
'Lightning' : 'Leviathan Blood',
'Molten' : 'Leviathan Blood',
'Light' : 'Sun Light',
'Blood' : 'Giant Blood',
'Mystical' : 'Mystic Energy',
'Mystic' : 'Mystic Energy',
'Brilliant' : ['Draconic Fire', 'Mystic Energy', 'Treant Blood'],
'Finesse' : ['Draconic Fire', 'Mystic Energy', 'Treant Blood'],
'Ethereal Spell' : 'Swamp Fog',
'Phantasmal Spell' : 'Leviathan Blood',
'Spectral Spell' : 'Draconic Fire',
'Ethereal Arcane' : 'Leviathan Blood',
'Phantasmal Arcane' : 'Draconic Fire',
'Spectral Arcane' : 'Air Elemental Essence',
'Aberrant' : 'Treant Blood',
'Embracing' : 'Frost From a Wasteland',
'Shadowy' : 'Swamp Fog',
'Blighted Primal' : 'Air Elemental Essence',
'Blighted Rune' : 'Undead Ash and Holy Water',
'Valiant' : 'Swamp Fog',
'Unholy' : 'Air Elemental Essence' }
GemDusts = { 'Essence' : 'Essence of Life',
'Shielding' : 'Ground Draconic Scales',
'Spell Stone' : 'Ground Draconic Scales',
'Sigil' : 'Ground Draconic Scales',
'Rune' : 'Ground Draconic Scales',
'Chaos Rune' : 'Soot From Niflheim',
'Battle Jewel': 'Bloodied Battlefield Dirt',
'War Rune': 'Ground Giant Bone',
'Primal Rune': 'Ground Vendo Bone',
'Evocation Sigil': 'Ground Cave Crystal',
'Fervor Sigil':'Ground Blessed Undead Bone',
'War Sigil' : 'Ground Caer Stone',
'Nature Spell Stone' : 'Fairy Dust',
'War Spell Stone' : 'Unseelie Dust',
'Arcane Spell Stone' : 'Other Worldly Dust' }
GemNames = [ 'raw', 'uncut', 'rough', 'flawed', 'imperfect', 'polished',
'faceted', 'precious', 'flawless', 'perfect' ]
GemSubName = { 'Stat' : 'Essence', 'Resist' : 'Shielding', 'Hits' : 'Essence',
'Power' : 'Essence', 'Focus' : '', 'Skill' : '' }
ImbuePts = [
[0,1,1,1,1,1,1],
[1,1,1,1,1,2,2],
[1,1,1,2,2,2,2],
[1,1,2,2,2,3,3],
[1,2,2,2,3,3,4],
[1,2,2,3,3,4,4],
[2,2,3,3,4,4,5],
[2,3,3,4,4,5,5],
[2,3,3,4,5,5,6],
[2,3,4,4,5,6,7],
[2,3,4,5,6,6,7],
[3,4,4,5,6,7,8],
[3,4,5,6,6,7,9],
[3,4,5,6,7,8,9],
[3,4,5,6,7,8,10],
[3,5,6,7,8,9,10],
[4,5,6,7,8,10,11],
[4,5,6,8,9,10,12],
[4,6,7,8,9,11,12],
[4,6,7,8,10,11,13],
[4,6,7,9,10,12,13],
[5,6,8,9,11,12,14],
[5,7,8,10,11,13,15],
[5,7,9,10,12,13,15],
[5,7,9,10,12,14,16],
[5,8,9,11,12,14,16],
[6,8,10,11,13,15,17],
[6,8,10,12,13,15,18],
[6,8,10,12,14,16,18],
[6,9,11,12,14,16,19],
[6,9,11,13,15,17,20],
[7,9,11,13,15,17,20],
[7,10,12,14,16,18,21],
[7,10,12,14,16,19,21],
[7,10,12,14,17,19,22],
[7,10,13,15,17,20,23],
[8,11,13,15,17,20,23],
[8,11,13,16,18,21,24],
[8,11,14,16,18,21,24],
[8,11,14,16,19,22,25],
[8,12,14,17,19,22,26],
[9,12,15,17,20,23,26],
[9,12,15,18,20,23,27],
[9,13,15,18,21,24,27],
[9,13,16,18,21,24,28],
[9,13,16,19,22,25,29],
[10,13,16,19,22,25,29],
[10,14,17,20,23,26,30],
[10,14,17,20,23,27,31],
[10,14,17,20,23,27,31],
[10,15,18,21,24,28,32] ]
FileExt = { 'Neck' : 'neck', 'Cloak' : 'cloak', 'Belt' : 'belt', 'Jewel' : 'jewel',
'Left Ring' : 'ring', 'Right Ring' : 'ring', 'Left Wrist' : ['bracer', 'wrist'],
'Right Wrist' : ['bracer', 'wrist'], 'Chest' : 'chest', 'Arms' : 'arms',
'Head' : 'helm', 'Legs' : 'legs', 'Feet' : 'boots', 'Hands' : 'hands',
'Right Hand' : 'wep', 'Left Hand' : 'lhwep', '2 Handed' : ['2hwep', 'lhwep', 'wep'],
'Ranged' : 'ranged', 'Spare' : '*' }
ShieldTypes = ['Rowan', 'Elm', 'Oaken', 'Ironwood', 'Heartwood', 'Runewood',
'Stonewood', 'Ebonwood', 'Dyrwood', 'Duskwood' ]
Races = {'Albion' : [
'Avalonian',
'Briton',
'Inconnu',
'Saracen',
'Half Ogre',
'Highlander' ],
'Hibernia' : [
'Celt',
'Elf',
'Firbolg',
'Lurikeen',
'Shar',
'Sylvan' ],
'Midgard' : [
'Dwarf',
'Frostalf',
'Kobold',
'Troll',
'Norseman',
'Valkyn' ]
}
RacialResists = {
'Avalonian' : {'Crush' : 2, 'Slash' : 3, 'Matter' : 5 },
'Briton' : {'Cold' : 5, 'Crush' : 2, 'Slash' : 3},
'Inconnu' : {'Crush' : 2, 'Thrust' : 3, 'Heat' : 5, 'Spirit' : 5 },
'Saracen' : {'Slash' : 2, 'Thrust' : 3, 'Heat' : 5 },
'Half Ogre' : {'Thrust' : 2, 'Slash' : 3, 'Matter' : 5 },
'Highlander' : {'Crush' : 3, 'Slash' : 2, 'Cold' : 5 },
'Celt' : {'Crush' : 2, 'Slash' : 3, 'Spirit' : 5 },
'Elf' : {'Slash' : 2, 'Thrust' : 3, 'Spirit' : 5 },
'Firbolg' : {'Crush' : 3, 'Slash' : 2, 'Heat' : 5 },
'Lurikeen' : {'Crush' : 5, 'Energy' : 5 },
'Shar' : {'Crush' : 5, 'Energy' : 5 },
'Sylvan' : {'Crush' : 3, 'Thrust' : 2, 'Matter' : 5, 'Energy' : 5 },
'Dwarf' : {'Slash' : 2, 'Thrust' : 3, 'Body' : 5 },
'Frostalf' : {'Slash' : 2, 'Thrust' : 3, 'Spirit' : 5 },
'Kobold' : {'Crush' : 5, 'Energy' : 5 },
'Troll' : {'Slash' : 3, 'Thrust' : 2, 'Matter' : 5 },
'Norseman' : {'Crush' : 2, 'Slash' : 3, 'Cold' : 5 },
'Valkyn' : {'Slash' : 3, 'Thrust' : 2, 'Cold' : 5, 'Body' : 5 } }