-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1049 lines (981 loc) · 114 KB
/
index.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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- v2 -->
<head>
<title>Dark Souls II Armor Calculator</title>
<style type="text/css">
body { font-family:sans-serif; }
table.output {
border-spacing: 5px;
font-family:sans-serif;
font-size:small;
empty-cells:hide;
}
table.output tbody tr td {
border-bottom: 1px solid lightgrey;
}
table.output tbody tr:hover {
background:lavenderblush;
}
table.output thead {
font-weight:bold;
background:lightgrey;
text-align:center;
}
.maxinfo { color:grey; font-size: small; }
.weight { background:yellow; }
.minim { background:lime; }
.restriction { background:lightpink; }
.rphy { font-weight: bold; }
.rstr, .rsla, .rpie { color: darkgrey; }
.rmag { color:blue; }
.rfir { color:red; }
.rlig { color:darkgoldenrod; }
.rpsn { color:green; }
.rble { color:darkred; }
.rsticky { font-family:monospace; }
.rsticky a { font-family:monospace; }
.srname { font-weight:bold; }
.crname { background:khaki; }
a { text-decoration: none; }
a:hover { text-decoration:underline; }
</style>
<script type="text/javascript">
var armory = {
head:[
{id:1, index:0, name:"<none>", disp:"<none>", typ:"h", upg:0, wei:0.0, phy:0.0, str:0.0, sla:0.0, pie:0.0, mag:0.0, fir:0.0, lig:0.0, dar:0.0, poi:0.0, psn:0.0, ble:0.0, pet: 0.0, cur:0.0, setname:"" },
{id:2, index:1, name:"Alonne Captain Helm+10", disp:"Alonne Captain Helm+10", typ:"h", upg:10, wei:5.1, phy:106, str:100, sla:112, pie:106, mag:22, fir:34, lig:15, dar:22, poi:12, psn:11, ble:25, pet:0, cur:0, setname:"" },
{id:3, index:2, name:"Alonne Knight Helm+10", disp:"Alonne Knight Helm+10", typ:"h", upg:10, wei:4.6, phy:95, str:90, sla:100, pie:95, mag:14, fir:25, lig:10, dar:14, poi:11, psn:5, ble:17, pet:0, cur:0, setname:"" },
{id:4, index:3, name:"Alonne`s Helm+5", disp:"Alonne`s Helm+5", typ:"h", upg:5, wei:4, phy:77, str:74, sla:80, pie:76, mag:20, fir:22, lig:15, dar:21, poi:8, psn:21, ble:28, pet:0, cur:0, setname:"" },
{id:5, index:4, name:"Alva Helm+10", disp:"Alva Helm+10", typ:"h", upg:10, wei:3.7, phy:75, str:72, sla:78, pie:74, mag:21, fir:23, lig:16, dar:22, poi:6, psn:22, ble:29, pet:0, cur:0, setname:"" },
{id:6, index:5, name:"Archdrake Helm+10", disp:"Archdrake Helm+10", typ:"h", upg:10, wei:5.4, phy:98, str:98, sla:98, pie:98, mag:31, fir:30, lig:51, dar:29, poi:7, psn:26, ble:22, pet:0, cur:0, setname:"" },
{id:7, index:6, name:"Bell Keeper Helmet+10", disp:"Bell Keeper Helmet+10", typ:"h", upg:10, wei:4.8, phy:105, str:90, sla:114, pie:110, mag:22, fir:36, lig:10, dar:40, poi:5, psn:15, ble:31, pet:0, cur:0, setname:"" },
{id:8, index:7, name:"Benhart`s Knight Helm+10", disp:"Benhart`s Knight Helm+10", typ:"h", upg:10, wei:7, phy:139, str:134, sla:144, pie:139, mag:32, fir:30, lig:28, dar:32, poi:11, psn:36, ble:28, pet:0, cur:0, setname:"" },
{id:9, index:8, name:"Black Dragon Helm", disp:"Black Dragon Helm", typ:"h", upg:0, wei:2.2, phy:56, str:54, sla:57, pie:56, mag:20, fir:44, lig:21, dar:20, poi:0, psn:25, ble:36, pet:29, cur:29, setname:"" },
{id:10, index:9, name:"Black Hollow Mage Hood+10", disp:"Black Hollow Mage Hood+10", typ:"h", upg:10, wei:1.9, phy:64, str:67, sla:62, pie:62, mag:54, fir:38, lig:41, dar:45, poi:0, psn:26, ble:24, pet:25, cur:25, setname:"" },
{id:11, index:10, name:"Black Hood+5", disp:"Black Hood+5", typ:"h", upg:5, wei:0.9, phy:35, str:37, sla:33, pie:33, mag:38, fir:25, lig:25, dar:25, poi:0, psn:16, ble:14, pet:20, cur:18, setname:"" },
{id:12, index:11, name:"Black Witch Domino Mask+5", disp:"Black Witch Domino Mask+5", typ:"h", upg:5, wei:0.5, phy:15, str:16, sla:14, pie:14, mag:24, fir:12, lig:24, dar:24, poi:0, psn:7, ble:8, pet:26, cur:26, setname:"" },
{id:13, index:12, name:"Black Witch Hat+5", disp:"Black Witch Hat+5", typ:"h", upg:5, wei:1.5, phy:29, str:34, sla:28, pie:28, mag:22, fir:11, lig:22, dar:22, poi:0, psn:10, ble:12, pet:18, cur:18, setname:"" },
{id:14, index:13, name:"Black Witch Veil+5", disp:"Black Witch Veil+5", typ:"h", upg:5, wei:0.5, phy:15, str:16, sla:15, pie:15, mag:14, fir:11, lig:13, dar:14, poi:0, psn:5, ble:6, pet:7, cur:7, setname:"" },
{id:15, index:14, name:"Bone Crown+5", disp:"Bone Crown+5", typ:"h", upg:5, wei:1.7, phy:48, str:52, sla:46, pie:46, mag:30, fir:34, lig:27, dar:42, poi:0, psn:24, ble:16, pet:19, cur:30, setname:"" },
{id:16, index:15, name:"Brigand Hood+10", disp:"Brigand Hood+10", typ:"h", upg:10, wei:1.2, phy:44, str:48, sla:43, pie:41, mag:22, fir:17, lig:16, dar:19, poi:0, psn:18, ble:18, pet:0, cur:0, setname:"" },
{id:17, index:16, name:"Cale`s Helm+10", disp:"Cale`s Helm+10", typ:"h", upg:10, wei:3, phy:78, str:77, sla:77, pie:80, mag:22, fir:23, lig:19, dar:22, poi:0, psn:34, ble:21, pet:0, cur:0, setname:"" },
{id:18, index:17, name:"Catarina Helm+5", disp:"Catarina Helm+5", typ:"h", upg:5, wei:4.5, phy:86, str:86, sla:100, pie:86, mag:18, fir:20, lig:12, dar:18, poi:9, psn:15, ble:24, pet:0, cur:0, setname:"" },
{id:19, index:18, name:"Chaos Hood+5", disp:"Chaos Hood+5", typ:"h", upg:5, wei:0.9, phy:35, str:37, sla:33, pie:33, mag:25, fir:38, lig:25, dar:37, poi:0, psn:16, ble:14, pet:20, cur:18, setname:"" },
{id:20, index:19, name:"Charred Loyce Helm+5", disp:"Charred Loyce Helm+5", typ:"h", upg:5, wei:6.5, phy:121, str:104, sla:130, pie:121, mag:24, fir:33, lig:15, dar:24, poi:7, psn:21, ble:26, pet:0, cur:0, setname:"" },
{id:21, index:20, name:"Creighton`s Steel Mask+10", disp:"Creighton`s Steel Mask+10", typ:"h", upg:10, wei:4.3, phy:80, str:78, sla:83, pie:80, mag:24, fir:27, lig:14, dar:24, poi:6, psn:18, ble:30, pet:0, cur:0, setname:"" },
{id:22, index:21, name:"Crown of the Ivory King+5", disp:"Crown of the Ivory King+5", typ:"h", upg:5, wei:3.5, phy:68, str:64, sla:68, pie:64, mag:16, fir:13, lig:14, dar:12, poi:0, psn:33, ble:18, pet:18, cur:0, setname:"" },
{id:23, index:22, name:"Crown of the Old Iron King+5", disp:"Crown of the Old Iron King+5", typ:"h", upg:5, wei:4, phy:71, str:67, sla:71, pie:67, mag:12, fir:12, lig:13, dar:15, poi:0, psn:32, ble:17, pet:17, cur:20, setname:"" },
{id:24, index:23, name:"Crown of the Sunken King+5", disp:"Crown of the Sunken King+5", typ:"h", upg:5, wei:4, phy:70, str:66, sla:70, pie:66, mag:17, fir:15, lig:16, dar:14, poi:0, psn:35, ble:20, pet:20, cur:0, setname:"" },
{id:25, index:24, name:"Dark Mask+5", disp:"Dark Mask+5", typ:"h", upg:5, wei:3.8, phy:66, str:66, sla:70, pie:64, mag:17, fir:17, lig:12, dar:37, poi:6, psn:18, ble:21, pet:0, cur:0, setname:"" },
{id:26, index:25, name:"Desert Sorceress Hood+10", disp:"Desert Sorceress Hood+10", typ:"h", upg:10, wei:0.6, phy:20, str:21, sla:19, pie:19, mag:19, fir:13, lig:15, dar:17, poi:0, psn:7, ble:5, pet:13, cur:6, setname:"" },
{id:27, index:26, name:"Dingy Hood+10", disp:"Dingy Hood+10", typ:"h", upg:10, wei:0.8, phy:29, str:32, sla:27, pie:27, mag:17, fir:15, lig:16, dar:16, poi:0, psn:11, ble:12, pet:25, cur:25, setname:"" },
{id:28, index:27, name:"Dragon Acolyte Mask+10", disp:"Dragon Acolyte Mask+10", typ:"h", upg:10, wei:1.5, phy:45, str:48, sla:44, pie:44, mag:19, fir:19, lig:22, dar:23, poi:0, psn:21, ble:17, pet:0, cur:21, setname:"" },
{id:29, index:28, name:"Dragon Sage Hood+10", disp:"Dragon Sage Hood+10", typ:"h", upg:10, wei:2, phy:50, str:53, sla:49, pie:49, mag:21, fir:21, lig:24, dar:25, poi:0, psn:23, ble:19, pet:0, cur:42, setname:"" },
{id:30, index:29, name:"Dragonrider Helm+5", disp:"Dragonrider Helm+5", typ:"h", upg:5, wei:7.5, phy:160, str:149, sla:167, pie:160, mag:14, fir:13, lig:14, dar:14, poi:16, psn:13, ble:18, pet:0, cur:0, setname:"" },
{id:31, index:30, name:"Drakeblood Helm+10", disp:"Drakeblood Helm+10", typ:"h", upg:10, wei:4.7, phy:95, str:92, sla:103, pie:98, mag:15, fir:24, lig:11, dar:20, poi:7, psn:20, ble:26, pet:0, cur:0, setname:"" },
{id:32, index:31, name:"Drakekeeper Helm+10", disp:"Drakekeeper Helm+10", typ:"h", upg:10, wei:6, phy:127, str:122, sla:134, pie:127, mag:17, fir:19, lig:15, dar:17, poi:14, psn:17, ble:25, pet:0, cur:24, setname:"" },
{id:33, index:32, name:"Drangleic Helm+5", disp:"Drangleic Helm+5", typ:"h", upg:5, wei:5.9, phy:119, str:112, sla:129, pie:121, mag:19, fir:19, lig:17, dar:19, poi:10, psn:20, ble:26, pet:0, cur:0, setname:"" },
{id:34, index:33, name:"Durgo`s Hat+5", disp:"Durgo`s Hat+5", typ:"h", upg:5, wei:2.6, phy:33, str:32, sla:35, pie:31, mag:18, fir:15, lig:13, dar:15, poi:0, psn:14, ble:12, pet:0, cur:0, setname:"" },
{id:35, index:34, name:"Elite Knight Helm+10", disp:"Elite Knight Helm+10", typ:"h", upg:10, wei:4.5, phy:80, str:78, sla:88, pie:80, mag:23, fir:24, lig:16, dar:23, poi:6, psn:19, ble:27, pet:0, cur:0, setname:"" },
{id:36, index:35, name:"Executioner Helm+5", disp:"Executioner Helm+5", typ:"h", upg:5, wei:4.4, phy:92, str:84, sla:97, pie:95, mag:21, fir:22, lig:15, dar:49, poi:5, psn:17, ble:63, pet:0, cur:44, setname:"" },
{id:37, index:36, name:"Falconer Helm+10", disp:"Falconer Helm+10", typ:"h", upg:10, wei:4.5, phy:86, str:76, sla:93, pie:88, mag:26, fir:37, lig:14, dar:26, poi:6, psn:18, ble:33, pet:0, cur:0, setname:"" },
{id:38, index:37, name:"Faraam Helm+10", disp:"Faraam Helm+10", typ:"h", upg:10, wei:4.8, phy:95, str:90, sla:101, pie:96, mag:21, fir:23, lig:14, dar:21, poi:9, psn:18, ble:25, pet:0, cur:0, setname:"" },
{id:39, index:38, name:"Fume Sorcerer Mask+10", disp:"Fume Sorcerer Mask+10", typ:"h", upg:10, wei:2, phy:31, str:33, sla:30, pie:30, mag:11, fir:15, lig:15, dar:15, poi:6, psn:15, ble:12, pet:0, cur:0, setname:"" },
{id:40, index:39, name:"Grave Warden Mask+10", disp:"Grave Warden Mask+10", typ:"h", upg:10, wei:0.5, phy:13, str:14, sla:13, pie:13, mag:6, fir:6, lig:7, dar:7, poi:0, psn:7, ble:6, pet:0, cur:0, setname:"" },
{id:41, index:40, name:"Gyrm Helm+10", disp:"Gyrm Helm+10", typ:"h", upg:10, wei:8.2, phy:158, str:153, sla:164, pie:149, mag:25, fir:23, lig:20, dar:25, poi:19, psn:49, ble:37, pet:26, cur:26, setname:"" },
{id:42, index:41, name:"Gyrm Warrior Greathelm+10", disp:"Gyrm Warrior Greathelm+10", typ:"h", upg:10, wei:9.6, phy:169, str:170, sla:180, pie:152, mag:24, fir:28, lig:28, dar:24, poi:24, psn:17, ble:46, pet:0, cur:0, setname:"" },
{id:43, index:42, name:"Gyrm Warrior Helm+10", disp:"Gyrm Warrior Helm+10", typ:"h", upg:10, wei:8.9, phy:158, str:155, sla:175, pie:151, mag:19, fir:23, lig:23, dar:19, poi:22, psn:12, ble:41, pet:0, cur:0, setname:"" },
{id:44, index:43, name:"Havel`s Helm+5", disp:"Havel`s Helm+5", typ:"h", upg:5, wei:7.5, phy:153, str:132, sla:174, pie:153, mag:20, fir:22, lig:18, dar:20, poi:19, psn:6, ble:36, pet:15, cur:15, setname:"" },
{id:45, index:44, name:"Heide Knight Greathelm+10", disp:"Heide Knight Greathelm+10", typ:"h", upg:10, wei:6, phy:119, str:111, sla:127, pie:119, mag:20, fir:26, lig:17, dar:36, poi:11, psn:39, ble:29, pet:0, cur:31, setname:"" },
{id:46, index:45, name:"Heide Knight Iron Mask+10", disp:"Heide Knight Iron Mask+10", typ:"h", upg:10, wei:5.2, phy:105, str:92, sla:123, pie:104, mag:22, fir:22, lig:8, dar:34, poi:8, psn:38, ble:59, pet:0, cur:32, setname:"" },
{id:47, index:46, name:"Helm of Aurous+5", disp:"Helm of Aurous+5", typ:"h", upg:5, wei:3.8, phy:69, str:67, sla:72, pie:69, mag:24, fir:24, lig:17, dar:26, poi:6, psn:19, ble:25, pet:0, cur:0, setname:"" },
{id:48, index:47, name:"Helm of Aurous (T)+5", disp:"Helm of Aurous (T)+5", typ:"h", upg:5, wei:1.2, phy:43, str:46, sla:41, pie:42, mag:17, fir:14, lig:18, dar:15, poi:0, psn:12, ble:13, pet:0, cur:0, setname:"" },
{id:49, index:48, name:"Hexer`s Hood+5", disp:"Hexer`s Hood+5", typ:"h", upg:5, wei:0.9, phy:35, str:37, sla:33, pie:33, mag:25, fir:38, lig:25, dar:25, poi:0, psn:16, ble:14, pet:20, cur:18, setname:"" },
{id:50, index:49, name:"Hollow Infantry Helm+10", disp:"Hollow Infantry Helm+10", typ:"h", upg:10, wei:4, phy:62, str:64, sla:61, pie:61, mag:13, fir:11, lig:17, dar:13, poi:0, psn:13, ble:13, pet:0, cur:0, setname:"" },
{id:51, index:50, name:"Hollow Skin+10", disp:"Hollow Skin+10", typ:"h", upg:10, wei:1.5, phy:13, str:13, sla:13, pie:13, mag:4, fir:4, lig:4, dar:4, poi:0, psn:4, ble:4, pet:4, cur:1000, setname:"" },
{id:52, index:51, name:"Hollow Soldier Helm+10", disp:"Hollow Soldier Helm+10", typ:"h", upg:10, wei:4.3, phy:69, str:66, sla:73, pie:70, mag:22, fir:23, lig:15, dar:22, poi:4, psn:18, ble:21, pet:0, cur:0, setname:"" },
{id:53, index:52, name:"Hunter`s Hat+10", disp:"Hunter`s Hat+10", typ:"h", upg:10, wei:1.2, phy:33, str:35, sla:32, pie:32, mag:12, fir:8, lig:16, dar:13, poi:0, psn:13, ble:11, pet:0, cur:0, setname:"" },
{id:54, index:53, name:"Imperious Helm+10", disp:"Imperious Helm+10", typ:"h", upg:10, wei:5.8, phy:121, str:115, sla:127, pie:121, mag:21, fir:17, lig:13, dar:21, poi:12, psn:16, ble:22, pet:16, cur:16, setname:"" },
{id:55, index:54, name:"Imported Hood+10", disp:"Imported Hood+10", typ:"h", upg:10, wei:2.2, phy:32, str:36, sla:31, pie:31, mag:9, fir:8, lig:11, dar:9, poi:0, psn:12, ble:13, pet:0, cur:0, setname:"" },
{id:56, index:55, name:"Infantry Helm+10", disp:"Infantry Helm+10", typ:"h", upg:10, wei:4, phy:77, str:80, sla:75, pie:75, mag:19, fir:18, lig:25, dar:19, poi:0, psn:20, ble:20, pet:0, cur:0, setname:"" },
{id:57, index:56, name:"Insolent Helm+10", disp:"Insolent Helm+10", typ:"h", upg:10, wei:4.8, phy:84, str:80, sla:90, pie:84, mag:21, fir:21, lig:27, dar:20, poi:6, psn:19, ble:25, pet:21, cur:21, setname:"" },
{id:58, index:57, name:"Ironclad Helm+10", disp:"Ironclad Helm+10", typ:"h", upg:10, wei:6.3, phy:114, str:104, sla:122, pie:114, mag:16, fir:18, lig:10, dar:16, poi:15, psn:7, ble:31, pet:0, cur:0, setname:"" },
{id:59, index:58, name:"Ivory King Helm+5", disp:"Ivory King Helm+5", typ:"h", upg:5, wei:7, phy:133, str:109, sla:138, pie:133, mag:24, fir:35, lig:15, dar:25, poi:10, psn:14, ble:18, pet:0, cur:0, setname:"" },
{id:60, index:59, name:"Jester`s Cap+10", disp:"Jester`s Cap+10", typ:"h", upg:10, wei:3, phy:69, str:73, sla:67, pie:67, mag:39, fir:39, lig:39, dar:39, poi:0, psn:42, ble:32, pet:41, cur:27, setname:"" },
{id:61, index:60, name:"King`s Crown+5", disp:"King`s Crown+5", typ:"h", upg:5, wei:3.8, phy:68, str:65, sla:72, pie:68, mag:23, fir:23, lig:18, dar:16, poi:2, psn:26, ble:23, pet:25, cur:0, setname:"" },
{id:62, index:61, name:"Knight Helm+10", disp:"Knight Helm+10", typ:"h", upg:10, wei:4.2, phy:71, str:69, sla:80, pie:71, mag:21, fir:23, lig:15, dar:21, poi:8, psn:19, ble:27, pet:0, cur:0, setname:"" },
{id:63, index:62, name:"Leydia Black Hood+5", disp:"Leydia Black Hood+5", typ:"h", upg:5, wei:1, phy:30, str:33, sla:28, pie:28, mag:20, fir:14, lig:12, dar:27, poi:0, psn:15, ble:14, pet:12, cur:18, setname:"" },
{id:64, index:63, name:"Leydia White Hood+10", disp:"Leydia White Hood+10", typ:"h", upg:10, wei:1, phy:28, str:30, sla:26, pie:26, mag:18, fir:18, lig:15, dar:24, poi:0, psn:13, ble:12, pet:10, cur:16, setname:"" },
{id:65, index:64, name:"Lion Warrior Helm+10", disp:"Lion Warrior Helm+10", typ:"h", upg:10, wei:0.5, phy:23, str:24, sla:22, pie:22, mag:11, fir:10, lig:10, dar:18, poi:0, psn:8, ble:8, pet:16, cur:32, setname:"" },
{id:66, index:65, name:"Looking Glass Mask+5", disp:"Looking Glass Mask+5", typ:"h", upg:5, wei:7, phy:135, str:118, sla:154, pie:135, mag:17, fir:19, lig:30, dar:17, poi:18, psn:16, ble:33, pet:0, cur:0, setname:"" },
{id:67, index:66, name:"Loyce Helm+5", disp:"Loyce Helm+5", typ:"h", upg:5, wei:6.3, phy:119, str:114, sla:127, pie:119, mag:33, fir:24, lig:15, dar:24, poi:6, psn:14, ble:18, pet:0, cur:0, setname:"" },
{id:68, index:67, name:"Lucatiel`s Mask+10", disp:"Lucatiel`s Mask+10", typ:"h", upg:10, wei:2, phy:51, str:55, sla:49, pie:49, mag:28, fir:25, lig:30, dar:28, poi:0, psn:22, ble:17, pet:9, cur:18, setname:"" },
{id:69, index:68, name:"Mad Warrior Mask+5", disp:"Mad Warrior Mask+5", typ:"h", upg:5, wei:5, phy:103, str:103, sla:108, pie:98, mag:17, fir:16, lig:12, dar:17, poi:9, psn:21, ble:21, pet:20, cur:20, setname:"" },
{id:70, index:69, name:"Manikin Mask+10", disp:"Manikin Mask+10", typ:"h", upg:10, wei:1.8, phy:72, str:76, sla:69, pie:69, mag:37, fir:34, lig:43, dar:45, poi:0, psn:43, ble:59, pet:19, cur:0, setname:"" },
{id:71, index:70, name:"Mask of Judgment+5", disp:"Mask of Judgment+5", typ:"h", upg:5, wei:2.5, phy:74, str:79, sla:71, pie:71, mag:38, fir:30, lig:26, dar:33, poi:0, psn:20, ble:21, pet:0, cur:41, setname:"" },
{id:72, index:71, name:"Mastodon Helm+10", disp:"Mastodon Helm+10", typ:"h", upg:10, wei:6.6, phy:132, str:123, sla:142, pie:132, mag:15, fir:17, lig:9, dar:15, poi:14, psn:20, ble:24, pet:0, cur:0, setname:"" },
{id:73, index:72, name:"Minotaur Helm+10", disp:"Minotaur Helm+10", typ:"h", upg:10, wei:9.8, phy:122, str:128, sla:128, pie:105, mag:19, fir:22, lig:22, dar:18, poi:30, psn:14, ble:44, pet:0, cur:0, setname:"" },
{id:74, index:73, name:"Mirrah Hat+10", disp:"Mirrah Hat+10", typ:"h", upg:10, wei:1.5, phy:42, str:46, sla:40, pie:40, mag:14, fir:12, lig:15, dar:13, poi:0, psn:10, ble:8, pet:4, cur:8, setname:"" },
{id:75, index:74, name:"Monastery Headcloth+5", disp:"Monastery Headcloth+5", typ:"h", upg:5, wei:0.6, phy:45, str:47, sla:42, pie:42, mag:40, fir:29, lig:26, dar:29, poi:0, psn:50, ble:31, pet:28, cur:33, setname:"" },
{id:76, index:75, name:"Moon Butterfly Hat+5", disp:"Moon Butterfly Hat+5", typ:"h", upg:5, wei:0.8, phy:41, str:45, sla:39, pie:39, mag:21, fir:14, lig:22, dar:18, poi:0, psn:39, ble:17, pet:22, cur:24, setname:"" },
{id:77, index:76, name:"Moon Hat+10", disp:"Moon Hat+10", typ:"h", upg:10, wei:2.2, phy:52, str:54, sla:50, pie:50, mag:38, fir:26, lig:26, dar:32, poi:0, psn:16, ble:16, pet:0, cur:0, setname:"" },
{id:78, index:77, name:"Nahr Alma Hood+10", disp:"Nahr Alma Hood+10", typ:"h", upg:10, wei:1.5, phy:38, str:41, sla:37, pie:37, mag:21, fir:18, lig:20, dar:38, poi:0, psn:19, ble:19, pet:25, cur:25, setname:"" },
{id:79, index:78, name:"Northwarder Hood+10", disp:"Northwarder Hood+10", typ:"h", upg:10, wei:0.9, phy:38, str:40, sla:36, pie:36, mag:18, fir:17, lig:23, dar:20, poi:0, psn:25, ble:9, pet:0, cur:9, setname:"" },
{id:80, index:79, name:"Old Bell Helm+10", disp:"Old Bell Helm+10", typ:"h", upg:10, wei:6, phy:47, str:42, sla:50, pie:45, mag:9, fir:10, lig:12, dar:10, poi:10, psn:4, ble:16, pet:0, cur:0, setname:"" },
{id:81, index:80, name:"Old Ironclad Helm+10", disp:"Old Ironclad Helm+10", typ:"h", upg:10, wei:6.3, phy:98, str:89, sla:106, pie:98, mag:12, fir:14, lig:9, dar:12, poi:13, psn:5, ble:24, pet:0, cur:0, setname:"" },
{id:82, index:81, name:"Old Knight Helm+10", disp:"Old Knight Helm+10", typ:"h", upg:10, wei:7, phy:146, str:136, sla:152, pie:146, mag:12, fir:12, lig:8, dar:12, poi:16, psn:9, ble:24, pet:0, cur:0, setname:"" },
{id:83, index:82, name:"Pate`s Helm+10", disp:"Pate`s Helm+10", typ:"h", upg:10, wei:3.5, phy:77, str:53, sla:102, pie:75, mag:15, fir:20, lig:6, dar:16, poi:5, psn:17, ble:34, pet:0, cur:0, setname:"" },
{id:84, index:83, name:"Peasant Hat+10", disp:"Peasant Hat+10", typ:"h", upg:10, wei:1.3, phy:17, str:19, sla:16, pie:16, mag:8, fir:9, lig:11, dar:8, poi:0, psn:12, ble:10, pet:0, cur:0, setname:"" },
{id:85, index:84, name:"Penal Mask+5", disp:"Penal Mask+5", typ:"h", upg:5, wei:5.1, phy:97, str:89, sla:109, pie:90, mag:40, fir:50, lig:26, dar:45, poi:5, psn:15, ble:22, pet:32, cur:62, setname:"" },
{id:86, index:85, name:"Pharros Mask+10", disp:"Pharros Mask+10", typ:"h", upg:10, wei:4.3, phy:58, str:56, sla:60, pie:59, mag:20, fir:14, lig:13, dar:13, poi:4, psn:12, ble:17, pet:0, cur:0, setname:"" },
{id:87, index:86, name:"Priestess Headpiece+10", disp:"Priestess Headpiece+10", typ:"h", upg:10, wei:1.2, phy:46, str:47, sla:44, pie:44, mag:28, fir:28, lig:39, dar:31, poi:0, psn:19, ble:18, pet:22, cur:22, setname:"" },
{id:88, index:87, name:"Prisoner`s Hood+10", disp:"Prisoner`s Hood+10", typ:"h", upg:10, wei:0.8, phy:8, str:9, sla:8, pie:8, mag:8, fir:8, lig:12, dar:9, poi:0, psn:9, ble:7, pet:0, cur:0, setname:"" },
{id:89, index:88, name:"Raime`s Helm+5", disp:"Raime`s Helm+5", typ:"h", upg:5, wei:6, phy:103, str:90, sla:121, pie:105, mag:25, fir:33, lig:15, dar:40, poi:10, psn:13, ble:40, pet:0, cur:0, setname:"" },
{id:90, index:89, name:"Rampart Golem Helm+5", disp:"Rampart Golem Helm+5", typ:"h", upg:5, wei:5.8, phy:117, str:92, sla:124, pie:117, mag:14, fir:10, lig:11, dar:12, poi:13, psn:11, ble:16, pet:0, cur:16, setname:"" },
{id:91, index:90, name:"Rogue Hood+10", disp:"Rogue Hood+10", typ:"h", upg:10, wei:0.7, phy:22, str:22, sla:23, pie:23, mag:7, fir:8, lig:8, dar:9, poi:0, psn:8, ble:8, pet:0, cur:0, setname:"" },
{id:92, index:91, name:"Royal Soldier Helm+10", disp:"Royal Soldier Helm+10", typ:"h", upg:10, wei:4.8, phy:82, str:78, sla:86, pie:84, mag:25, fir:26, lig:17, dar:25, poi:6, psn:22, ble:25, pet:0, cur:0, setname:"" },
{id:93, index:92, name:"Royal Swordsman Helm+10", disp:"Royal Swordsman Helm+10", typ:"h", upg:10, wei:4.7, phy:84, str:74, sla:94, pie:88, mag:19, fir:25, lig:13, dar:19, poi:7, psn:11, ble:25, pet:0, cur:0, setname:"" },
{id:94, index:93, name:"Ruin Helm+5", disp:"Ruin Helm+5", typ:"h", upg:5, wei:4, phy:80, str:72, sla:86, pie:81, mag:19, fir:21, lig:13, dar:19, poi:8, psn:11, ble:25, pet:33, cur:0, setname:"" },
{id:95, index:94, name:"Rusted Mastodon Helm+10", disp:"Rusted Mastodon Helm+10", typ:"h", upg:10, wei:6, phy:113, str:105, sla:121, pie:113, mag:11, fir:13, lig:6, dar:11, poi:12, psn:16, ble:18, pet:0, cur:0, setname:"" },
{id:96, index:95, name:"Saint`s Hood+5", disp:"Saint`s Hood+5", typ:"h", upg:5, wei:0.9, phy:35, str:37, sla:33, pie:33, mag:25, fir:25, lig:32, dar:25, poi:0, psn:16, ble:14, pet:30, cur:27, setname:"" },
{id:97, index:96, name:"Sanctum Knight Helm+5", disp:"Sanctum Knight Helm+5", typ:"h", upg:5, wei:5.8, phy:120, str:110, sla:130, pie:120, mag:18, fir:17, lig:15, dar:18, poi:9, psn:17, ble:27, pet:0, cur:0, setname:"" },
{id:98, index:97, name:"Sanctum Priestess Tiara+10", disp:"Sanctum Priestess Tiara+10", typ:"h", upg:10, wei:2, phy:36, str:38, sla:34, pie:34, mag:21, fir:30, lig:18, dar:21, poi:0, psn:21, ble:30, pet:18, cur:21, setname:"" },
{id:99, index:98, name:"Shadow Mask+10", disp:"Shadow Mask+10", typ:"h", upg:10, wei:1.8, phy:67, str:76, sla:60, pie:60, mag:36, fir:41, lig:37, dar:48, poi:0, psn:54, ble:41, pet:34, cur:0, setname:"" },
{id:100, index:99, name:"Smelter Demon Helm+5", disp:"Smelter Demon Helm+5", typ:"h", upg:5, wei:9, phy:158, str:138, sla:178, pie:158, mag:22, fir:46, lig:21, dar:22, poi:17, psn:13, ble:37, pet:23, cur:23, setname:"" },
{id:101, index:100, name:"Spiked Bandit Helm+10", disp:"Spiked Bandit Helm+10", typ:"h", upg:10, wei:4.1, phy:88, str:88, sla:91, pie:85, mag:26, fir:27, lig:22, dar:26, poi:3, psn:19, ble:28, pet:0, cur:0, setname:"" },
{id:102, index:101, name:"Standard Helm+10", disp:"Standard Helm+10", typ:"h", upg:10, wei:4, phy:80, str:56, sla:106, pie:78, mag:15, fir:20, lig:6, dar:16, poi:5, psn:19, ble:36, pet:0, cur:0, setname:"" },
{id:103, index:102, name:"Steel Helm+10", disp:"Steel Helm+10", typ:"h", upg:10, wei:5.4, phy:119, str:113, sla:127, pie:119, mag:15, fir:16, lig:10, dar:15, poi:14, psn:13, ble:24, pet:0, cur:0, setname:"" },
{id:104, index:103, name:"Syan`s Helm+10", disp:"Syan`s Helm+10", typ:"h", upg:10, wei:6.2, phy:123, str:110, sla:131, pie:125, mag:24, fir:32, lig:14, dar:24, poi:10, psn:14, ble:41, pet:0, cur:0, setname:"" },
{id:105, index:104, name:"Symbol of Avarice+10", disp:"Symbol of Avarice+10", typ:"h", upg:10, wei:8, phy:90, str:70, sla:100, pie:100, mag:20, fir:20, lig:30, dar:25, poi:10, psn:20, ble:28, pet:31, cur:30, setname:"" },
{id:106, index:105, name:"Targray`s Helm+10", disp:"Targray`s Helm+10", typ:"h", upg:10, wei:4, phy:73, str:68, sla:79, pie:73, mag:18, fir:18, lig:15, dar:20, poi:5, psn:22, ble:24, pet:0, cur:0, setname:"" },
{id:107, index:106, name:"Tattered Cloth Hood+10", disp:"Tattered Cloth Hood+10", typ:"h", upg:10, wei:1.1, phy:41, str:43, sla:39, pie:39, mag:22, fir:29, lig:19, dar:22, poi:0, psn:35, ble:12, pet:0, cur:8, setname:"" },
{id:108, index:107, name:"Thief Mask+10", disp:"Thief Mask+10", typ:"h", upg:10, wei:1.2, phy:40, str:42, sla:39, pie:39, mag:19, fir:15, lig:14, dar:16, poi:0, psn:23, ble:16, pet:0, cur:0, setname:"" },
{id:109, index:108, name:"Throne Defender Helm+5", disp:"Throne Defender Helm+5", typ:"h", upg:5, wei:6.4, phy:131, str:126, sla:136, pie:132, mag:26, fir:29, lig:16, dar:26, poi:8, psn:18, ble:31, pet:0, cur:0, setname:"" },
{id:110, index:109, name:"Throne Watcher Helm+5", disp:"Throne Watcher Helm+5", typ:"h", upg:5, wei:5.6, phy:104, str:99, sla:112, pie:104, mag:46, fir:30, lig:24, dar:30, poi:4, psn:23, ble:28, pet:0, cur:0, setname:"" },
{id:111, index:110, name:"Traveling Merchant Hat+10", disp:"Traveling Merchant Hat+10", typ:"h", upg:10, wei:2.6, phy:50, str:53, sla:48, pie:48, mag:14, fir:15, lig:17, dar:14, poi:0, psn:18, ble:20, pet:0, cur:0, setname:"" },
{id:112, index:111, name:"Tseldora Cap+10", disp:"Tseldora Cap+10", typ:"h", upg:10, wei:1.4, phy:21, str:23, sla:20, pie:20, mag:9, fir:10, lig:12, dar:9, poi:0, psn:10, ble:10, pet:0, cur:0, setname:"" },
{id:113, index:112, name:"Varangian Helm+10", disp:"Varangian Helm+10", typ:"h", upg:10, wei:4.6, phy:106, str:92, sla:119, pie:109, mag:34, fir:38, lig:20, dar:34, poi:5, psn:33, ble:45, pet:0, cur:0, setname:"" },
{id:114, index:113, name:"Velstadt`s Helm+5", disp:"Velstadt`s Helm+5", typ:"h", upg:5, wei:7.5, phy:157, str:143, sla:172, pie:150, mag:20, fir:21, lig:9, dar:48, poi:14, psn:13, ble:40, pet:21, cur:29, setname:"" },
{id:115, index:114, name:"Vengarl`s Helm+5", disp:"Vengarl`s Helm+5", typ:"h", upg:5, wei:6.8, phy:142, str:134, sla:152, pie:142, mag:18, fir:24, lig:15, dar:18, poi:14, psn:16, ble:22, pet:0, cur:0, setname:"" },
{id:116, index:115, name:"Wanderer Hood+10", disp:"Wanderer Hood+10", typ:"h", upg:10, wei:1.4, phy:46, str:44, sla:47, pie:47, mag:15, fir:20, lig:22, dar:16, poi:0, psn:17, ble:28, pet:0, cur:0, setname:"" },
{id:117, index:116, name:"Warlock Mask+10", disp:"Warlock Mask+10", typ:"h", upg:10, wei:4.8, phy:52, str:59, sla:48, pie:48, mag:72, fir:33, lig:48, dar:72, poi:4, psn:38, ble:38, pet:47, cur:120, setname:"" },
{id:118, index:117, name:"White Hollow Mage Hood+10", disp:"White Hollow Mage Hood+10", typ:"h", upg:10, wei:1.8, phy:67, str:70, sla:66, pie:66, mag:56, fir:41, lig:43, dar:47, poi:0, psn:27, ble:25, pet:38, cur:38, setname:"" },
{id:119, index:118, name:"White Priest Headpiece+10", disp:"White Priest Headpiece+10", typ:"h", upg:10, wei:1.4, phy:47, str:49, sla:46, pie:46, mag:28, fir:28, lig:37, dar:31, poi:0, psn:19, ble:18, pet:18, cur:18, setname:"" },
{id:120, index:119, name:"Xanthous Crown+5", disp:"Xanthous Crown+5", typ:"h", upg:5, wei:5, phy:100, str:174, sla:100, pie:66, mag:24, fir:7, lig:16, dar:22, poi:0, psn:11, ble:10, pet:0, cur:125, setname:"" },
{id:434, index:120, name:"Hood of the Forlorn+5", disp:"Hood of the Forlorn+5", typ:"h", upg:5, wei:1.1, phy:42, str:44, sla:40, pie:40, mag:29, fir:28, lig:37, dar:33, poi:0, psn:40, ble:20, pet:0, cur:0, setname:"" },
],
ches:[
{id:121, index:0, name:"<none>", disp:"<none>", typ:"c", upg:0, wei:0.0, phy:0.0, str:0.0, sla:0.0, pie:0.0, mag:0.0, fir:0.0, lig:0.0, dar:0.0, poi:0.0, psn:0.0, ble:0.0, pet: 0.0, cur:0.0, setname:"" },
{id:122, index:1, name:"Agdayne`s Black Robe+5", disp:"Agdayne`s Black Robe+5", typ:"c", upg:5, wei:5.8, phy:139, str:147, sla:135, pie:135, mag:81, fir:79, lig:72, dar:108, poi:0, psn:83, ble:57, pet:72, cur:98, setname:"" },
{id:123, index:2, name:"Alonne Captain Armor+10", disp:"Alonne Captain Armor+10", typ:"c", upg:10, wei:15.6, phy:324, str:305, sla:343, pie:324, mag:68, fir:106, lig:45, dar:68, poi:38, psn:34, ble:75, pet:0, cur:0, setname:"" },
{id:124, index:3, name:"Alonne Knight Armor+10", disp:"Alonne Knight Armor+10", typ:"c", upg:10, wei:14.2, phy:293, str:279, sla:309, pie:293, mag:45, fir:81, lig:34, dar:45, poi:38, psn:18, ble:54, pet:0, cur:0, setname:"" },
{id:125, index:4, name:"Alonne`s Armor+5", disp:"Alonne`s Armor+5", typ:"c", upg:5, wei:9, phy:181, str:172, sla:187, pie:178, mag:48, fir:53, lig:36, dar:52, poi:17, psn:52, ble:68, pet:0, cur:0, setname:"" },
{id:126, index:5, name:"Alva Armor+10", disp:"Alva Armor+10", typ:"c", upg:10, wei:8.8, phy:179, str:170, sla:185, pie:176, mag:49, fir:54, lig:37, dar:53, poi:15, psn:53, ble:69, pet:0, cur:0, setname:"" },
{id:127, index:6, name:"Archdrake Robes+10", disp:"Archdrake Robes+10", typ:"c", upg:10, wei:9.8, phy:178, str:178, sla:178, pie:178, mag:57, fir:54, lig:93, dar:53, poi:13, psn:48, ble:40, pet:0, cur:0, setname:"" },
{id:128, index:7, name:"Armor of Aurous+5", disp:"Armor of Aurous+5", typ:"c", upg:5, wei:10.1, phy:183, str:177, sla:192, pie:184, mag:65, fir:63, lig:45, dar:69, poi:18, psn:51, ble:65, pet:0, cur:0, setname:"" },
{id:129, index:8, name:"Armor of Aurous (T)+5", disp:"Armor of Aurous (T)+5", typ:"c", upg:5, wei:3.2, phy:115, str:123, sla:109, pie:111, mag:45, fir:37, lig:48, dar:41, poi:0, psn:31, ble:36, pet:0, cur:0, setname:"" },
{id:130, index:9, name:"Astrologist`s Robe+10", disp:"Astrologist`s Robe+10", typ:"c", upg:10, wei:5.1, phy:121, str:126, sla:117, pie:117, mag:87, fir:60, lig:60, dar:74, poi:0, psn:38, ble:37, pet:0, cur:0, setname:"" },
{id:131, index:10, name:"Bandit Armor+10", disp:"Bandit Armor+10", typ:"c", upg:10, wei:6.2, phy:133, str:133, sla:137, pie:128, mag:40, fir:41, lig:33, dar:40, poi:5, psn:29, ble:42, pet:0, cur:0, setname:"" },
{id:132, index:11, name:"Bell Keeper Bellyband+10", disp:"Bell Keeper Bellyband+10", typ:"c", upg:10, wei:6, phy:131, str:138, sla:128, pie:128, mag:28, fir:26, lig:37, dar:50, poi:0, psn:32, ble:26, pet:0, cur:0, setname:"" },
{id:133, index:12, name:"Benhart`s Armor+10", disp:"Benhart`s Armor+10", typ:"c", upg:10, wei:10.5, phy:208, str:200, sla:216, pie:208, mag:48, fir:46, lig:41, dar:48, poi:18, psn:54, ble:42, pet:0, cur:0, setname:"" },
{id:134, index:13, name:"Black Dragon Armor", disp:"Black Dragon Armor", typ:"c", upg:0, wei:4.8, phy:125, str:121, sla:127, pie:125, mag:45, fir:98, lig:47, dar:45, poi:0, psn:57, ble:80, pet:65, cur:65, setname:"" },
{id:135, index:14, name:"Black Hollow Mage Robe+10", disp:"Black Hollow Mage Robe+10", typ:"c", upg:10, wei:3.3, phy:110, str:117, sla:109, pie:109, mag:94, fir:67, lig:72, dar:79, poi:0, psn:46, ble:42, pet:43, cur:43, setname:"" },
{id:136, index:15, name:"Black Leather Armor+10", disp:"Black Leather Armor+10", typ:"c", upg:10, wei:3.9, phy:131, str:135, sla:128, pie:128, mag:62, fir:47, lig:45, dar:51, poi:0, psn:75, ble:51, pet:0, cur:0, setname:"" },
{id:137, index:16, name:"Black Robes+5", disp:"Black Robes+5", typ:"c", upg:5, wei:2.6, phy:101, str:108, sla:96, pie:96, mag:110, fir:74, lig:74, dar:74, poi:0, psn:45, ble:39, pet:58, cur:53, setname:"" },
{id:138, index:17, name:"Black Witch Robe+5", disp:"Black Witch Robe+5", typ:"c", upg:5, wei:4.8, phy:120, str:132, sla:116, pie:116, mag:135, fir:108, lig:126, dar:131, poi:0, psn:49, ble:58, pet:65, cur:65, setname:"" },
{id:139, index:18, name:"Bone King Robe+5", disp:"Bone King Robe+5", typ:"c", upg:5, wei:3.8, phy:106, str:116, sla:102, pie:102, mag:68, fir:75, lig:61, dar:94, poi:0, psn:55, ble:35, pet:42, cur:67, setname:"" },
{id:140, index:19, name:"Brigand Armor+10", disp:"Brigand Armor+10", typ:"c", upg:10, wei:3.1, phy:113, str:124, sla:111, pie:105, mag:56, fir:45, lig:42, dar:48, poi:0, psn:46, ble:46, pet:0, cur:0, setname:"" },
{id:141, index:20, name:"Cale`s Leather Armor+10", disp:"Cale`s Leather Armor+10", typ:"c", upg:10, wei:6.4, phy:166, str:164, sla:164, pie:171, mag:47, fir:50, lig:40, dar:47, poi:0, psn:73, ble:45, pet:0, cur:0, setname:"" },
{id:142, index:21, name:"Catarina Armor+5", disp:"Catarina Armor+5", typ:"c", upg:5, wei:11.7, phy:224, str:224, sla:260, pie:224, mag:48, fir:53, lig:32, dar:48, poi:25, psn:38, ble:62, pet:0, cur:0, setname:"" },
{id:143, index:22, name:"Chaos Robe+5", disp:"Chaos Robe+5", typ:"c", upg:5, wei:2.6, phy:101, str:108, sla:96, pie:96, mag:74, fir:110, lig:74, dar:106, poi:0, psn:45, ble:39, pet:58, cur:53, setname:"" },
{id:144, index:23, name:"Charred Loyce Armor+5", disp:"Charred Loyce Armor+5", typ:"c", upg:5, wei:12.8, phy:259, str:223, sla:265, pie:259, mag:55, fir:67, lig:32, dar:53, poi:22, psn:45, ble:54, pet:0, cur:0, setname:"" },
{id:145, index:24, name:"Creighton`s Chainmail+10", disp:"Creighton`s Chainmail+10", typ:"c", upg:10, wei:9.7, phy:180, str:176, sla:187, pie:180, mag:54, fir:60, lig:31, dar:54, poi:14, psn:42, ble:67, pet:0, cur:0, setname:"" },
{id:146, index:25, name:"Dark Armor+5", disp:"Dark Armor+5", typ:"c", upg:5, wei:9.8, phy:171, str:171, sla:180, pie:164, mag:45, fir:45, lig:30, dar:95, poi:16, psn:46, ble:53, pet:0, cur:0, setname:"" },
{id:147, index:26, name:"Desert Sorceress Top+10", disp:"Desert Sorceress Top+10", typ:"c", upg:10, wei:2.7, phy:89, str:93, sla:87, pie:87, mag:83, fir:57, lig:69, dar:75, poi:0, psn:32, ble:21, pet:58, cur:27, setname:"" },
{id:148, index:27, name:"Dingy Robe+10", disp:"Dingy Robe+10", typ:"c", upg:10, wei:3, phy:108, str:122, sla:101, pie:101, mag:65, fir:55, lig:62, dar:62, poi:0, psn:41, ble:46, pet:92, cur:92, setname:"" },
{id:149, index:28, name:"Dragon Acolyte Robe+10", disp:"Dragon Acolyte Robe+10", typ:"c", upg:10, wei:3.9, phy:118, str:124, sla:115, pie:115, mag:48, fir:48, lig:56, dar:60, poi:0, psn:55, ble:45, pet:0, cur:54, setname:"" },
{id:150, index:29, name:"Dragonrider Armor+5", disp:"Dragonrider Armor+5", typ:"c", upg:5, wei:16, phy:340, str:317, sla:355, pie:340, mag:29, fir:27, lig:30, dar:29, poi:45, psn:28, ble:39, pet:0, cur:0, setname:"" },
{id:151, index:30, name:"Drakeblood Armor+10", disp:"Drakeblood Armor+10", typ:"c", upg:10, wei:12.5, phy:249, str:237, sla:267, pie:255, mag:50, fir:62, lig:33, dar:55, poi:22, psn:50, ble:66, pet:0, cur:0, setname:"" },
{id:152, index:31, name:"Drakekeeper Armor+10", disp:"Drakekeeper Armor+10", typ:"c", upg:10, wei:15.7, phy:333, str:320, sla:351, pie:333, mag:44, fir:49, lig:39, dar:44, poi:40, psn:44, ble:65, pet:0, cur:62, setname:"" },
{id:153, index:32, name:"Drangleic Mail+5", disp:"Drangleic Mail+5", typ:"c", upg:5, wei:14.5, phy:293, str:276, sla:316, pie:298, mag:47, fir:47, lig:42, dar:47, poi:28, psn:49, ble:64, pet:0, cur:0, setname:"" },
{id:154, index:33, name:"Elite Knight Armor+10", disp:"Elite Knight Armor+10", typ:"c", upg:10, wei:11.7, phy:207, str:202, sla:229, pie:207, mag:59, fir:63, lig:43, dar:59, poi:15, psn:49, ble:69, pet:0, cur:0, setname:"" },
{id:155, index:34, name:"Executioner Armor+5", disp:"Executioner Armor+5", typ:"c", upg:5, wei:6.7, phy:140, str:128, sla:148, pie:144, mag:32, fir:34, lig:22, dar:75, poi:7, psn:25, ble:95, pet:0, cur:67, setname:"" },
{id:156, index:35, name:"Falconer Armor+10", disp:"Falconer Armor+10", typ:"c", upg:10, wei:7.7, phy:147, str:156, sla:142, pie:142, mag:44, fir:37, lig:50, dar:44, poi:12, psn:48, ble:39, pet:0, cur:0, setname:"" },
{id:157, index:36, name:"Faraam Armor+10", disp:"Faraam Armor+10", typ:"c", upg:10, wei:12.6, phy:249, str:235, sla:265, pie:253, mag:56, fir:61, lig:37, dar:56, poi:24, psn:48, ble:65, pet:0, cur:0, setname:"" },
{id:158, index:37, name:"Fume Sorcerer Robes+10", disp:"Fume Sorcerer Robes+10", typ:"c", upg:10, wei:4.7, phy:128, str:136, sla:124, pie:124, mag:45, fir:33, lig:61, dar:63, poi:0, psn:55, ble:45, pet:0, cur:0, setname:"" },
{id:159, index:38, name:"Grave Warden Top+10", disp:"Grave Warden Top+10", typ:"c", upg:10, wei:6, phy:158, str:172, sla:152, pie:152, mag:69, fir:66, lig:84, dar:89, poi:0, psn:85, ble:69, pet:0, cur:0, setname:"" },
{id:160, index:39, name:"Gyrm Armor+10", disp:"Gyrm Armor+10", typ:"c", upg:10, wei:12.3, phy:258, str:258, sla:269, pie:246, mag:37, fir:34, lig:30, dar:37, poi:26, psn:73, ble:56, pet:39, cur:39, setname:"" },
{id:161, index:40, name:"Gyrm Warrior Armor+10", disp:"Gyrm Warrior Armor+10", typ:"c", upg:10, wei:19.7, phy:390, str:408, sla:408, pie:354, mag:41, fir:51, lig:51, dar:41, poi:47, psn:26, ble:89, pet:0, cur:0, setname:"" },
{id:162, index:41, name:"Hard Leather Armor+10", disp:"Hard Leather Armor+10", typ:"c", upg:10, wei:7.2, phy:135, str:141, sla:132, pie:133, mag:42, fir:28, lig:53, dar:44, poi:0, psn:52, ble:47, pet:0, cur:0, setname:"" },
{id:163, index:42, name:"Havel`s Armor+5", disp:"Havel`s Armor+5", typ:"c", upg:5, wei:19.5, phy:399, str:344, sla:453, pie:399, mag:52, fir:57, lig:48, dar:52, poi:51, psn:15, ble:93, pet:39, cur:39, setname:"" },
{id:164, index:43, name:"Heide Knight Chainmail+10", disp:"Heide Knight Chainmail+10", typ:"c", upg:10, wei:10.9, phy:215, str:202, sla:230, pie:215, mag:37, fir:47, lig:32, dar:65, poi:20, psn:70, ble:53, pet:0, cur:57, setname:"" },
{id:165, index:44, name:"Hexer`s Robes+5", disp:"Hexer`s Robes+5", typ:"c", upg:5, wei:2.6, phy:101, str:108, sla:96, pie:96, mag:74, fir:110, lig:74, dar:74, poi:0, psn:45, ble:39, pet:58, cur:53, setname:"" },
{id:166, index:45, name:"Hollow Infantry Armor+10", disp:"Hollow Infantry Armor+10", typ:"c", upg:10, wei:5.9, phy:91, str:94, sla:90, pie:90, mag:20, fir:16, lig:24, dar:20, poi:0, psn:20, ble:20, pet:0, cur:0, setname:"" },
{id:167, index:46, name:"Hollow Soldier Armor+10", disp:"Hollow Soldier Armor+10", typ:"c", upg:10, wei:8.6, phy:138, str:132, sla:146, pie:139, mag:44, fir:46, lig:31, dar:44, poi:7, psn:37, ble:42, pet:0, cur:0, setname:"" },
{id:168, index:47, name:"Imperious Armor+10", disp:"Imperious Armor+10", typ:"c", upg:10, wei:14.7, phy:308, str:295, sla:325, pie:308, mag:55, fir:44, lig:35, dar:55, poi:35, psn:43, ble:57, pet:42, cur:42, setname:"" },
{id:169, index:48, name:"Imported Tunic+10", disp:"Imported Tunic+10", typ:"c", upg:10, wei:6.5, phy:95, str:105, sla:90, pie:90, mag:28, fir:24, lig:33, dar:28, poi:0, psn:34, ble:38, pet:0, cur:0, setname:"" },
{id:170, index:49, name:"Infantry Armor+10", disp:"Infantry Armor+10", typ:"c", upg:10, wei:5.9, phy:113, str:118, sla:111, pie:111, mag:28, fir:26, lig:36, dar:28, poi:0, psn:29, ble:29, pet:0, cur:0, setname:"" },
{id:171, index:50, name:"Insolent Armor+10", disp:"Insolent Armor+10", typ:"c", upg:10, wei:9.8, phy:171, str:162, sla:183, pie:171, mag:44, fir:44, lig:54, dar:40, poi:16, psn:39, ble:51, pet:42, cur:42, setname:"" },
{id:172, index:51, name:"Ironclad Armor+10", disp:"Ironclad Armor+10", typ:"c", upg:10, wei:29.8, phy:303, str:277, sla:325, pie:303, mag:44, fir:49, lig:28, dar:44, poi:36, psn:20, ble:83, pet:0, cur:0, setname:"" },
{id:173, index:52, name:"Ivory King Armor+5", disp:"Ivory King Armor+5", typ:"c", upg:5, wei:14.8, phy:285, str:233, sla:295, pie:285, mag:55, fir:70, lig:32, dar:55, poi:28, psn:45, ble:54, pet:0, cur:0, setname:"" },
{id:174, index:53, name:"Jester`s Robes+10", disp:"Jester`s Robes+10", typ:"c", upg:10, wei:5.7, phy:131, str:139, sla:127, pie:127, mag:74, fir:74, lig:74, dar:74, poi:0, psn:80, ble:60, pet:77, cur:52, setname:"" },
{id:175, index:54, name:"King`s Armor+5", disp:"King`s Armor+5", typ:"c", upg:5, wei:12, phy:215, str:204, sla:227, pie:215, mag:72, fir:72, lig:57, dar:51, poi:16, psn:81, ble:74, pet:80, cur:0, setname:"" },
{id:176, index:55, name:"Knight Armor+10", disp:"Knight Armor+10", typ:"c", upg:10, wei:10.9, phy:184, str:178, sla:209, pie:184, mag:55, fir:59, lig:39, dar:55, poi:20, psn:49, ble:69, pet:0, cur:0, setname:"" },
{id:177, index:56, name:"Leather Armor+10", disp:"Leather Armor+10", typ:"c", upg:10, wei:4.7, phy:130, str:138, sla:126, pie:126, mag:47, fir:30, lig:62, dar:51, poi:0, psn:53, ble:44, pet:0, cur:0, setname:"" },
{id:178, index:57, name:"Leydia Black Robe+5", disp:"Leydia Black Robe+5", typ:"c", upg:5, wei:3.5, phy:105, str:116, sla:100, pie:100, mag:72, fir:50, lig:43, dar:95, poi:0, psn:53, ble:50, pet:40, cur:64, setname:"" },
{id:179, index:58, name:"Leydia White Robe+5", disp:"Leydia White Robe+5", typ:"c", upg:5, wei:3.5, phy:96, str:106, sla:92, pie:92, mag:64, fir:64, lig:54, dar:82, poi:0, psn:46, ble:43, pet:35, cur:55, setname:"" },
{id:180, index:59, name:"Lion Mage Robe+10", disp:"Lion Mage Robe+10", typ:"c", upg:10, wei:2.2, phy:79, str:83, sla:72, pie:72, mag:74, fir:60, lig:62, dar:74, poi:0, psn:34, ble:34, pet:40, cur:90, setname:"" },
{id:181, index:60, name:"Lion Warrior Cape+10", disp:"Lion Warrior Cape+10", typ:"c", upg:10, wei:1.5, phy:56, str:58, sla:55, pie:55, mag:24, fir:23, lig:23, dar:43, poi:0, psn:16, ble:15, pet:43, cur:81, setname:"" },
{id:182, index:61, name:"Llewellyn Armor+5", disp:"Llewellyn Armor+5", typ:"c", upg:5, wei:6.8, phy:180, str:167, sla:186, pie:182, mag:58, fir:69, lig:44, dar:58, poi:0, psn:59, ble:82, pet:33, cur:33, setname:"" },
{id:183, index:62, name:"Looking Glass Armor+5", disp:"Looking Glass Armor+5", typ:"c", upg:5, wei:18.3, phy:354, str:308, sla:404, pie:354, mag:44, fir:50, lig:79, dar:44, poi:44, psn:41, ble:86, pet:0, cur:0, setname:"" },
{id:184, index:63, name:"Loyce Armor+5", disp:"Loyce Armor+5", typ:"c", upg:5, wei:12.3, phy:247, str:238, sla:255, pie:249, mag:67, fir:55, lig:32, dar:53, poi:20, psn:45, ble:54, pet:0, cur:0, setname:"" },
{id:185, index:64, name:"Lucatiel`s Vest+10", disp:"Lucatiel`s Vest+10", typ:"c", upg:10, wei:6, phy:153, str:164, sla:147, pie:147, mag:84, fir:75, lig:91, dar:84, poi:0, psn:65, ble:51, pet:27, cur:54, setname:"" },
{id:186, index:65, name:"Mad Warrior Armor+5", disp:"Mad Warrior Armor+5", typ:"c", upg:5, wei:12.5, phy:257, str:257, sla:270, pie:245, mag:42, fir:40, lig:31, dar:42, poi:25, psn:53, ble:53, pet:49, cur:49, setname:"" },
{id:187, index:66, name:"Manikin Top+10", disp:"Manikin Top+10", typ:"c", upg:10, wei:2.3, phy:92, str:97, sla:88, pie:88, mag:47, fir:44, lig:55, dar:57, poi:0, psn:54, ble:75, pet:24, cur:0, setname:"" },
{id:188, index:67, name:"Mastodon Armor+10", disp:"Mastodon Armor+10", typ:"c", upg:10, wei:17.7, phy:355, str:329, sla:381, pie:355, mag:41, fir:46, lig:24, dar:41, poi:39, psn:55, ble:64, pet:0, cur:0, setname:"" },
{id:189, index:68, name:"Monastery Longshirt+5", disp:"Monastery Longshirt+5", typ:"c", upg:5, wei:1.6, phy:101, str:107, sla:94, pie:94, mag:89, fir:65, lig:57, dar:65, poi:0, psn:112, ble:70, pet:63, cur:75, setname:"" },
{id:190, index:69, name:"Moon Butterfly Wings+5", disp:"Moon Butterfly Wings+5", typ:"c", upg:5, wei:1.4, phy:72, str:79, sla:68, pie:68, mag:37, fir:25, lig:38, dar:32, poi:0, psn:68, ble:29, pet:39, cur:42, setname:"" },
{id:191, index:70, name:"Nahr Alma Robes+10", disp:"Nahr Alma Robes+10", typ:"c", upg:10, wei:3.5, phy:89, str:95, sla:87, pie:87, mag:49, fir:42, lig:46, dar:88, poi:0, psn:44, ble:44, pet:57, cur:57, setname:"" },
{id:192, index:71, name:"Northwarder Robe+10", disp:"Northwarder Robe+10", typ:"c", upg:10, wei:2.5, phy:98, str:103, sla:95, pie:95, mag:85, fir:62, lig:64, dar:70, poi:0, psn:88, ble:31, pet:0, cur:20, setname:"" },
{id:193, index:72, name:"Old Ironclad Armor+10", disp:"Old Ironclad Armor+10", typ:"c", upg:10, wei:29.8, phy:261, str:239, sla:283, pie:261, mag:33, fir:37, lig:24, dar:33, poi:32, psn:15, ble:65, pet:0, cur:0, setname:"" },
{id:194, index:73, name:"Old Knight Armor+10", disp:"Old Knight Armor+10", typ:"c", upg:10, wei:16.4, phy:342, str:319, sla:356, pie:342, mag:29, fir:29, lig:19, dar:29, poi:45, psn:21, ble:57, pet:0, cur:0, setname:"" },
{id:195, index:74, name:"Pate`s Armor+10", disp:"Pate`s Armor+10", typ:"c", upg:10, wei:5.9, phy:130, str:135, sla:127, pie:127, mag:42, fir:28, lig:53, dar:44, poi:0, psn:46, ble:41, pet:0, cur:0, setname:"" },
{id:196, index:75, name:"Peasant Attire+10", disp:"Peasant Attire+10", typ:"c", upg:10, wei:3.8, phy:50, str:55, sla:48, pie:48, mag:23, fir:25, lig:31, dar:23, poi:0, psn:36, ble:29, pet:0, cur:0, setname:"" },
{id:197, index:76, name:"Penal Straightjacket+5", disp:"Penal Straightjacket+5", typ:"c", upg:5, wei:6.2, phy:113, str:116, sla:116, pie:105, mag:47, fir:58, lig:42, dar:52, poi:0, psn:18, ble:14, pet:37, cur:48, setname:"" },
{id:198, index:77, name:"Priestess Robe+10", disp:"Priestess Robe+10", typ:"c", upg:10, wei:2.8, phy:106, str:110, sla:104, pie:104, mag:66, fir:65, lig:91, dar:73, poi:0, psn:44, ble:42, pet:52, cur:52, setname:"" },
{id:199, index:78, name:"Prisoner`s Tatters+10", disp:"Prisoner`s Tatters+10", typ:"c", upg:10, wei:2.2, phy:22, str:25, sla:21, pie:21, mag:23, fir:23, lig:33, dar:26, poi:0, psn:26, ble:19, pet:0, cur:0, setname:"" },
{id:200, index:79, name:"Raime`s Armor+5", disp:"Raime`s Armor+5", typ:"c", upg:5, wei:13.6, phy:253, str:226, sla:271, pie:259, mag:54, fir:71, lig:32, dar:69, poi:23, psn:30, ble:90, pet:0, cur:0, setname:"" },
{id:201, index:80, name:"Rampart Golem Armor+5", disp:"Rampart Golem Armor+5", typ:"c", upg:5, wei:15.5, phy:293, str:270, sla:321, pie:303, mag:44, fir:40, lig:42, dar:43, poi:38, psn:43, ble:64, pet:0, cur:61, setname:"" },
{id:202, index:81, name:"Red Lion Warrior Cape+10", disp:"Red Lion Warrior Cape+10", typ:"c", upg:10, wei:1.5, phy:68, str:71, sla:66, pie:66, mag:32, fir:30, lig:30, dar:53, poi:0, psn:24, ble:23, pet:47, cur:95, setname:"" },
{id:203, index:82, name:"Retainer Robe+10", disp:"Retainer Robe+10", typ:"c", upg:10, wei:3.3, phy:101, str:106, sla:98, pie:98, mag:85, fir:70, lig:73, dar:74, poi:0, psn:29, ble:30, pet:35, cur:36, setname:"" },
{id:204, index:83, name:"Robe of Judgment+5", disp:"Robe of Judgment+5", typ:"c", upg:5, wei:3.9, phy:115, str:123, sla:111, pie:111, mag:59, fir:48, lig:41, dar:52, poi:0, psn:31, ble:33, pet:0, cur:64, setname:"" },
{id:205, index:84, name:"Rogue Armor+10", disp:"Rogue Armor+10", typ:"c", upg:10, wei:3.5, phy:111, str:108, sla:113, pie:113, mag:35, fir:42, lig:40, dar:47, poi:0, psn:42, ble:40, pet:0, cur:0, setname:"" },
{id:206, index:85, name:"Royal Soldier Armor+10", disp:"Royal Soldier Armor+10", typ:"c", upg:10, wei:9.2, phy:157, str:149, sla:164, pie:160, mag:49, fir:50, lig:33, dar:49, poi:16, psn:42, ble:47, pet:0, cur:0, setname:"" },
{id:207, index:86, name:"Royal Swordsman Armor+10", disp:"Royal Swordsman Armor+10", typ:"c", upg:10, wei:11.2, phy:201, str:176, sla:223, pie:210, mag:46, fir:59, lig:31, dar:46, poi:18, psn:27, ble:59, pet:0, cur:0, setname:"" },
{id:208, index:87, name:"Ruin Armor+5", disp:"Ruin Armor+5", typ:"c", upg:5, wei:10.5, phy:209, str:189, sla:224, pie:213, mag:49, fir:55, lig:33, dar:49, poi:18, psn:29, ble:66, pet:86, cur:0, setname:"" },
{id:209, index:88, name:"Rusted Mastodon Armor+10", disp:"Rusted Mastodon Armor+10", typ:"c", upg:10, wei:15.9, phy:300, str:279, sla:322, pie:300, mag:31, fir:35, lig:17, dar:31, poi:32, psn:42, ble:50, pet:0, cur:0, setname:"" },
{id:210, index:89, name:"Saint`s Dress+5", disp:"Saint`s Dress+5", typ:"c", upg:5, wei:2.6, phy:101, str:108, sla:96, pie:96, mag:74, fir:74, lig:91, dar:74, poi:0, psn:45, ble:39, pet:86, cur:79, setname:"" },
{id:211, index:90, name:"Sanctum Knight Armor+5", disp:"Sanctum Knight Armor+5", typ:"c", upg:5, wei:14.4, phy:295, str:275, sla:317, pie:297, mag:45, fir:45, lig:40, dar:46, poi:27, psn:45, ble:65, pet:0, cur:0, setname:"" },
{id:212, index:91, name:"Shadow Top+10", disp:"Shadow Top+10", typ:"c", upg:10, wei:2.6, phy:97, str:109, sla:87, pie:87, mag:52, fir:59, lig:54, dar:70, poi:0, psn:77, ble:60, pet:49, cur:0, setname:"" },
{id:213, index:92, name:"Singer`s Dress+5", disp:"Singer`s Dress+5", typ:"c", upg:5, wei:2.6, phy:45, str:49, sla:43, pie:43, mag:68, fir:53, lig:62, dar:62, poi:0, psn:47, ble:35, pet:65, cur:65, setname:"" },
{id:214, index:93, name:"Smelter Demon Armor+5", disp:"Smelter Demon Armor+5", typ:"c", upg:5, wei:17.6, phy:340, str:343, sla:417, pie:240, mag:43, fir:90, lig:40, dar:43, poi:43, psn:26, ble:72, pet:44, cur:44, setname:"" },
{id:215, index:94, name:"Steel Armor+10", disp:"Steel Armor+10", typ:"c", upg:10, wei:14, phy:309, str:294, sla:330, pie:309, mag:39, fir:42, lig:27, dar:39, poi:36, psn:34, ble:62, pet:0, cur:0, setname:"" },
{id:216, index:95, name:"Syan`s Armor+10", disp:"Syan`s Armor+10", typ:"c", upg:10, wei:13.8, phy:273, str:246, sla:291, pie:279, mag:53, fir:70, lig:31, dar:53, poi:23, psn:31, ble:91, pet:0, cur:0, setname:"" },
{id:217, index:96, name:"Targray`s Armor+10", disp:"Targray`s Armor+10", typ:"c", upg:10, wei:9.8, phy:178, str:166, sla:193, pie:178, mag:44, fir:44, lig:36, dar:49, poi:17, psn:54, ble:59, pet:0, cur:0, setname:"" },
{id:218, index:97, name:"Tattered Cloth Robe+10", disp:"Tattered Cloth Robe+10", typ:"c", upg:10, wei:2.7, phy:100, str:105, sla:97, pie:97, mag:53, fir:72, lig:47, dar:53, poi:0, psn:87, ble:30, pet:0, cur:19, setname:"" },
{id:219, index:98, name:"Throne Defender Armor+5", disp:"Throne Defender Armor+5", typ:"c", upg:5, wei:13.8, phy:283, str:272, sla:292, pie:284, mag:57, fir:63, lig:34, dar:57, poi:25, psn:40, ble:66, pet:0, cur:0, setname:"" },
{id:220, index:99, name:"Throne Watcher Armor+5", disp:"Throne Watcher Armor+5", typ:"c", upg:5, wei:11.2, phy:209, str:198, sla:225, pie:209, mag:91, fir:59, lig:47, dar:59, poi:16, psn:47, ble:56, pet:0, cur:0, setname:"" },
{id:221, index:100, name:"Traveling Merchant Coat+10", disp:"Traveling Merchant Coat+10", typ:"c", upg:10, wei:7.7, phy:148, str:158, sla:143, pie:143, mag:42, fir:46, lig:49, dar:42, poi:0, psn:52, ble:59, pet:0, cur:0, setname:"" },
{id:222, index:101, name:"Tseldora Robe+10", disp:"Tseldora Robe+10", typ:"c", upg:10, wei:3, phy:44, str:48, sla:42, pie:42, mag:20, fir:21, lig:26, dar:19, poi:0, psn:20, ble:21, pet:0, cur:0, setname:"" },
{id:223, index:102, name:"Varangian Armor+10", disp:"Varangian Armor+10", typ:"c", upg:10, wei:5.1, phy:135, str:142, sla:132, pie:132, mag:43, fir:31, lig:51, dar:43, poi:0, psn:52, ble:47, pet:0, cur:0, setname:"" },
{id:224, index:103, name:"Velstadt`s Armor+5", disp:"Velstadt`s Armor+5", typ:"c", upg:5, wei:15.2, phy:330, str:301, sla:350, pie:343, mag:41, fir:43, lig:20, dar:98, poi:33, psn:27, ble:83, pet:44, cur:60, setname:"" },
{id:225, index:104, name:"Vengarl`s Armor+5", disp:"Vengarl`s Armor+5", typ:"c", upg:5, wei:15.1, phy:316, str:298, sla:338, pie:316, mag:41, fir:53, lig:34, dar:41, poi:39, psn:36, ble:48, pet:0, cur:0, setname:"" },
{id:226, index:105, name:"Wanderer Coat+10", disp:"Wanderer Coat+10", typ:"c", upg:10, wei:3.5, phy:115, str:111, sla:117, pie:118, mag:38, fir:50, lig:56, dar:40, poi:0, psn:43, ble:70, pet:0, cur:0, setname:"" },
{id:227, index:106, name:"White Hollow Mage Robe+10", disp:"White Hollow Mage Robe+10", typ:"c", upg:10, wei:2.8, phy:105, str:109, sla:102, pie:102, mag:88, fir:63, lig:66, dar:73, poi:0, psn:41, ble:39, pet:60, cur:60, setname:"" },
{id:228, index:107, name:"White Priest Robe+10", disp:"White Priest Robe+10", typ:"c", upg:10, wei:3.3, phy:111, str:116, sla:108, pie:108, mag:66, fir:66, lig:86, dar:73, poi:0, psn:45, ble:43, pet:42, cur:42, setname:"" },
{id:229, index:108, name:"Xanthous Overcoat+5", disp:"Xanthous Overcoat+5", typ:"c", upg:5, wei:3.9, phy:78, str:89, sla:78, pie:67, mag:59, fir:15, lig:37, dar:46, poi:0, psn:35, ble:31, pet:0, cur:0, setname:"" },
{id:435, index:109, name:"Armor of the Forlorn+5", disp:"Armor of the Forlorn+5", typ:"c", upg:5, wei:11.3, phy:220, str:207, sla:235, pie:220, mag:42, fir:50, lig:35, dar:68, poi:22, psn:74, ble:58, pet:0, cur:0, setname:"" },
],
gaun:[
{id:230, index:0, name:"<none>", disp:"<none>", typ:"g", upg:0, wei:0.0, phy:0.0, str:0.0, sla:0.0, pie:0.0, mag:0.0, fir:0.0, lig:0.0, dar:0.0, poi:0.0, psn:0.0, ble:0.0, pet: 0.0, cur:0.0, setname:"" },
{id:231, index:1, name:"Agdayne`s Cuffs+5", disp:"Agdayne`s Cuffs+5", typ:"g", upg:5, wei:2.9, phy:70, str:74, sla:68, pie:68, mag:41, fir:39, lig:36, dar:54, poi:0, psn:41, ble:28, pet:36, cur:49, setname:"" },
{id:232, index:2, name:"Alonne Knight Gauntlets+10", disp:"Alonne Knight Gauntlets+10", typ:"g", upg:10, wei:6.7, phy:138, str:131, sla:145, pie:138, mag:21, fir:38, lig:16, dar:21, poi:14, psn:8, ble:25, pet:0, cur:0, setname:"" },
{id:233, index:3, name:"Alonne`s Gauntlets+5", disp:"Alonne`s Gauntlets+5", typ:"g", upg:5, wei:3, phy:61, str:58, sla:63, pie:60, mag:15, fir:17, lig:11, dar:16, poi:6, psn:16, ble:22, pet:0, cur:0, setname:"" },
{id:234, index:4, name:"Alva Gauntlets+10", disp:"Alva Gauntlets+10", typ:"g", upg:10, wei:2.9, phy:59, str:56, sla:61, pie:58, mag:16, fir:18, lig:12, dar:17, poi:4, psn:17, ble:23, pet:0, cur:0, setname:"" },
{id:235, index:5, name:"Archdrake Gloves+10", disp:"Archdrake Gloves+10", typ:"g", upg:10, wei:3.2, phy:58, str:58, sla:58, pie:58, mag:19, fir:18, lig:30, dar:17, poi:6, psn:16, ble:13, pet:0, cur:0, setname:"" },
{id:236, index:6, name:"Astrologist`s Gauntlets+10", disp:"Astrologist`s Gauntlets+10", typ:"g", upg:10, wei:2.1, phy:50, str:52, sla:48, pie:48, mag:36, fir:25, lig:25, dar:31, poi:0, psn:16, ble:15, pet:0, cur:0, setname:"" },
{id:237, index:7, name:"Bandit Gauntlets+10", disp:"Bandit Gauntlets+10", typ:"g", upg:10, wei:2.8, phy:60, str:60, sla:62, pie:58, mag:18, fir:19, lig:15, dar:18, poi:3, psn:13, ble:19, pet:0, cur:0, setname:"" },
{id:238, index:8, name:"Bell Keeper Cuffs+10", disp:"Bell Keeper Cuffs+10", typ:"g", upg:10, wei:2.5, phy:55, str:58, sla:53, pie:53, mag:12, fir:11, lig:16, dar:21, poi:0, psn:13, ble:11, pet:0, cur:0, setname:"" },
{id:239, index:9, name:"Benhart`s Gauntlets+10", disp:"Benhart`s Gauntlets+10", typ:"g", upg:10, wei:5.5, phy:109, str:105, sla:113, pie:109, mag:25, fir:24, lig:22, dar:25, poi:9, psn:29, ble:22, pet:0, cur:0, setname:"" },
{id:240, index:10, name:"Black Dragon Gauntlets", disp:"Black Dragon Gauntlets", typ:"g", upg:0, wei:1.8, phy:48, str:47, sla:49, pie:48, mag:17, fir:38, lig:18, dar:17, poi:0, psn:22, ble:31, pet:25, cur:25, setname:"" },
{id:241, index:11, name:"Black Gloves+5", disp:"Black Gloves+5", typ:"g", upg:5, wei:1, phy:39, str:42, sla:37, pie:37, mag:42, fir:28, lig:28, dar:28, poi:0, psn:17, ble:15, pet:22, cur:20, setname:"" },
{id:242, index:12, name:"Black Leather Gloves+10", disp:"Black Leather Gloves+10", typ:"g", upg:10, wei:1.8, phy:60, str:62, sla:59, pie:59, mag:29, fir:22, lig:21, dar:24, poi:0, psn:35, ble:24, pet:0, cur:0, setname:"" },
{id:243, index:13, name:"Black Witch Gloves+5", disp:"Black Witch Gloves+5", typ:"g", upg:5, wei:1.7, phy:52, str:56, sla:50, pie:50, mag:48, fir:38, lig:45, dar:46, poi:0, psn:17, ble:21, pet:23, cur:23, setname:"" },
{id:244, index:14, name:"Bone King Cuffs+5", disp:"Bone King Cuffs+5", typ:"g", upg:5, wei:1.9, phy:53, str:58, sla:51, pie:51, mag:34, fir:37, lig:30, dar:47, poi:0, psn:27, ble:17, pet:21, cur:34, setname:"" },
{id:245, index:15, name:"Brigand Gauntlets+10", disp:"Brigand Gauntlets+10", typ:"g", upg:10, wei:1.8, phy:66, str:72, sla:65, pie:61, mag:32, fir:26, lig:25, dar:28, poi:0, psn:26, ble:27, pet:0, cur:0, setname:"" },
{id:246, index:16, name:"Catarina Gauntlets+5", disp:"Catarina Gauntlets+5", typ:"g", upg:5, wei:6.9, phy:132, str:132, sla:153, pie:132, mag:28, fir:31, lig:19, dar:28, poi:13, psn:23, ble:36, pet:0, cur:0, setname:"" },
{id:247, index:17, name:"Chaos Gloves+5", disp:"Chaos Gloves+5", typ:"g", upg:5, wei:1, phy:39, str:42, sla:37, pie:37, mag:28, fir:42, lig:28, dar:41, poi:0, psn:17, ble:15, pet:22, cur:20, setname:"" },
{id:248, index:18, name:"Charred Loyce Gauntlets+5", disp:"Charred Loyce Gauntlets+5", typ:"g", upg:5, wei:4.5, phy:77, str:66, sla:83, pie:77, mag:15, fir:24, lig:9, dar:15, poi:11, psn:16, ble:19, pet:0, cur:0, setname:"" },
{id:249, index:19, name:"Creighton`s Chain Gloves+10", disp:"Creighton`s Chain Gloves+10", typ:"g", upg:10, wei:3.4, phy:63, str:62, sla:66, pie:63, mag:19, fir:21, lig:11, dar:19, poi:6, psn:15, ble:24, pet:0, cur:0, setname:"" },
{id:250, index:20, name:"Dark Gauntlets+5", disp:"Dark Gauntlets+5", typ:"g", upg:5, wei:5.8, phy:101, str:101, sla:107, pie:97, mag:27, fir:27, lig:18, dar:56, poi:9, psn:27, ble:31, pet:0, cur:0, setname:"" },
{id:251, index:21, name:"Desert Sorceress Gloves+10", disp:"Desert Sorceress Gloves+10", typ:"g", upg:10, wei:1.5, phy:50, str:52, sla:48, pie:48, mag:46, fir:32, lig:38, dar:42, poi:0, psn:18, ble:12, pet:32, cur:15, setname:"" },
{id:252, index:22, name:"Dingy Cuffs+10", disp:"Dingy Cuffs+10", typ:"g", upg:10, wei:1.2, phy:43, str:49, sla:40, pie:40, mag:26, fir:22, lig:25, dar:25, poi:0, psn:16, ble:19, pet:37, cur:37, setname:"" },
{id:253, index:23, name:"Dragon Acolyte Gloves+10", disp:"Dragon Acolyte Gloves+10", typ:"g", upg:10, wei:1.6, phy:48, str:51, sla:47, pie:47, mag:20, fir:20, lig:23, dar:25, poi:0, psn:22, ble:47, pet:0, cur:0, setname:"" },
{id:254, index:24, name:"Dragonrider Gauntlets+5", disp:"Dragonrider Gauntlets+5", typ:"g", upg:5, wei:6.2, phy:132, str:123, sla:138, pie:132, mag:12, fir:11, lig:12, dar:12, poi:12, psn:11, ble:15, pet:0, cur:0, setname:"" },
{id:255, index:25, name:"Drakeblood Gauntlets+10", disp:"Drakeblood Gauntlets+10", typ:"g", upg:10, wei:4.6, phy:93, str:90, sla:101, pie:96, mag:15, fir:24, lig:10, dar:20, poi:9, psn:20, ble:25, pet:0, cur:0, setname:"" },
{id:256, index:26, name:"Drakekeeper Gauntlets+10", disp:"Drakekeeper Gauntlets+10", typ:"g", upg:10, wei:8.4, phy:178, str:171, sla:188, pie:178, mag:23, fir:26, lig:20, dar:23, poi:17, psn:23, ble:34, pet:0, cur:33, setname:"" },
{id:257, index:27, name:"Drangleic Gauntlets+5", disp:"Drangleic Gauntlets+5", typ:"g", upg:5, wei:6.2, phy:125, str:118, sla:135, pie:127, mag:20, fir:20, lig:18, dar:20, poi:10, psn:21, ble:27, pet:0, cur:0, setname:"" },
{id:258, index:28, name:"Elite Knight Gloves+10", disp:"Elite Knight Gloves+10", typ:"g", upg:10, wei:3.7, phy:66, str:64, sla:72, pie:66, mag:19, fir:20, lig:14, dar:19, poi:4, psn:15, ble:22, pet:0, cur:0, setname:"" },
{id:259, index:29, name:"Engraved Gauntlets+5", disp:"Engraved Gauntlets+5", typ:"g", upg:5, wei:5.5, phy:44, str:44, sla:44, pie:44, mag:22, fir:22, lig:22, dar:22, poi:0, psn:22, ble:22, pet:66, cur:66, setname:"" },
{id:260, index:30, name:"Executioner Gauntlets+5", disp:"Executioner Gauntlets+5", typ:"g", upg:5, wei:2.7, phy:56, str:52, sla:60, pie:58, mag:13, fir:14, lig:9, dar:30, poi:4, psn:10, ble:38, pet:0, cur:27, setname:"" },
{id:261, index:31, name:"Falconer Gloves+10", disp:"Falconer Gloves+10", typ:"g", upg:10, wei:3.2, phy:61, str:65, sla:59, pie:59, mag:18, fir:15, lig:21, dar:18, poi:4, psn:20, ble:16, pet:0, cur:0, setname:"" },
{id:262, index:32, name:"Faraam Gauntlets+10", disp:"Faraam Gauntlets+10", typ:"g", upg:10, wei:4.7, phy:93, str:88, sla:99, pie:94, mag:21, fir:23, lig:14, dar:21, poi:11, psn:18, ble:24, pet:0, cur:0, setname:"" },
{id:263, index:33, name:"Fume Sorcerer Gloves+10", disp:"Fume Sorcerer Gloves+10", typ:"g", upg:10, wei:2.8, phy:75, str:80, sla:73, pie:73, mag:26, fir:20, lig:36, dar:33, poi:0, psn:33, ble:28, pet:0, cur:0, setname:"" },
{id:264, index:34, name:"Gauntlets of Aurous+5", disp:"Gauntlets of Aurous+5", typ:"g", upg:5, wei:3.2, phy:58, str:56, sla:61, pie:58, mag:21, fir:20, lig:14, dar:22, poi:6, psn:16, ble:21, pet:0, cur:0, setname:"" },
{id:265, index:35, name:"Gauntlets of Aurous (T)+5", disp:"Gauntlets of Aurous (T)+5", typ:"g", upg:5, wei:1.2, phy:43, str:46, sla:41, pie:42, mag:17, fir:14, lig:18, dar:15, poi:0, psn:12, ble:13, pet:0, cur:0, setname:"" },
{id:266, index:36, name:"Grave Warden Cuffs+10", disp:"Grave Warden Cuffs+10", typ:"g", upg:10, wei:2.2, phy:58, str:63, sla:56, pie:56, mag:25, fir:24, lig:31, dar:33, poi:0, psn:31, ble:25, pet:0, cur:0, setname:"" },
{id:267, index:37, name:"Gyrm Gloves+10", disp:"Gyrm Gloves+10", typ:"g", upg:10, wei:3.6, phy:75, str:75, sla:79, pie:72, mag:11, fir:10, lig:9, dar:11, poi:8, psn:21, ble:16, pet:11, cur:11, setname:"" },
{id:268, index:38, name:"Gyrm Warrior Gloves+10", disp:"Gyrm Warrior Gloves+10", typ:"g", upg:10, wei:5.4, phy:108, str:112, sla:112, pie:98, mag:12, fir:14, lig:14, dar:12, poi:14, psn:7, ble:25, pet:0, cur:0, setname:"" },
{id:269, index:39, name:"Hard Leather Gauntlets+10", disp:"Hard Leather Gauntlets+10", typ:"g", upg:10, wei:3.8, phy:80, str:83, sla:78, pie:78, mag:25, fir:16, lig:31, dar:26, poi:0, psn:28, ble:25, pet:0, cur:0, setname:"" },
{id:270, index:40, name:"Havel`s Gauntlets+5", disp:"Havel`s Gauntlets+5", typ:"g", upg:5, wei:11.5, phy:235, str:202, sla:267, pie:235, mag:31, fir:34, lig:28, dar:31, poi:31, psn:9, ble:55, pet:23, cur:23, setname:"" },
{id:271, index:41, name:"Heide Knight Gauntlets+10", disp:"Heide Knight Gauntlets+10", typ:"g", upg:10, wei:5.4, phy:107, str:100, sla:114, pie:107, mag:18, fir:23, lig:16, dar:32, poi:8, psn:35, ble:26, pet:0, cur:28, setname:"" },
{id:272, index:42, name:"Hexer`s Gloves+5", disp:"Hexer`s Gloves+5", typ:"g", upg:5, wei:1, phy:39, str:42, sla:37, pie:37, mag:28, fir:42, lig:28, dar:28, poi:0, psn:17, ble:15, pet:22, cur:20, setname:"" },
{id:273, index:43, name:"Hollow Infantry Gloves+10", disp:"Hollow Infantry Gloves+10", typ:"g", upg:10, wei:2.8, phy:43, str:45, sla:42, pie:42, mag:9, fir:8, lig:12, dar:9, poi:0, psn:9, ble:9, pet:0, cur:0, setname:"" },
{id:274, index:44, name:"Hollow Soldier Gauntlets+10", disp:"Hollow Soldier Gauntlets+10", typ:"g", upg:10, wei:3.2, phy:51, str:49, sla:54, pie:52, mag:16, fir:17, lig:11, dar:16, poi:4, psn:14, ble:16, pet:0, cur:0, setname:"" },
{id:275, index:45, name:"Imperious Gloves+10", disp:"Imperious Gloves+10", typ:"g", upg:10, wei:6, phy:125, str:120, sla:132, pie:125, mag:22, fir:18, lig:14, dar:22, poi:12, psn:17, ble:23, pet:17, cur:17, setname:"" },
{id:276, index:46, name:"Imported Manchettes+10", disp:"Imported Manchettes+10", typ:"g", upg:10, wei:1.8, phy:26, str:29, sla:25, pie:25, mag:8, fir:7, lig:9, dar:8, poi:0, psn:9, ble:10, pet:0, cur:0, setname:"" },
{id:277, index:47, name:"Infantry Gloves+10", disp:"Infantry Gloves+10", typ:"g", upg:10, wei:2.8, phy:54, str:56, sla:53, pie:53, mag:14, fir:13, lig:17, dar:14, poi:0, psn:14, ble:14, pet:0, cur:0, setname:"" },
{id:278, index:48, name:"Insolent Gloves+10", disp:"Insolent Gloves+10", typ:"g", upg:10, wei:5.8, phy:101, str:96, sla:108, pie:101, mag:26, fir:26, lig:32, dar:24, poi:9, psn:23, ble:30, pet:25, cur:25, setname:"" },
{id:279, index:49, name:"Ironclad Gauntlets+10", disp:"Ironclad Gauntlets+10", typ:"g", upg:10, wei:9.4, phy:170, str:155, sla:182, pie:170, mag:24, fir:27, lig:16, dar:24, poi:23, psn:11, ble:46, pet:0, cur:0, setname:"" },
{id:280, index:50, name:"Ivory King Gauntlets+5", disp:"Ivory King Gauntlets+5", typ:"g", upg:5, wei:5, phy:87, str:70, sla:90, pie:87, mag:15, fir:25, lig:9, dar:16, poi:12, psn:16, ble:19, pet:0, cur:0, setname:"" },
{id:281, index:51, name:"Jester`s Gloves+10", disp:"Jester`s Gloves+10", typ:"g", upg:10, wei:2.3, phy:53, str:56, sla:51, pie:51, mag:30, fir:30, lig:30, dar:30, poi:0, psn:32, ble:24, pet:31, cur:21, setname:"" },
{id:282, index:52, name:"King`s Gauntlets+5", disp:"King`s Gauntlets+5", typ:"g", upg:5, wei:4.2, phy:75, str:71, sla:80, pie:75, mag:25, fir:25, lig:20, dar:18, poi:8, psn:29, ble:26, pet:28, cur:0, setname:"" },
{id:283, index:53, name:"Knight Gauntlets+10", disp:"Knight Gauntlets+10", typ:"g", upg:10, wei:3.5, phy:59, str:57, sla:67, pie:59, mag:18, fir:19, lig:13, dar:18, poi:6, psn:16, ble:22, pet:0, cur:0, setname:"" },
{id:284, index:54, name:"Leather Gloves+10", disp:"Leather Gloves+10", typ:"g", upg:10, wei:2.8, phy:77, str:82, sla:75, pie:75, mag:28, fir:18, lig:37, dar:30, poi:0, psn:31, ble:26, pet:0, cur:0, setname:"" },
{id:285, index:55, name:"Leydia Gauntlets+10", disp:"Leydia Gauntlets+10", typ:"g", upg:10, wei:1.2, phy:33, str:36, sla:32, pie:32, mag:22, fir:22, lig:19, dar:28, poi:0, psn:16, ble:15, pet:12, cur:19, setname:"" },
{id:286, index:56, name:"Lion Mage Cuffs+10", disp:"Lion Mage Cuffs+10", typ:"g", upg:10, wei:1.4, phy:50, str:53, sla:46, pie:46, mag:47, fir:38, lig:39, dar:47, poi:0, psn:22, ble:22, pet:25, cur:57, setname:"" },
{id:287, index:57, name:"Lion Warrior Cuffs+10", disp:"Lion Warrior Cuffs+10", typ:"g", upg:10, wei:1.3, phy:49, str:50, sla:48, pie:48, mag:21, fir:20, lig:20, dar:37, poi:0, psn:14, ble:13, pet:37, cur:70, setname:"" },
{id:288, index:58, name:"Llewellyn Gloves+5", disp:"Llewellyn Gloves+5", typ:"g", upg:5, wei:3.1, phy:82, str:76, sla:85, pie:83, mag:26, fir:31, lig:20, dar:26, poi:0, psn:27, ble:37, pet:15, cur:15, setname:"" },
{id:289, index:59, name:"Looking Glass Gauntlets+5", disp:"Looking Glass Gauntlets+5", typ:"g", upg:5, wei:10.4, phy:201, str:175, sla:230, pie:201, mag:25, fir:28, lig:45, dar:25, poi:27, psn:23, ble:49, pet:0, cur:0, setname:"" },
{id:290, index:60, name:"Loyce Gauntlets+5", disp:"Loyce Gauntlets+5", typ:"g", upg:5, wei:4.4, phy:74, str:71, sla:80, pie:74, mag:24, fir:15, lig:9, dar:15, poi:10, psn:16, ble:19, pet:0, cur:0, setname:"" },
{id:291, index:61, name:"Lucatiel`s Gloves+10", disp:"Lucatiel`s Gloves+10", typ:"g", upg:10, wei:2, phy:51, str:55, sla:49, pie:49, mag:28, fir:25, lig:30, dar:28, poi:0, psn:22, ble:17, pet:9, cur:18, setname:"" },
{id:292, index:62, name:"Mad Warrior Gauntlets+5", disp:"Mad Warrior Gauntlets+5", typ:"g", upg:5, wei:7.4, phy:152, str:152, sla:160, pie:145, mag:25, fir:24, lig:18, dar:25, poi:12, psn:32, ble:32, pet:29, cur:29, setname:"" },
{id:293, index:63, name:"Manchettes of Judgment+5", disp:"Manchettes of Judgment+5", typ:"g", upg:5, wei:1.8, phy:53, str:57, sla:51, pie:51, mag:27, fir:22, lig:19, dar:24, poi:0, psn:14, ble:15, pet:0, cur:29, setname:"" },
{id:294, index:64, name:"Manikin Gloves+10", disp:"Manikin Gloves+10", typ:"g", upg:10, wei:1.2, phy:48, str:51, sla:46, pie:46, mag:24, fir:23, lig:29, dar:30, poi:0, psn:28, ble:39, pet:13, cur:0, setname:"" },
{id:295, index:65, name:"Mastodon Gauntlets+10", disp:"Mastodon Gauntlets+10", typ:"g", upg:10, wei:8.8, phy:176, str:163, sla:189, pie:176, mag:20, fir:23, lig:12, dar:20, poi:20, psn:27, ble:32, pet:0, cur:0, setname:"" },
{id:296, index:66, name:"Monastery Long Gloves+5", disp:"Monastery Long Gloves+5", typ:"g", upg:5, wei:0.9, phy:49, str:51, sla:45, pie:45, mag:43, fir:31, lig:28, dar:31, poi:0, psn:54, ble:34, pet:30, cur:36, setname:"" },
{id:297, index:67, name:"Moon Butterfly Cuffs+5", disp:"Moon Butterfly Cuffs+5", typ:"g", upg:5, wei:0.8, phy:41, str:45, sla:39, pie:39, mag:21, fir:14, lig:22, dar:18, poi:0, psn:39, ble:17, pet:22, cur:24, setname:"" },
{id:298, index:68, name:"Northwarder Manchettes+10", disp:"Northwarder Manchettes+10", typ:"g", upg:10, wei:1, phy:37, str:38, sla:35, pie:36, mag:21, fir:21, lig:28, dar:23, poi:0, psn:52, ble:19, pet:0, cur:12, setname:"" },
{id:299, index:69, name:"Old Ironclad Gauntlets+10", disp:"Old Ironclad Gauntlets+10", typ:"g", upg:10, wei:9.4, phy:146, str:134, sla:159, pie:146, mag:18, fir:20, lig:13, dar:18, poi:21, psn:8, ble:36, pet:0, cur:0, setname:"" },
{id:300, index:70, name:"Old Knight Gauntlets+10", disp:"Old Knight Gauntlets+10", typ:"g", upg:10, wei:8.2, phy:171, str:160, sla:179, pie:171, mag:15, fir:15, lig:10, dar:15, poi:18, psn:11, ble:29, pet:0, cur:0, setname:"" },
{id:301, index:71, name:"Pate`s Gloves+10", disp:"Pate`s Gloves+10", typ:"g", upg:10, wei:3.5, phy:77, str:80, sla:75, pie:75, mag:25, fir:16, lig:31, dar:26, poi:0, psn:27, ble:24, pet:0, cur:0, setname:"" },
{id:302, index:72, name:"Peasant Long Gloves+10", disp:"Peasant Long Gloves+10", typ:"g", upg:10, wei:1.8, phy:24, str:26, sla:23, pie:23, mag:11, fir:12, lig:15, dar:11, poi:0, psn:17, ble:14, pet:0, cur:0, setname:"" },
{id:303, index:73, name:"Penal Handcuffs+5", disp:"Penal Handcuffs+5", typ:"g", upg:5, wei:4.8, phy:82, str:85, sla:85, pie:75, mag:32, fir:53, lig:28, dar:37, poi:0, psn:16, ble:13, pet:34, cur:44, setname:"" },
{id:304, index:74, name:"Priestess Gloves+10", disp:"Priestess Gloves+10", typ:"g", upg:10, wei:0.9, phy:34, str:35, sla:33, pie:33, mag:21, fir:21, lig:29, dar:24, poi:0, psn:14, ble:14, pet:17, cur:17, setname:"" },
{id:305, index:75, name:"Prisoner`s Gloves+10", disp:"Prisoner`s Gloves+10", typ:"g", upg:10, wei:1, phy:10, str:11, sla:9, pie:9, mag:10, fir:11, lig:15, dar:12, poi:0, psn:12, ble:9, pet:0, cur:0, setname:"" },
{id:306, index:76, name:"Raime`s Gauntlets+5", disp:"Raime`s Gauntlets+5", typ:"g", upg:5, wei:5, phy:83, str:73, sla:90, pie:95, mag:21, fir:28, lig:13, dar:38, poi:9, psn:10, ble:32, pet:0, cur:0, setname:"" },
{id:307, index:77, name:"Rampart Golem Gauntlets+5", disp:"Rampart Golem Gauntlets+5", typ:"g", upg:5, wei:8.2, phy:158, str:131, sla:168, pie:158, mag:24, fir:22, lig:21, dar:23, poi:16, psn:22, ble:33, pet:0, cur:32, setname:"" },
{id:308, index:78, name:"Rogue Gauntlets+10", disp:"Rogue Gauntlets+10", typ:"g", upg:10, wei:1.8, phy:57, str:55, sla:58, pie:58, mag:18, fir:22, lig:21, dar:24, poi:0, psn:22, ble:21, pet:0, cur:0, setname:"" },
{id:309, index:79, name:"Royal Soldier Gauntlets+10", disp:"Royal Soldier Gauntlets+10", typ:"g", upg:10, wei:3.8, phy:65, str:62, sla:68, pie:66, mag:20, fir:21, lig:14, dar:20, poi:6, psn:17, ble:19, pet:0, cur:0, setname:"" },
{id:310, index:80, name:"Royal Swordsman Gloves+10", disp:"Royal Swordsman Gloves+10", typ:"g", upg:10, wei:6.1, phy:110, str:96, sla:122, pie:114, mag:25, fir:32, lig:17, dar:25, poi:10, psn:15, ble:32, pet:0, cur:0, setname:"" },
{id:311, index:81, name:"Ruin Gauntlets+5", disp:"Ruin Gauntlets+5", typ:"g", upg:5, wei:6.2, phy:123, str:112, sla:133, pie:126, mag:29, fir:32, lig:20, dar:29, poi:10, psn:17, ble:39, pet:51, cur:0, setname:"" },
{id:312, index:82, name:"Rusted Mastodon Gauntlets+10", disp:"Rusted Mastodon Gauntlets+10", typ:"g", upg:10, wei:7.8, phy:147, str:137, sla:158, pie:147, mag:15, fir:17, lig:8, dar:15, poi:15, psn:21, ble:24, pet:0, cur:0, setname:"" },
{id:313, index:83, name:"Saint`s Long Gloves+5", disp:"Saint`s Long Gloves+5", typ:"g", upg:5, wei:1, phy:39, str:42, sla:37, pie:37, mag:28, fir:28, lig:35, dar:28, poi:0, psn:17, ble:15, pet:33, cur:30, setname:"" },
{id:314, index:84, name:"Sanctum Knight Gauntlets+5", disp:"Sanctum Knight Gauntlets+5", typ:"g", upg:5, wei:6, phy:127, str:116, sla:136, pie:125, mag:19, fir:18, lig:16, dar:17, poi:9, psn:16, ble:28, pet:0, cur:0, setname:"" },
{id:315, index:85, name:"Sanctum Soldier Gauntlet+10", disp:"Sanctum Soldier Gauntlet+10", typ:"g", upg:10, wei:3.5, phy:57, str:55, sla:65, pie:62, mag:17, fir:18, lig:15, dar:17, poi:5, psn:20, ble:22, pet:0, cur:0, setname:"" },
{id:316, index:86, name:"Shadow Gauntlets+10", disp:"Shadow Gauntlets+10", typ:"g", upg:10, wei:1.6, phy:60, str:67, sla:53, pie:53, mag:32, fir:36, lig:33, dar:43, poi:0, psn:48, ble:37, pet:30, cur:0, setname:"" },
{id:317, index:87, name:"Smelter Demon Gauntlets+5", disp:"Smelter Demon Gauntlets+5", typ:"g", upg:5, wei:10.4, phy:203, str:181, sla:225, pie:203, mag:25, fir:53, lig:24, dar:25, poi:26, psn:15, ble:42, pet:26, cur:26, setname:"" },
{id:318, index:88, name:"Steel Gauntlets+10", disp:"Steel Gauntlets+10", typ:"g", upg:10, wei:8.3, phy:183, str:174, sla:196, pie:183, mag:23, fir:25, lig:16, dar:23, poi:19, psn:20, ble:37, pet:0, cur:0, setname:"" },
{id:319, index:89, name:"Syan`s Gauntlets+10", disp:"Syan`s Gauntlets+10", typ:"g", upg:10, wei:5.2, phy:103, str:93, sla:110, pie:105, mag:20, fir:27, lig:12, dar:20, poi:9, psn:12, ble:34, pet:0, cur:0, setname:"" },
{id:320, index:90, name:"Targray`s Manifers+10", disp:"Targray`s Manifers+10", typ:"g", upg:10, wei:3.3, phy:60, str:56, sla:65, pie:60, mag:15, fir:15, lig:12, dar:17, poi:7, psn:18, ble:20, pet:0, cur:0, setname:"" },
{id:321, index:91, name:"Tattered Cloth Manchettes+10", disp:"Tattered Cloth Manchettes+10", typ:"g", upg:10, wei:1.6, phy:59, str:62, sla:57, pie:57, mag:31, fir:43, lig:28, dar:31, poi:0, psn:51, ble:18, pet:0, cur:11, setname:"" },
{id:322, index:92, name:"Throne Defender Gauntlets+5", disp:"Throne Defender Gauntlets+5", typ:"g", upg:5, wei:4.2, phy:86, str:83, sla:89, pie:86, mag:17, fir:19, lig:10, dar:17, poi:8, psn:12, ble:20, pet:0, cur:0, setname:"" },
{id:323, index:93, name:"Throne Watcher Gauntlets+5", disp:"Throne Watcher Gauntlets+5", typ:"g", upg:5, wei:4.1, phy:76, str:73, sla:82, pie:76, mag:33, fir:22, lig:17, dar:22, poi:10, psn:17, ble:21, pet:0, cur:0, setname:"" },
{id:324, index:94, name:"Traveling Merchant Gloves+10", disp:"Traveling Merchant Gloves+10", typ:"g", upg:10, wei:3.8, phy:73, str:78, sla:71, pie:71, mag:21, fir:23, lig:24, dar:21, poi:0, psn:26, ble:29, pet:0, cur:0, setname:"" },
{id:325, index:95, name:"Tseldora Manchettes+10", disp:"Tseldora Manchettes+10", typ:"g", upg:10, wei:2, phy:29, str:32, sla:28, pie:28, mag:13, fir:14, lig:18, dar:13, poi:0, psn:14, ble:14, pet:0, cur:0, setname:"" },
{id:326, index:96, name:"Varangian Cuffs+10", disp:"Varangian Cuffs+10", typ:"g", upg:10, wei:1.8, phy:35, str:37, sla:35, pie:35, mag:11, fir:8, lig:13, dar:11, poi:0, psn:14, ble:12, pet:0, cur:0, setname:"" },
{id:327, index:97, name:"Velstadt`s Gauntlets+5", disp:"Velstadt`s Gauntlets+5", typ:"g", upg:5, wei:5, phy:108, str:98, sla:114, pie:112, mag:13, fir:14, lig:6, dar:32, poi:14, psn:9, ble:27, pet:14, cur:19, setname:"" },
{id:328, index:98, name:"Vengarl`s Gloves+5", disp:"Vengarl`s Gloves+5", typ:"g", upg:5, wei:5.3, phy:111, str:104, sla:118, pie:111, mag:14, fir:18, lig:12, dar:14, poi:10, psn:13, ble:17, pet:0, cur:0, setname:"" },
{id:329, index:99, name:"Wanderer Manchette+10", disp:"Wanderer Manchette+10", typ:"g", upg:10, wei:2.1, phy:69, str:67, sla:70, pie:71, mag:23, fir:30, lig:33, dar:24, poi:0, psn:26, ble:42, pet:0, cur:0, setname:"" },
{id:330, index:100, name:"White Priest Gloves+10", disp:"White Priest Gloves+10", typ:"g", upg:10, wei:1.1, phy:37, str:39, sla:36, pie:36, mag:22, fir:22, lig:29, dar:24, poi:0, psn:15, ble:14, pet:14, cur:14, setname:"" },
{id:331, index:101, name:"Xanthous Gloves+5", disp:"Xanthous Gloves+5", typ:"g", upg:5, wei:2.3, phy:46, str:53, sla:46, pie:40, mag:35, fir:9, lig:22, dar:27, poi:0, psn:20, ble:18, pet:0, cur:0, setname:"" },
{id:436, index:102, name:"Gauntlets of the Forlorn+5", disp:"Gauntlets of the Forlorn+5", typ:"g", upg:5, wei:5.5, phy:109, str:101, sla:115, pie:108, mag:20, fir:25, lig:18, dar:34, poi:9, psn:38, ble:28, pet:0, cur:0, setname:"" },
],
legs:[
{id:332, index:0, name:"<none>", disp:"<none>", typ:"l", upg:0, wei:0.0, phy:0.0, str:0.0, sla:0.0, pie:0.0, mag:0.0, fir:0.0, lig:0.0, dar:0.0, poi:0.0, psn:0.0, ble:0.0, pet: 0.0, cur:0.0, setname:"" },
{id:333, index:1, name:"Agdayne`s Kilt+5", disp:"Agdayne`s Kilt+5", typ:"l", upg:5, wei:2.9, phy:70, str:74, sla:68, pie:68, mag:41, fir:39, lig:36, dar:54, poi:0, psn:41, ble:28, pet:36, cur:49, setname:"" },
{id:334, index:2, name:"Alonne Knight Leggings+10", disp:"Alonne Knight Leggings+10", typ:"l", upg:10, wei:9.8, phy:201, str:192, sla:213, pie:201, mag:31, fir:55, lig:23, dar:31, poi:23, psn:12, ble:37, pet:0, cur:0, setname:"" },
{id:335, index:3, name:"Alonne`s Leggings+5", disp:"Alonne`s Leggings+5", typ:"l", upg:5, wei:5.5, phy:108, str:103, sla:111, pie:106, mag:28, fir:31, lig:21, dar:30, poi:11, psn:30, ble:40, pet:0, cur:0, setname:"" },
{id:336, index:4, name:"Alva Leggings+10", disp:"Alva Leggings+10", typ:"l", upg:10, wei:5.2, phy:106, str:101, sla:109, pie:104, mag:29, fir:32, lig:22, dar:31, poi:9, psn:31, ble:41, pet:0, cur:0, setname:"" },
{id:337, index:5, name:"Archdrake Boots+10", disp:"Archdrake Boots+10", typ:"l", upg:10, wei:4.7, phy:85, str:85, sla:85, pie:85, mag:27, fir:26, lig:45, dar:25, poi:7, psn:23, ble:19, pet:0, cur:0, setname:"" },
{id:338, index:6, name:"Astrologist`s Bottoms+10", disp:"Astrologist`s Bottoms+10", typ:"l", upg:10, wei:3.8, phy:90, str:94, sla:87, pie:87, mag:65, fir:44, lig:44, dar:55, poi:0, psn:28, ble:28, pet:0, cur:0, setname:"" },
{id:339, index:7, name:"Bandit Boots+10", disp:"Bandit Boots+10", typ:"l", upg:10, wei:2.8, phy:60, str:60, sla:62, pie:58, mag:18, fir:19, lig:15, dar:18, poi:3, psn:13, ble:19, pet:0, cur:0, setname:"" },
{id:340, index:8, name:"Bell Keeper Trousers+10", disp:"Bell Keeper Trousers+10", typ:"l", upg:10, wei:4, phy:87, str:92, sla:85, pie:85, mag:19, fir:18, lig:25, dar:33, poi:0, psn:21, ble:17, pet:0, cur:0, setname:"" },
{id:341, index:9, name:"Benhart`s Boots+10", disp:"Benhart`s Boots+10", typ:"l", upg:10, wei:6.5, phy:129, str:124, sla:134, pie:129, mag:30, fir:28, lig:26, dar:30, poi:11, psn:34, ble:26, pet:0, cur:0, setname:"" },
{id:342, index:10, name:"Black Boots+5", disp:"Black Boots+5", typ:"l", upg:5, wei:2, phy:78, str:83, sla:74, pie:74, mag:85, fir:57, lig:57, dar:57, poi:0, psn:35, ble:30, pet:45, cur:41, setname:"" },
{id:343, index:11, name:"Black Dragon Leggings", disp:"Black Dragon Leggings", typ:"l", upg:0, wei:2.7, phy:72, str:70, sla:74, pie:72, mag:26, fir:57, lig:27, dar:26, poi:0, psn:33, ble:47, pet:38, cur:38, setname:"" },
{id:344, index:12, name:"Black Leather Boots+10", disp:"Black Leather Boots+10", typ:"l", upg:10, wei:2.2, phy:74, str:76, sla:72, pie:72, mag:35, fir:27, lig:25, dar:29, poi:0, psn:42, ble:29, pet:0, cur:0, setname:"" },
{id:345, index:13, name:"Black Witch Trousers+5", disp:"Black Witch Trousers+5", typ:"l", upg:5, wei:1.7, phy:52, str:56, sla:50, pie:50, mag:48, fir:38, lig:45, dar:46, poi:0, psn:17, ble:21, pet:23, cur:23, setname:"" },
{id:346, index:14, name:"Blood-Stained Skirt+10", disp:"Blood-Stained Skirt+10", typ:"l", upg:10, wei:2.5, phy:90, str:101, sla:84, pie:84, mag:54, fir:46, lig:51, dar:51, poi:0, psn:34, ble:39, pet:77, cur:77, setname:"" },
{id:347, index:15, name:"Bone King Skirt+5", disp:"Bone King Skirt+5", typ:"l", upg:5, wei:2.9, phy:81, str:88, sla:78, pie:78, mag:52, fir:57, lig:46, dar:72, poi:0, psn:42, ble:26, pet:32, cur:51, setname:"" },
{id:348, index:16, name:"Brigand Trousers+10", disp:"Brigand Trousers+10", typ:"l", upg:10, wei:1.8, phy:66, str:72, sla:65, pie:61, mag:32, fir:26, lig:25, dar:28, poi:0, psn:26, ble:27, pet:0, cur:0, setname:"" },
{id:349, index:17, name:"Cale`s Shoes+10", disp:"Cale`s Shoes+10", typ:"l", upg:10, wei:3, phy:78, str:77, sla:77, pie:80, mag:22, fir:23, lig:19, dar:22, poi:0, psn:34, ble:21, pet:0, cur:0, setname:"" },
{id:350, index:18, name:"Catarina Leggings+5", disp:"Catarina Leggings+5", typ:"l", upg:5, wei:6.9, phy:132, str:132, sla:153, pie:132, mag:28, fir:31, lig:19, dar:28, poi:13, psn:23, ble:36, pet:0, cur:0, setname:"" },
{id:351, index:19, name:"Chaos Boots+5", disp:"Chaos Boots+5", typ:"l", upg:5, wei:2, phy:78, str:83, sla:74, pie:74, mag:57, fir:85, lig:57, dar:82, poi:0, psn:35, ble:30, pet:45, cur:41, setname:"" },
{id:352, index:20, name:"Charred Loyce Leggings+5", disp:"Charred Loyce Leggings+5", typ:"l", upg:5, wei:7.8, phy:148, str:125, sla:157, pie:148, mag:0, fir:0, lig:0, dar:0, poi:0, psn:0, ble:0, pet:0, cur:0, setname:"" },
{id:353, index:21, name:"Creighton`s Chain Leggings+10", disp:"Creighton`s Chain Leggings+10", typ:"l", upg:10, wei:4.5, phy:84, str:82, sla:87, pie:84, mag:25, fir:28, lig:14, dar:25, poi:7, psn:19, ble:31, pet:0, cur:0, setname:"" },
{id:354, index:22, name:"Dark Leggings+5", disp:"Dark Leggings+5", typ:"l", upg:5, wei:5.8, phy:101, str:101, sla:107, pie:97, mag:27, fir:27, lig:18, dar:56, poi:9, psn:27, ble:31, pet:0, cur:0, setname:"" },
{id:355, index:23, name:"Desert Sorceress Skirt+10", disp:"Desert Sorceress Skirt+10", typ:"l", upg:10, wei:2.4, phy:79, str:83, sla:77, pie:77, mag:74, fir:51, lig:61, dar:67, poi:0, psn:29, ble:19, pet:52, cur:24, setname:"" },
{id:356, index:24, name:"Dragon Acolyte Boots+10", disp:"Dragon Acolyte Boots+10", typ:"l", upg:10, wei:2.4, phy:73, str:76, sla:71, pie:71, mag:30, fir:30, lig:34, dar:37, poi:0, psn:34, ble:66, pet:0, cur:0, setname:"" },
{id:357, index:25, name:"Dragonrider Leggings+5", disp:"Dragonrider Leggings+5", typ:"l", upg:5, wei:7.4, phy:158, str:147, sla:165, pie:158, mag:14, fir:13, lig:14, dar:14, poi:14, psn:13, ble:18, pet:0, cur:0, setname:"" },
{id:358, index:26, name:"Drakeblood Leggings+10", disp:"Drakeblood Leggings+10", typ:"l", upg:10, wei:7.8, phy:156, str:149, sla:168, pie:161, mag:29, fir:39, lig:20, dar:34, poi:9, psn:32, ble:42, pet:0, cur:0, setname:"" },
{id:359, index:27, name:"Drakekeeper Boots+10", disp:"Drakekeeper Boots+10", typ:"l", upg:10, wei:8.4, phy:178, str:171, sla:188, pie:178, mag:23, fir:26, lig:20, dar:23, poi:17, psn:23, ble:34, pet:0, cur:33, setname:"" },
{id:360, index:28, name:"Drangleic Leggings+5", disp:"Drangleic Leggings+5", typ:"l", upg:5, wei:7.6, phy:153, str:145, sla:166, pie:156, mag:25, fir:25, lig:22, dar:25, poi:12, psn:26, ble:33, pet:0, cur:0, setname:"" },
{id:361, index:29, name:"Elite Knight Leggings+10", disp:"Elite Knight Leggings+10", typ:"l", upg:10, wei:6.9, phy:122, str:119, sla:135, pie:122, mag:35, fir:37, lig:25, dar:35, poi:9, psn:29, ble:41, pet:0, cur:0, setname:"" },
{id:362, index:30, name:"Executioner Leggings+5", disp:"Executioner Leggings+5", typ:"l", upg:5, wei:2.7, phy:56, str:52, sla:60, pie:58, mag:13, fir:14, lig:9, dar:30, poi:4, psn:10, ble:38, pet:0, cur:27, setname:"" },
{id:363, index:31, name:"Falconer Boots+10", disp:"Falconer Boots+10", typ:"l", upg:10, wei:5.8, phy:111, str:118, sla:107, pie:107, mag:33, fir:28, lig:38, dar:33, poi:8, psn:36, ble:29, pet:0, cur:0, setname:"" },
{id:364, index:32, name:"Faraam Boots+10", disp:"Faraam Boots+10", typ:"l", upg:10, wei:7.9, phy:156, str:147, sla:166, pie:159, mag:35, fir:38, lig:23, dar:35, poi:11, psn:30, ble:41, pet:0, cur:0, setname:"" },
{id:365, index:33, name:"Flower Skirt+10", disp:"Flower Skirt+10", typ:"l", upg:10, wei:1.7, phy:52, str:55, sla:50, pie:50, mag:30, fir:25, lig:28, dar:31, poi:0, psn:53, ble:30, pet:0, cur:10, setname:"" },
{id:366, index:34, name:"Flying Feline Boots+5", disp:"Flying Feline Boots+5", typ:"l", upg:5, wei:2, phy:60, str:74, sla:53, pie:54, mag:22, fir:14, lig:37, dar:24, poi:0, psn:26, ble:28, pet:0, cur:75, setname:"" },
{id:367, index:35, name:"Fume Sorcerer Boots+10", disp:"Fume Sorcerer Boots+10", typ:"l", upg:10, wei:2.8, phy:75, str:80, sla:73, pie:73, mag:26, fir:20, lig:36, dar:33, poi:0, psn:33, ble:28, pet:0, cur:0, setname:"" },
{id:368, index:36, name:"Grave Warden Bottoms+10", disp:"Grave Warden Bottoms+10", typ:"l", upg:10, wei:3.8, phy:100, str:109, sla:96, pie:96, mag:44, fir:42, lig:53, dar:57, poi:0, psn:54, ble:43, pet:0, cur:0, setname:"" },
{id:369, index:37, name:"Gyrm Boots+10", disp:"Gyrm Boots+10", typ:"l", upg:10, wei:5.6, phy:117, str:117, sla:123, pie:112, mag:17, fir:16, lig:14, dar:17, poi:14, psn:33, ble:25, pet:18, cur:18, setname:"" },
{id:370, index:38, name:"Gyrm Warrior Boots+10", disp:"Gyrm Warrior Boots+10", typ:"l", upg:10, wei:8.8, phy:175, str:183, sla:183, pie:159, mag:19, fir:23, lig:23, dar:19, poi:24, psn:12, ble:40, pet:0, cur:0, setname:"" },
{id:371, index:39, name:"Hard Leather Boots+10", disp:"Hard Leather Boots+10", typ:"l", upg:10, wei:3.8, phy:80, str:83, sla:78, pie:78, mag:25, fir:16, lig:31, dar:26, poi:0, psn:28, ble:25, pet:0, cur:0, setname:"" },
{id:372, index:40, name:"Havel`s Leggings+5", disp:"Havel`s Leggings+5", typ:"l", upg:5, wei:11.5, phy:235, str:202, sla:267, pie:235, mag:31, fir:34, lig:28, dar:31, poi:31, psn:9, ble:55, pet:23, cur:23, setname:"" },
{id:373, index:41, name:"Heavy Boots+10", disp:"Heavy Boots+10", typ:"l", upg:10, wei:1.6, phy:59, str:62, sla:57, pie:57, mag:31, fir:43, lig:28, dar:31, poi:0, psn:51, ble:18, pet:0, cur:11, setname:"" },
{id:374, index:42, name:"Heide Knight Leggings+10", disp:"Heide Knight Leggings+10", typ:"l", upg:10, wei:6.4, phy:126, str:119, sla:135, pie:126, mag:22, fir:28, lig:19, dar:38, poi:10, psn:41, ble:31, pet:0, cur:33, setname:"" },
{id:375, index:43, name:"Hexer`s Boots+5", disp:"Hexer`s Boots+5", typ:"l", upg:5, wei:2, phy:78, str:83, sla:74, pie:74, mag:57, fir:85, lig:57, dar:57, poi:0, psn:35, ble:30, pet:45, cur:41, setname:"" },
{id:376, index:44, name:"Hollow Infantry Boots+10", disp:"Hollow Infantry Boots+10", typ:"l", upg:10, wei:4.5, phy:70, str:72, sla:68, pie:68, mag:15, fir:13, lig:19, dar:15, poi:0, psn:15, ble:15, pet:0, cur:0, setname:"" },
{id:377, index:45, name:"Hollow Soldier Leggings+10", disp:"Hollow Soldier Leggings+10", typ:"l", upg:10, wei:1.8, phy:29, str:28, sla:30, pie:29, mag:9, fir:10, lig:6, dar:9, poi:0, psn:8, ble:9, pet:0, cur:0, setname:"" },
{id:378, index:46, name:"Imperious Leggings+10", disp:"Imperious Leggings+10", typ:"l", upg:10, wei:7.5, phy:157, str:150, sla:166, pie:157, mag:28, fir:22, lig:17, dar:28, poi:17, psn:21, ble:29, pet:21, cur:21, setname:"" },
{id:379, index:47, name:"Imported Trousers+10", disp:"Imported Trousers+10", typ:"l", upg:10, wei:3.6, phy:52, str:58, sla:50, pie:50, mag:15, fir:13, lig:18, dar:15, poi:0, psn:19, ble:21, pet:0, cur:0, setname:"" },
{id:380, index:48, name:"Infantry Boots+10", disp:"Infantry Boots+10", typ:"l", upg:10, wei:4.5, phy:86, str:90, sla:85, pie:85, mag:22, fir:20, lig:28, dar:22, poi:0, psn:22, ble:22, pet:0, cur:0, setname:"" },
{id:381, index:49, name:"Insolent Boots+10", disp:"Insolent Boots+10", typ:"l", upg:10, wei:5.8, phy:101, str:96, sla:108, pie:101, mag:26, fir:26, lig:32, dar:24, poi:9, psn:23, ble:30, pet:25, cur:25, setname:"" },
{id:382, index:50, name:"Ironclad Leggings+10", disp:"Ironclad Leggings+10", typ:"l", upg:10, wei:9.4, phy:170, str:155, sla:182, pie:170, mag:24, fir:27, lig:16, dar:24, poi:23, psn:11, ble:46, pet:0, cur:0, setname:"" },
{id:383, index:51, name:"Ivory King Leggings+5", disp:"Ivory King Leggings+5", typ:"l", upg:5, wei:8.6, phy:160, str:130, sla:165, pie:160, mag:0, fir:0, lig:0, dar:0, poi:0, psn:0, ble:0, pet:0, cur:0, setname:"" },
{id:384, index:52, name:"Jester`s Tights+10", disp:"Jester`s Tights+10", typ:"l", upg:10, wei:2.7, phy:62, str:66, sla:60, pie:60, mag:35, fir:35, lig:35, dar:35, poi:0, psn:38, ble:29, pet:37, cur:24, setname:"" },
{id:385, index:53, name:"King`s Leggings+5", disp:"King`s Leggings+5", typ:"l", upg:5, wei:7.1, phy:127, str:121, sla:134, pie:127, mag:42, fir:42, lig:34, dar:30, poi:10, psn:48, ble:43, pet:47, cur:0, setname:"" },
{id:386, index:54, name:"Knight Leggings+10", disp:"Knight Leggings+10", typ:"l", upg:10, wei:6.4, phy:108, str:105, sla:123, pie:108, mag:32, fir:35, lig:23, dar:32, poi:12, psn:29, ble:40, pet:0, cur:0, setname:"" },
{id:387, index:55, name:"Leather Boots+10", disp:"Leather Boots+10", typ:"l", upg:10, wei:2.8, phy:77, str:82, sla:75, pie:75, mag:28, fir:18, lig:37, dar:30, poi:0, psn:31, ble:26, pet:0, cur:0, setname:"" },
{id:388, index:56, name:"Leggings of Aurous+5", disp:"Leggings of Aurous+5", typ:"l", upg:5, wei:5.8, phy:105, str:102, sla:110, pie:106, mag:37, fir:36, lig:26, dar:40, poi:10, psn:29, ble:37, pet:0, cur:0, setname:"" },
{id:389, index:57, name:"Leggings of Aurous (T)+5", disp:"Leggings of Aurous (T)+5", typ:"l", upg:5, wei:2, phy:72, str:77, sla:68, pie:69, mag:28, fir:23, lig:30, dar:26, poi:0, psn:19, ble:22, pet:0, cur:0, setname:"" },
{id:390, index:58, name:"Lion Mage Skirt+10", disp:"Lion Mage Skirt+10", typ:"l", upg:10, wei:1.4, phy:50, str:53, sla:46, pie:46, mag:47, fir:38, lig:39, dar:47, poi:0, psn:22, ble:22, pet:25, cur:57, setname:"" },
{id:391, index:59, name:"Lion Warrior Skirt+10", disp:"Lion Warrior Skirt+10", typ:"l", upg:10, wei:1.2, phy:45, str:47, sla:44, pie:44, mag:19, fir:18, lig:18, dar:35, poi:0, psn:13, ble:12, pet:34, cur:65, setname:"" },
{id:392, index:60, name:"Llewellyn Shoes+5", disp:"Llewellyn Shoes+5", typ:"l", upg:5, wei:3.1, phy:82, str:76, sla:85, pie:83, mag:26, fir:31, lig:20, dar:26, poi:0, psn:27, ble:37, pet:15, cur:15, setname:"" },
{id:393, index:61, name:"Looking Glass Leggings+5", disp:"Looking Glass Leggings+5", typ:"l", upg:5, wei:10.4, phy:201, str:175, sla:230, pie:201, mag:25, fir:28, lig:45, dar:25, poi:27, psn:23, ble:49, pet:0, cur:0, setname:"" },
{id:394, index:62, name:"Loyce Leggings+5", disp:"Loyce Leggings+5", typ:"l", upg:5, wei:7.5, phy:143, str:137, sla:152, pie:143, mag:0, fir:0, lig:0, dar:0, poi:0, psn:0, ble:0, pet:0, cur:0, setname:"" },
{id:395, index:63, name:"Lucatiel`s Trousers+10", disp:"Lucatiel`s Trousers+10", typ:"l", upg:10, wei:4, phy:102, str:109, sla:98, pie:98, mag:56, fir:50, lig:61, dar:56, poi:0, psn:43, ble:34, pet:18, cur:36, setname:"" },
{id:396, index:64, name:"Mad Warrior Leggings+5", disp:"Mad Warrior Leggings+5", typ:"l", upg:5, wei:7.4, phy:152, str:152, sla:160, pie:145, mag:25, fir:24, lig:18, dar:25, poi:12, psn:32, ble:32, pet:29, cur:29, setname:"" },
{id:397, index:65, name:"Manikin Boots+10", disp:"Manikin Boots+10", typ:"l", upg:10, wei:1.6, phy:64, str:68, sla:61, pie:61, mag:32, fir:31, lig:38, dar:40, poi:0, psn:38, ble:52, pet:17, cur:0, setname:"" },
{id:398, index:66, name:"Mastodon Leggings+10", disp:"Mastodon Leggings+10", typ:"l", upg:10, wei:10.8, phy:217, str:201, sla:233, pie:217, mag:25, fir:28, lig:15, dar:25, poi:27, psn:34, ble:39, pet:0, cur:0, setname:"" },
{id:399, index:67, name:"Monastery Skirt+5", disp:"Monastery Skirt+5", typ:"l", upg:5, wei:4, phy:71, str:75, sla:66, pie:66, mag:63, fir:46, lig:40, dar:45, poi:0, psn:79, ble:50, pet:44, cur:53, setname:"" },
{id:400, index:68, name:"Moon Butterfly Skirt+10", disp:"Moon Butterfly Skirt+10", typ:"l", upg:10, wei:1.2, phy:61, str:67, sla:58, pie:58, mag:32, fir:21, lig:33, dar:27, poi:0, psn:59, ble:25, pet:33, cur:36, setname:"" },
{id:401, index:69, name:"Northwarder Trousers+10", disp:"Northwarder Trousers+10", typ:"l", upg:10, wei:1.8, phy:62, str:65, sla:60, pie:60, mag:0, fir:0, lig:0, dar:0, poi:0, psn:0, ble:0, pet:0, cur:0, setname:"" },
{id:402, index:70, name:"Old Ironclad Leggings+10", disp:"Old Ironclad Leggings+10", typ:"l", upg:10, wei:9.4, phy:146, str:134, sla:159, pie:146, mag:18, fir:20, lig:13, dar:18, poi:21, psn:8, ble:36, pet:0, cur:0, setname:"" },
{id:403, index:71, name:"Old Knight Leggings+10", disp:"Old Knight Leggings+10", typ:"l", upg:10, wei:8.2, phy:171, str:160, sla:179, pie:171, mag:15, fir:15, lig:10, dar:15, poi:18, psn:11, ble:29, pet:0, cur:0, setname:"" },
{id:404, index:72, name:"Pate`s Trousers+10", disp:"Pate`s Trousers+10", typ:"l", upg:10, wei:3.5, phy:77, str:80, sla:75, pie:75, mag:25, fir:16, lig:31, dar:26, poi:0, psn:27, ble:24, pet:0, cur:0, setname:"" },
{id:405, index:73, name:"Peasant Trousers+10", disp:"Peasant Trousers+10", typ:"l", upg:10, wei:2.6, phy:34, str:38, sla:33, pie:33, mag:16, fir:17, lig:21, dar:16, poi:0, psn:25, ble:20, pet:0, cur:0, setname:"" },
{id:406, index:74, name:"Penal Skirt+5", disp:"Penal Skirt+5", typ:"l", upg:5, wei:4.8, phy:102, str:105, sla:105, pie:95, mag:42, fir:53, lig:38, dar:47, poi:0, psn:16, ble:13, pet:34, cur:44, setname:"" },
{id:407, index:75, name:"Priestess Skirt+10", disp:"Priestess Skirt+10", typ:"l", upg:10, wei:1.9, phy:72, str:75, sla:70, pie:70, mag:45, fir:44, lig:62, dar:50, poi:0, psn:30, ble:29, pet:35, cur:35, setname:"" },
{id:408, index:76, name:"Prisoner`s Waistcloth+10", disp:"Prisoner`s Waistcloth+10", typ:"l", upg:10, wei:1, phy:10, str:11, sla:9, pie:9, mag:10, fir:11, lig:15, dar:12, poi:0, psn:12, ble:9, pet:0, cur:0, setname:"" },
{id:409, index:77, name:"Raime`s Leggings+5", disp:"Raime`s Leggings+5", typ:"l", upg:5, wei:6.9, phy:121, str:106, sla:130, pie:123, mag:28, fir:37, lig:17, dar:43, poi:12, psn:14, ble:45, pet:0, cur:0, setname:"" },
{id:410, index:78, name:"Rampart Golem Leggings+5", disp:"Rampart Golem Leggings+5", typ:"l", upg:5, wei:8.2, phy:158, str:131, sla:168, pie:158, mag:24, fir:18, lig:21, dar:24, poi:16, psn:0, ble:0, pet:0, cur:0, setname:"" },
{id:411, index:79, name:"Rogue Leggings+10", disp:"Rogue Leggings+10", typ:"l", upg:10, wei:2.5, phy:79, str:77, sla:81, pie:81, mag:25, fir:30, lig:29, dar:34, poi:0, psn:30, ble:29, pet:0, cur:0, setname:"" },
{id:412, index:80, name:"Royal Soldier Leggings+10", disp:"Royal Soldier Leggings+10", typ:"l", upg:10, wei:5.3, phy:91, str:86, sla:95, pie:92, mag:28, fir:29, lig:19, dar:28, poi:8, psn:24, ble:27, pet:0, cur:0, setname:"" },
{id:413, index:81, name:"Royal Swordsman Leggings+10", disp:"Royal Swordsman Leggings+10", typ:"l", upg:10, wei:6.1, phy:110, str:96, sla:122, pie:114, mag:25, fir:32, lig:17, dar:25, poi:10, psn:15, ble:32, pet:0, cur:0, setname:"" },
{id:414, index:82, name:"Ruin Leggings+5", disp:"Ruin Leggings+5", typ:"l", upg:5, wei:6.2, phy:123, str:112, sla:133, pie:126, mag:29, fir:32, lig:20, dar:29, poi:12, psn:17, ble:39, pet:51, cur:0, setname:"" },
{id:415, index:83, name:"Rusted Mastodon Leggings+10", disp:"Rusted Mastodon Leggings+10", typ:"l", upg:10, wei:9.8, phy:185, str:171, sla:198, pie:185, mag:19, fir:22, lig:11, dar:19, poi:20, psn:26, ble:31, pet:0, cur:0, setname:"" },
{id:416, index:84, name:"Saint`s Trousers+5", disp:"Saint`s Trousers+5", typ:"l", upg:5, wei:2, phy:78, str:83, sla:74, pie:74, mag:57, fir:57, lig:70, dar:57, poi:0, psn:35, ble:30, pet:66, cur:61, setname:"" },
{id:417, index:85, name:"Sanctum Knight Leggings+5", disp:"Sanctum Knight Leggings+5", typ:"l", upg:5, wei:7.4, phy:154, str:142, sla:165, pie:154, mag:23, fir:23, lig:19, dar:22, poi:10, psn:21, ble:33, pet:0, cur:0, setname:"" },
{id:418, index:86, name:"Shadow Leggings+10", disp:"Shadow Leggings+10", typ:"l", upg:10, wei:1.6, phy:60, str:67, sla:53, pie:53, mag:32, fir:36, lig:33, dar:43, poi:0, psn:48, ble:37, pet:30, cur:0, setname:"" },
{id:419, index:87, name:"Smelter Demon Leggings+5", disp:"Smelter Demon Leggings+5", typ:"l", upg:5, wei:10.4, phy:203, str:181, sla:225, pie:203, mag:25, fir:53, lig:24, dar:25, poi:26, psn:15, ble:42, pet:26, cur:26, setname:"" },
{id:420, index:88, name:"Steel Leggings+10", disp:"Steel Leggings+10", typ:"l", upg:10, wei:8.3, phy:183, str:174, sla:196, pie:183, mag:23, fir:25, lig:16, dar:23, poi:19, psn:20, ble:37, pet:0, cur:0, setname:"" },
{id:421, index:89, name:"Syan`s Leggings+10", disp:"Syan`s Leggings+10", typ:"l", upg:10, wei:7.1, phy:141, str:126, sla:150, pie:143, mag:27, fir:36, lig:16, dar:27, poi:12, psn:16, ble:47, pet:0, cur:0, setname:"" },
{id:422, index:90, name:"Targray`s Leggings+10", disp:"Targray`s Leggings+10", typ:"l", upg:10, wei:5.8, phy:105, str:98, sla:114, pie:105, mag:26, fir:26, lig:21, dar:29, poi:10, psn:32, ble:35, pet:0, cur:0, setname:"" },
{id:423, index:91, name:"Throne Defender Leggings+5", disp:"Throne Defender Leggings+5", typ:"l", upg:5, wei:7.7, phy:158, str:152, sla:163, pie:159, mag:32, fir:35, lig:19, dar:32, poi:13, psn:22, ble:37, pet:0, cur:0, setname:"" },
{id:424, index:92, name:"Throne Watcher Leggings+5", disp:"Throne Watcher Leggings+5", typ:"l", upg:5, wei:6.6, phy:123, str:117, sla:132, pie:123, mag:54, fir:35, lig:28, dar:35, poi:12, psn:28, ble:33, pet:0, cur:0, setname:"" },
{id:425, index:93, name:"Tights of Judgment+5", disp:"Tights of Judgment+5", typ:"l", upg:5, wei:2.8, phy:83, str:89, sla:80, pie:80, mag:42, fir:34, lig:29, dar:37, poi:0, psn:22, ble:24, pet:0, cur:46, setname:"" },
{id:426, index:94, name:"Traveling Merchant Boots+10", disp:"Traveling Merchant Boots+10", typ:"l", upg:10, wei:3.8, phy:73, str:78, sla:71, pie:71, mag:21, fir:23, lig:24, dar:21, poi:0, psn:26, ble:29, pet:0, cur:0, setname:"" },
{id:427, index:95, name:"Tseldora Trousers+10", disp:"Tseldora Trousers+10", typ:"l", upg:10, wei:2, phy:29, str:32, sla:28, pie:28, mag:13, fir:14, lig:18, dar:13, poi:0, psn:14, ble:14, pet:0, cur:0, setname:"" },
{id:428, index:96, name:"Varangian Leggings+10", disp:"Varangian Leggings+10", typ:"l", upg:10, wei:2.4, phy:52, str:55, sla:51, pie:51, mag:17, fir:12, lig:20, dar:17, poi:0, psn:20, ble:18, pet:0, cur:0, setname:"" },
{id:429, index:97, name:"Velstadt`s Leggings+5", disp:"Velstadt`s Leggings+5", typ:"l", upg:5, wei:7.2, phy:157, str:143, sla:166, pie:163, mag:20, fir:21, lig:10, dar:47, poi:16, psn:13, ble:40, pet:21, cur:29, setname:"" },
{id:430, index:98, name:"Vengarl`s Boots+5", disp:"Vengarl`s Boots+5", typ:"l", upg:5, wei:7.9, phy:165, str:156, sla:176, pie:165, mag:21, fir:27, lig:18, dar:21, poi:17, psn:19, ble:25, pet:0, cur:0, setname:"" },
{id:431, index:99, name:"Wanderer Boots+10", disp:"Wanderer Boots+10", typ:"l", upg:10, wei:2.1, phy:69, str:67, sla:70, pie:71, mag:23, fir:30, lig:33, dar:24, poi:0, psn:26, ble:42, pet:0, cur:0, setname:"" },
{id:432, index:100, name:"White Priest Skirt+10", disp:"White Priest Skirt+10", typ:"l", upg:10, wei:2.4, phy:80, str:84, sla:79, pie:79, mag:48, fir:48, lig:63, dar:53, poi:0, psn:33, ble:31, pet:31, cur:31, setname:"" },
{id:433, index:101, name:"Xanthous Waistcloth+5", disp:"Xanthous Waistcloth+5", typ:"l", upg:5, wei:4, phy:80, str:92, sla:80, pie:69, mag:61, fir:16, lig:38, dar:47, poi:0, psn:36, ble:32, pet:0, cur:0, setname:"" },
{id:437, index:102, name:"Leggings of the Forlorn+5", disp:"Leggings of the Forlorn+5", typ:"l", upg:5, wei:6.2, phy:124, str:117, sla:133, pie:124, mag:20, fir:26, lig:17, dar:36, poi:11, psn:39, ble:29, pet:0, cur:0, setname:"" },
],
}
function addoption(select, value, name) {
var option = new Option(name, value, true, true);
select.options[select.length] = option;
}
function initarmor(select, source) {
for(var i=0; i<source.length; ++i) {
var a=source[i];
addoption(select, a.index, a.disp);
}
}
function init() {
initarmor(document.input.head, armory.head);
initarmor(document.input.ches, armory.ches);
initarmor(document.input.gaun, armory.gaun);
initarmor(document.input.legs, armory.legs);
load();
}
function makecombo(a,b,c,d) {
return {
head:a,ches:b,gaun:c,legs:d,
wei:a.wei+b.wei+c.wei+d.wei,
phy:a.phy+b.phy+c.phy+d.phy,
str:a.str+b.str+c.str+d.str,
sla:a.sla+b.sla+c.sla+d.sla,
pie:a.pie+b.pie+c.pie+d.pie,
mag:a.mag+b.mag+c.mag+d.mag,
fir:a.fir+b.fir+c.fir+d.fir,
lig:a.lig+b.lig+c.lig+d.lig,
dar:a.dar+b.dar+c.dar+d.dar,
poi:a.poi+b.poi+c.poi+d.poi,
psn:a.psn+b.psn+c.psn+d.psn,
ble:a.ble+b.ble+c.ble+d.ble,
pet:a.pet+b.pet+c.pet+d.pet,
cur:a.cur+b.cur+c.cur+d.cur
}
}
function getselected(select) {
var s = []
for(var i=0; i<select.length; ++i) {
if(select.options[i].selected) s.push(select.options[i].value);
}
return s;
}
function selectfromarr(arr, indices) {
var a = [];
for(var i=0; i<indices.length; ++i) { a.push(arr[indices[i]]); }
return a;
}
function getminfn() {
var m = {
phy:parseFloat(document.input.mphy.value),
mag:parseFloat(document.input.mmag.value),
fir:parseFloat(document.input.mfir.value),
lig:parseFloat(document.input.mlig.value),
dar:parseFloat(document.input.mdar.value),
poi:parseFloat(document.input.mpoi.value),
psn:parseFloat(document.input.mpsn.value),
ble:parseFloat(document.input.mble.value),
pet:parseFloat(document.input.mpet.value),
cur:parseFloat(document.input.mcur.value)
};
return function(a) {
var v = true;
v = v && a.phy >= m.phy;
v = v && a.mag >= m.mag;
v = v && a.fir >= m.fir;
v = v && a.lig >= m.lig;
v = v && a.dar >= m.dar;
v = v && a.poi >= m.poi;
v = v && a.psn >= m.psn;
v = v && a.ble >= m.ble;
v = v && a.pet >= m.pet;
v = v && a.cur >= m.cur;
return v;
}
}
function getobjfn(max) {
var w = {
phy:parseFloat(document.input.wphy.value),
mag:parseFloat(document.input.wmag.value),
fir:parseFloat(document.input.wfir.value),
lig:parseFloat(document.input.wlig.value),
dar:parseFloat(document.input.wdar.value),
poi:parseFloat(document.input.wpoi.value),
psn:parseFloat(document.input.wpsn.value),
ble:parseFloat(document.input.wble.value),
pet:parseFloat(document.input.wpet.value),
cur:parseFloat(document.input.wcur.value)
};
if(!max) {
return function(a) {
var t=0;
t += a.phy*w.phy;
t += a.mag*w.mag;
t += a.fir*w.fir;
t += a.lig*w.lig;
t += a.dar*w.dar;
t += a.poi*w.poi;
t += a.psn*w.psn;
t += a.ble*w.ble;
t += a.pet*w.pet;
t += a.cur*w.cur;
t += 1-a.wei/200;
return t;
}
} else {
return function(a) {
var t=0;
t += 1000*a.phy/max.phy*w.phy;
t += 1000*a.mag/max.mag*w.mag;
t += 1000*a.fir/max.fir*w.fir;
t += 1000*a.lig/max.lig*w.lig;
t += 1000*a.poi/max.poi*w.poi;
t += 1000*a.psn/max.psn*w.psn;
t += 1000*a.ble/max.ble*w.ble;
t += 1000*a.cur/max.cur*w.cur;
t += 1-a.wei/200;
return t;
}
}
}
function max(arr, fn) {
var max = fn(arr[0]);
for(var i=1; i<arr.length; ++i) {
var x = fn(arr[i]);
if(x>max) max=x;
}
return max;
}
function clone(obj) {
if (null == obj || "object" != typeof obj) return obj;
var copy = obj.constructor();
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) copy[attr] = obj[attr];
}
return copy;
}
function findmax(armory) {
var max=clone(armory[0]);
for(var i=1; i<armory.length; ++i) {
var a=armory[i];
max.phy=Math.max(max.phy,a.phy);
max.mag=Math.max(max.mag,a.mag);
max.fir=Math.max(max.fir,a.fir);
max.lig=Math.max(max.lig,a.lig);
max.dar=Math.max(max.dar,a.dar);
max.poi=Math.max(max.poi,a.poi);
max.psn=Math.max(max.psn,a.psn);
max.ble=Math.max(max.ble,a.ble);
max.pet=Math.max(max.pet,a.pet);
max.cur=Math.max(max.cur,a.cur);
}
return max;
}
function addcombos() {
var a = addcombos.arguments;
var c = clone(a[0]);
for(var i=1; i<a.length; ++i) {
c.phy+=a[i].phy;
c.mag+=a[i].mag;
c.fir+=a[i].fir;
c.lig+=a[i].lig;
c.dar+=a[i].dar;
c.poi+=a[i].poi;
c.psn+=a[i].psn;
c.ble+=a[i].ble;
c.pet+=a[i].pet;
c.cur+=a[i].cur;
}
return c;
}
function optimize() {
var pool = {}
var equiv=[]
var head = selectfromarr(armory.head, getselected(document.input.head));
var ches = selectfromarr(armory.ches, getselected(document.input.ches));
var gaun = selectfromarr(armory.gaun, getselected(document.input.gaun));
var legs = selectfromarr(armory.legs, getselected(document.input.legs));
var max4 = findmax(armory.legs);
var max34 = addcombos(max4, findmax(armory.gaun));
var max234 = addcombos(max34, findmax(armory.ches));
var maxv = null; //makecombo(findmax(armory.head),findmax(armory.ches),findmax(armory.gaun),findmax(armory.legs));
var maxweight = parseInt(document.input.maxweight.value);
var maxupgrade = 10;
var objfn = getobjfn(maxv);
var minfn = getminfn();
var maxcount = parseInt(document.input.maxitems.value);
var count = 0;
var worst = 0;
var besta4value = max(legs, objfn);
var besta34value = besta4value + max(gaun, objfn);
var besta234value = besta34value + max(ches, objfn);
for(var hi = 0; hi<head.length; ++hi) {
var a1 = head[hi];
if(a1.upg > maxupgrade) continue;
if(a1.wei > maxweight) continue;
var a1value = objfn(a1);
if(a1value + besta234value < worst) continue;
if(!minfn(addcombos(a1, max234))) continue;
for(var ci = 0; ci<ches.length; ++ci) {
var a2 = ches[ci];
if(a2.upg > maxupgrade) continue;
if(a1.wei + a2.wei > maxweight) continue;
var a12value = a1value + objfn(a2);
if(a12value + besta34value < worst) continue;
if(!minfn(addcombos(a1, a2, max34))) continue;
for(var gi = 0; gi<gaun.length; ++gi) {
var a3 = gaun[gi];
if(a3.upg > maxupgrade) continue;
if(a1.wei + a2.wei + a3.wei > maxweight) continue;
var a123value = a12value + objfn(a3);
if(a123value + besta4value < worst) continue;
if(!minfn(addcombos(a1, a2, a3, max4))) continue;
for(var li = 0; li<legs.length; ++li) {
var a4 = legs[li];
if(a4.upg > maxupgrade) continue;
var weight = a1.wei + a2.wei + a3.wei + a4.wei;
if(weight > maxweight) continue;
var value = a123value + objfn(a4);
if(value < worst) continue;
var ac = makecombo(a1,a2,a3,a4);
var v = minfn(ac);
if(!v) continue;
ac.value = value;
equiv.push(ac);
if(equiv.length>maxcount*10) {
equiv.sort(function(x,y) { return x.value-y.value; } );
equiv = equiv.slice(equiv.length-maxcount,equiv.length);
worst = equiv[0].value;
}
}
}
}
}
showresults(equiv);
}
var custom=null;
var usecustom=false;
var results=[];
var sticky=[];
function updateresults() {
var table = document.getElementById("output");
while(table.childNodes.length>1) table.removeChild(table.lastChild);
if(usecustom && custom != null) {
addarmorrow(table, custom, -1, 'c');
}
for(var i=0; i<sticky.length; ++i) {
addarmorrow(table, sticky[i], i, 'y');
}
for(var i=0; i<results.length; ++i) {
addarmorrow(table, results[i], i, 'n');
}
}
function showresults(equiv) {
equiv.sort(function(x,y) { return y.value-x.value; } );
var maxcount = parseInt(document.input.maxitems.value);
if(equiv.length > maxcount) equiv = equiv.slice(0, maxcount);
results = equiv;
updateresults();
}
function _txt(text) { return document.createTextNode(text); }
function _a(href, text, title) {
var an = document.createElement("a");
an.setAttribute("href",href);
an.setAttribute("title",title);
an.appendChild(document.createTextNode(text));
return an;
}
function updateRow() {
var head = selectfromarr(armory.head, getselected(document.input.head));
var ches = selectfromarr(armory.ches, getselected(document.input.ches));
var gaun = selectfromarr(armory.gaun, getselected(document.input.gaun));
var legs = selectfromarr(armory.legs, getselected(document.input.legs));
if(head.length==0) head.push(armory.head[0]);
if(ches.length==0) ches.push(armory.ches[0]);
if(gaun.length==0) gaun.push(armory.gaun[0]);
if(legs.length==0) legs.push(armory.legs[0]);
custom = makecombo(head[0], ches[0], gaun[0], legs[0]);
save();
updateresults();
}
function removefromarr(arr, index) {
for(var i=index; i<arr.length-1; ++i) arr[i]=arr[i+1];
arr.pop();
}
function disableArmor(type, index) {
var sel;
if(type=='h') sel=document.input.head;
else if(type=='c') sel=document.input.ches;
else if(type=='g') sel=document.input.gaun;
else if(type=='l') sel=document.input.legs;
for(var i=0; sel.length; ++i) {
if(sel.options[i].value==index) {
sel.options[i].selected = false;
break;
}
}
optimize();
}
function makeSticky(index, stick) {
if(stick) {
if(index==-1) {
sticky.push(custom);
custom=null;
} else {
sticky.push(results[index]);
removefromarr(results,index);
}
} else {
if(index==-1) custom=null;
else {
removefromarr(sticky,index);
}
}
save();
updateresults();
}
function comboToString(c) {
return ""+c.head.index+"q"+c.ches.index+"q"+c.gaun.index+"q"+c.legs.index;
}
function stringToCombo(s) {
var sa=s.split("q");
return makecombo(
armory.head[parseInt(sa[0])],
armory.ches[parseInt(sa[1])],
armory.gaun[parseInt(sa[2])],
armory.legs[parseInt(sa[3])]);
}
function save() {
var date = new Date();
date.setTime(date.getTime()+(365*24*60*60*1000));
var val=""
if(custom!=null) {
val+="c";
val+=comboToString(custom)+"w";
}
for(var i=0; i<sticky.length; ++i) {
val+=comboToString(sticky[i])+"w";
}
document.cookie = "state="+val+"; expires="+date.toGMTString()+"; path=/";
}
function load() {
var val=document.cookie;
if(!val) return;
var s0=val.split(";");
sticky=[];
for(var i=0; i<s0.length; ++i) {
if(s0[i].match(/^ *state=/)) {
var sets=s0[i].split("=")[1].split("w");
for(var j=0; j<sets.length && sets[j]; ++j) {
if(sets[j][0]=='c') {
custom=stringToCombo(sets[j].substring(1))
} else {
sticky.push(stringToCombo(sets[j]));
}
}
}
}
updateresults();
}
function addToCustomSet(type, index) {
if(custom==null) {
custom = makecombo(armory.head[0],armory.ches[0],armory.gaun[0],armory.legs[0]);
}
if(type=='h') custom = makecombo(armory.head[index],custom.ches,custom.gaun,custom.legs);
else if(type=='c') custom = makecombo(custom.head,armory.ches[index],custom.gaun,custom.legs);
else if(type=='g') custom = makecombo(custom.head,custom.ches,armory.gaun[index],custom.legs);
else if(type=='l') custom = makecombo(custom.head,custom.ches,custom.gaun,armory.legs[index]);
save();
updateresults();
}
var classes=["rsticky", "rname rhead","rname rches","rname rgaun","rname rlegs","rwei","rphy","rstr","rsla","rpie","rmag","rfir","rlig","rdar","rpoi","rpsn","rble","rpet","rcur","rvalue"];
function addarmorrow(table, a, index, sticky) {
table.appendChild(makearmorrow(a,index,sticky));
}
function makearmorrow(a, index, sticky) {
var r=[0, a.head, a.ches, a.gaun, a.legs, a.wei, a.phy, a.str, a.sla, a.pie, a.mag, a.fir, a.lig, a.dar, a.poi, a.psn, a.ble, a.pet, a.cur];
for(var k=5; k<r.length;++k) if(typeof(r[k])=="number") r[k] = r[k].toFixed(1);
var tr = document.createElement("tr");
for(var i=0; i<r.length; ++i) {
var td = document.createElement("td");
td.setAttribute("class",classes[i]);
if(i == 0) {
if(sticky=='n' || sticky=='c') {
td.appendChild(_a("javascript:makeSticky("+index+",true)","[ ]","make sticky"));
} else if(sticky=='y') {
td.appendChild(_a("javascript:makeSticky("+index+",false)","[*]","unsticky"));
}
} else if(i >= 5) {
td.setAttribute("align", "right");
td.appendChild(_txt(r[i]));
}
else {
var ar = r[i];
if(usecustom) {
td.appendChild(_a("javascript:addToCustomSet('"+ar.typ+"', "+ar.index+")",ar.disp,"click to add to custom set"));
td.appendChild(_txt(" ["));
} else {
td.appendChild(_txt(ar.disp+" ["));
}
td.appendChild(_a("javascript:disableArmor('"+ar.typ+"', "+ar.index+")","x","disable "+ar.disp));
td.appendChild(_txt("]"));
if(sticky=='y') {
td.setAttribute("class","s"+classes[i]);
} else if(sticky=='c') {
td.setAttribute("class","c"+classes[i]);
if(ar.index!=0) {
td.appendChild(_txt(" ["));
td.appendChild(_a("javascript:addToCustomSet('"+ar.typ+"', 0)","none","remove"));
td.appendChild(_txt("]"));
}
}
}
tr.appendChild(td);
}
return tr;
}
</script>
</head>
<body onload="init()">
<h1>Dark Souls II Armor Calculator <i>β</i></h1>
<p class="info">
<b>Quickstart:</b> Adjust <span class="restriction">max burden</span> on the right, then hit "run". Remove (CTRL-click) armor pieces you don't want to be considered from the four lists below, or via the <tt>[<a href="#">x</a>]</tt> link next to an armor piece in the results list.
</p>
<form name="input" action="javascript:optimize()">
<table>
<tr>
<td>enabled head armor<br/><select id="head" name="head" size=20 multiple/></td>
<td>enabled chest armor<br/><select id="ches" name="ches" size=20 multiple/></td>
<td>enabled hand armor<br/><select id="gaun" name="gaun" size=20 multiple/></td>
<td>enabled foot armor<br/><select id="legs" name="legs" size=20 multiple/></td>
<td>
<table>
<tr><td/><td class="weight"><span class="weightinfo" title="relative importance of each stat">weight</span></td><td class="minim">minimum</td></tr>
<tr><td class="stat">physical</td>
<td><input class="weight" name="wphy" type="text" maxlength="6" size="3" value="1"/></td>
<td><input class="minim" name="mphy" type="text" maxlength="6" size="3" value="0"/>
<span class="maxinfo" title="maximum possible physical defense">1038.0</span></td></tr>
<tr><td class="stat">magic</td>
<td><input class="weight" name="wmag" type="text" maxlength="6" size="3" value="0"/></td>
<td><input class="minim" name="mmag" type="text" maxlength="6" size="3" value="0"/>
<span class="maxinfo" title="maximum possible magic defense">340.0</span></td></tr>
<tr><td class="stat">fire</td>