forked from apoguita/Py4GW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweapon_mods.json
More file actions
5087 lines (5075 loc) · 145 KB
/
weapon_mods.json
File metadata and controls
5087 lines (5075 loc) · 145 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
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
{
"\"Be Just and Fear Not\"": {
"Identifier": "\"Be Just and Fear Not\"",
"Descriptions": {
"English": "Armor +{arg2} (while Hexed)"
},
"Names": {
"English": "\"Be Just and Fear Not\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8648,
"Arg1": 0,
"Arg2": 10,
"Arg": 10,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Cast Out the Unclean\"": {
"Identifier": "\"Cast Out the Unclean\"",
"Descriptions": {
"English": "Reduces Disease duration on you by 20%"
},
"Names": {
"English": "\"Cast Out the Unclean\"",
"German": "\"Gute Besserung!\"",
"Korean": "불결한 건 가랏!",
"French": "\"Au rebut les impurs\"",
"Italian": "\"Esorcizza l'Eresia\"",
"Spanish": "\"Desterremos a los impuros\"",
"TraditionalChinese": "\"驅除不潔\"",
"Japanese": "キャスト アウト ザ アンクリーン",
"Polish": "\"Wyrzuć nieczystych\"",
"Russian": "\"Изгнать нечистых\"",
"BorkBorkBork": "\"Caest Oooot zee Uncleun\""
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10328,
"Arg1": 5,
"Arg2": 0,
"Arg": 1280,
"ModifierValueArg": "Fixed",
"Min": 0,
"Max": 0
}
]
},
"\"Down But Not Out\"": {
"Identifier": "\"Down But Not Out\"",
"Descriptions": {
"English": "Armor +{arg2} (while Health is below +{arg1}%)"
},
"Names": {
"English": "\"Down But Not Out\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8632,
"Arg1": 50,
"Arg2": 10,
"Arg": 12810,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Faith is My Shield\"": {
"Identifier": "\"Faith is My Shield\"",
"Descriptions": {
"English": "Armor +{arg2} (while Enchanted)"
},
"Names": {
"English": "\"Faith is My Shield\"",
"German": "\"Der Glaube ist mein Schild!\"",
"French": "\"La foi est mon bouclier\"",
"Korean": "신념은 나의 방패다",
"Italian": "\"La Fede è il Mio Scudo\"",
"Spanish": "\"La fe es mi escudo\"",
"TraditionalChinese": "\"信念是盾\"",
"Polish": "\"Wiara jest mą tarczą\"",
"Russian": "\"Вера послужит мне щитом\"",
"BorkBorkBork": "\"Faeeet is My Sheeeld\"",
"Japanese": "フェイス イズ マイ シールド"
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8600,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
}
]
},
"\"Fear Cuts Deeper\"": {
"Identifier": "\"Fear Cuts Deeper\"",
"Descriptions": {
"English": "Reduces Bleeding duration on you by 20%"
},
"Names": {
"English": "\"Fear Cuts Deeper\"",
"BorkBorkBork": "\"Feaer Coots Deeper\"",
"Polish": "\"Strach rani głęboko\"",
"Russian": "\"Страх острее бритвы\"",
"German": "\"Die Furcht schneidet tiefer\"",
"TraditionalChinese": "\"戒除恐懼\"",
"Spanish": "\"El miedo hace más daño\"",
"Korean": "공포는 더 깊은 상처를 낸다",
"French": "\"La peur fait plus de mal\"",
"Italian": "\"Il Timore Trafigge\"",
"Japanese": "フィアー カッツ ディーパー"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10328,
"Arg1": 0,
"Arg2": 0,
"Arg": 0,
"ModifierValueArg": "Fixed",
"Min": 0,
"Max": 0
}
]
},
"\"Forget Me Not\"": {
"Identifier": "\"Forget Me Not\"",
"Descriptions": {
"English": "Halves skill recharge of item's attribute spells (Chance: {arg1}%)"
},
"Names": {
"English": "\"Forget Me Not\"",
"BorkBorkBork": "\"Furget Me-a Nut\"",
"Polish": "\"Nie zapomnij mnie\"",
"Russian": "\"Незабудка\"",
"German": "\"Vergesst mein nicht!\"",
"TraditionalChinese": "\"勿忘我\"",
"Spanish": "\"No me olvides\"",
"Korean": "물망초",
"French": "\"Souvenir gravé à jamais\"",
"Italian": "\"Non Ti Scordar di Me\"",
"Japanese": "フォーゲット ミー ノット"
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10280,
"Arg1": 20,
"Arg2": 0,
"Arg": 5120,
"ModifierValueArg": "Arg1",
"Min": 15,
"Max": 20
}
]
},
"\"Hail to the King\"": {
"Identifier": "\"Hail to the King\"",
"Descriptions": {
"English": "Armor +{arg2} (while Health is above +{arg1}%)"
},
"Names": {
"English": "\"Hail to the King\"",
"BorkBorkBork": "\"Haeeel tu zee Keeng\"",
"Polish": "\"Niech żyje król\"",
"Russian": "\"Да здравствует король!\"",
"German": "\"Gelobt sei der König\"",
"TraditionalChinese": "\"與王致敬\"",
"Spanish": "\"Viva el rey\"",
"Korean": "국왕 폐하 만세",
"French": "\"Longue vie au roi\"",
"Italian": "\"Viva il Re\"",
"Japanese": "ヘイル トゥ ザ キング"
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8616,
"Arg1": 50,
"Arg2": 5,
"Arg": 12805,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
}
]
},
"\"I Can See Clearly Now\"": {
"Identifier": "\"I Can See Clearly Now\"",
"Descriptions": {
"English": "Reduces Blind duration on you by 20%"
},
"Names": {
"English": "\"I Can See Clearly Now\"",
"German": "\"Klar wie Morgentau\"",
"Korean": "마력석: 모든 게 뚜렷하게 보인다",
"French": "\"Je vois clair à présent\"",
"Italian": "\"Chiara Come Un'Alba\"",
"Spanish": "\"He abierto los ojos\"",
"TraditionalChinese": "\"光明再現\"",
"Japanese": "アイ キャン シー クリアリー ナウ",
"BorkBorkBork": "\"I Cun See-a Cleaerly Noo\"",
"Polish": "\"Widzę to teraz wyraźnie\"",
"Russian": "\"Теперь я ясно вижу\""
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10328,
"Arg1": 1,
"Arg2": 0,
"Arg": 256,
"ModifierValueArg": "Fixed",
"Min": 0,
"Max": 0
}
]
},
"\"Ignorance is Bliss\"": {
"Identifier": "\"Ignorance is Bliss\"",
"Descriptions": {
"English": "Armor +{arg2[8456]}\nEnergy -{arg2[8376]}"
},
"Names": {
"English": "\"Ignorance is Bliss\"",
"BorkBorkBork": "\"Ignurunce-a is Bleess\"",
"Polish": "\"Ignorancja jest błogosławieństwem\"",
"Russian": "\"Счастлив в неведении\"",
"German": "\"Was ich nicht weiß ...\"",
"TraditionalChinese": "\"傻人有傻福\"",
"Spanish": "\"La ignorancia es felicidad\"",
"Korean": "모르는 게 약이다",
"French": "\"Il vaut mieux ne pas savoir\"",
"Italian": "\"Benedetta Ignoranza\"",
"Japanese": "イグノーランス イズ ブリス"
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8456,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
},
{
"Identifier": 8376,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Fixed",
"Min": 5,
"Max": 5
}
]
},
"\"Knowing is Half the Battle\"": {
"Identifier": "\"Knowing is Half the Battle\"",
"Descriptions": {
"English": "Armor +{arg2} (while casting)"
},
"Names": {
"English": "\"Knowing is Half the Battle\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8584,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Fixed",
"Min": 5,
"Max": 5
}
]
},
"\"Leaf on the Wind\"": {
"Identifier": "\"Leaf on the Wind\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Cold damage)"
},
"Names": {
"English": "\"Leaf on the Wind\"",
"BorkBorkBork": "\"Leaeff oon zee Veend\"",
"Polish": "\"Liść na wietrze\"",
"Russian": "\"Лист на ветру\"",
"German": "\"Grashalm im Wind\"",
"TraditionalChinese": "\"風中之葉\"",
"Spanish": "\"Hoja en el viento\"",
"Korean": "바람에 떠다니는 나뭇잎",
"French": "\"La feuille portée par le vent\"",
"Italian": "\"Foglia nel Vento\"",
"Japanese": "リーフ オン ザ ウインド"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 41240,
"Arg1": 3,
"Arg2": 10,
"Arg": 778,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Let the Memory Live Again\"": {
"Identifier": "\"Let the Memory Live Again\"",
"Descriptions": {
"English": "Halves skill recharge of spells (Chance: {arg1}%)"
},
"Names": {
"English": "\"Let the Memory Live Again\"",
"German": "\"Auf die Erinnerung!\"",
"Korean": "기억이여, 되살아나라",
"French": "\"Vers l'infini et au-delà\"",
"Italian": "\"Facciamo Rivivere i Ricordi\"",
"Spanish": "\"Que vuelvan los recuerdos\"",
"TraditionalChinese": "\"記憶復甦\"",
"Japanese": "レット ザ メモリー リブ アゲイン",
"Polish": "\"Niech pamięć ponownie ożyje\"",
"Russian": "\"Пусть оживут воспоминания\"",
"BorkBorkBork": "\"Let zee Memury Leefe-a Aegaeeen\""
},
"ModType": "Inherent",
"TargetTypes": [
"MartialWeapon"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 9128,
"Arg1": 10,
"Arg2": 0,
"Arg": 2560,
"ModifierValueArg": "Arg1",
"Min": 5,
"Max": 10
}
]
},
"\"Life is Pain\"": {
"Identifier": "\"Life is Pain\"",
"Descriptions": {
"English": "Armor +{arg2[8456]}\nHealth -{arg2[8408]}"
},
"Names": {
"English": "\"Life is Pain\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8456,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
},
{
"Identifier": 8408,
"Arg1": 0,
"Arg2": 20,
"Arg": 20,
"ModifierValueArg": "Fixed",
"Min": 20,
"Max": 20
}
]
},
"\"Like a Rolling Stone\"": {
"Identifier": "\"Like a Rolling Stone\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Earth damage)"
},
"Names": {
"English": "\"Like a Rolling Stone\"",
"BorkBorkBork": "\"Leeke-a a Rulleeng Stune-a\"",
"Polish": "\"Jak wędrowiec\"",
"Russian": "\"Как перекати-поле\"",
"German": "\"Marmor, Stein und Erde bricht\"",
"TraditionalChinese": "\"漂泊者\"",
"Spanish": "\"Like a Rolling Stone\"",
"Korean": "구르는 돌처럼",
"French": "\"Solide comme le roc\"",
"Italian": "\"Come Una Pietra Scalciata\"",
"Japanese": "ライク ア ローリング ストーン"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 41240,
"Arg1": 11,
"Arg2": 10,
"Arg": 2826,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Live for Today\"": {
"Identifier": "\"Live for Today\"",
"Descriptions": {
"English": "Energy +{arg2[8920]}\nEnergy regeneration -{arg2[8392]}"
},
"Names": {
"English": "\"Live for Today\"",
"BorkBorkBork": "\"Leefe-a fur Tudaey\"",
"Polish": "\"Żyj dniem dzisiejszym\"",
"Russian": "\"Живи сегодняшним днем\"",
"German": "\"Lebt den Tag\"",
"TraditionalChinese": "\"活在當下\"",
"Spanish": "\"Vive el presente\"",
"Korean": "오늘을 위해 최선을",
"French": "\"Aujourd'hui, la vie\"",
"Italian": "\"Vivi alla Giornata\"",
"Japanese": "リブ フォー トゥデイ"
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8920,
"Arg1": 0,
"Arg2": 15,
"Arg": 15,
"ModifierValueArg": "Arg2",
"Min": 10,
"Max": 15
},
{
"Identifier": 8392,
"Arg1": 0,
"Arg2": 1,
"Arg": 1,
"ModifierValueArg": "Fixed",
"Min": 1,
"Max": 1
}
]
},
"\"Luck of the Draw\"": {
"Identifier": "\"Luck of the Draw\"",
"Descriptions": {
"English": "Received physical damage -{arg2} (Chance: {arg1}%)"
},
"Names": {
"English": "\"Luck of the Draw\"",
"German": "\"Glück im Spiel ...\"",
"Spanish": "\"La suerte del apostante\"",
"Korean": "비김의 행운",
"French": "\"Une question de chance\"",
"Italian": "\"La Fortuna è Cieca\"",
"TraditionalChinese": "\"全憑運氣\"",
"Japanese": "ラック オブ ザ ドロー",
"Polish": "\"Szczęśliwe rozdanie\"",
"Russian": "\"Счастливый жребий\"",
"BorkBorkBork": "\"Loock ooff zee Draev\""
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8312,
"Arg1": 20,
"Arg2": 5,
"Arg": 5125,
"ModifierValueArg": "Arg1",
"Min": 11,
"Max": 20
}
]
},
"\"Man for All Seasons\"": {
"Identifier": "\"Man for All Seasons\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Elemental damage)"
},
"Names": {
"English": "\"Man for All Seasons\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8488,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
}
]
},
"\"Master of My Domain!\"": {
"Identifier": "\"Master of My Domain!\"",
"Descriptions": {
"English": "Item's attribute +1 (Chance: {arg1}%)"
},
"Names": {
"English": "\"Master of My Domain!\"",
"German": "\"Herr in meinem Haus\"",
"Korean": "마력석: 내 공간의 지배자",
"French": "\"Maître du Domaine\"",
"Italian": "\"Padrone in Casa Mia\"",
"Spanish": "\"Amo de mi reino\"",
"TraditionalChinese": "\"這是我的地盤!\"",
"Japanese": "マスター オブ マイ ドメイン",
"Polish": "\"Pan mego królestwa\"",
"Russian": "\"Я сам себе хозяин\"",
"BorkBorkBork": "\"Maester ooff My Dumaeeen\""
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10296,
"Arg1": 20,
"Arg2": 0,
"Arg": 5120,
"ModifierValueArg": "Arg1",
"Min": 11,
"Max": 20
}
]
},
"\"Measure for Measure\"": {
"Identifier": "\"Measure for Measure\"",
"Descriptions": {
"English": "Highly salvageable"
},
"Names": {
"English": "\"Measure for Measure\"",
"BorkBorkBork": "\"Meaesoore-a fur Meaesoore-a\"",
"Polish": "\"Miarka za miarkę\"",
"Russian": "\"Око за око\"",
"German": "\"Maß für Maß\"",
"TraditionalChinese": "\"以牙還牙\"",
"Spanish": "\"Ojo por ojo\"",
"Korean": "다다익선",
"French": "\"Mesure pour mesure.\"",
"Italian": "\"Occhio per Occhio\"",
"Japanese": "メジャー フォー メジャー"
},
"ModType": "Inherent",
"TargetTypes": [
"EquippableItem"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 9736,
"Arg1": 0,
"Arg2": 30,
"Arg": 30,
"ModifierValueArg": "None_",
"Min": 0,
"Max": 100
}
]
},
"\"Might Makes Right\"": {
"Identifier": "\"Might Makes Right\"",
"Descriptions": {
"English": "Armor +{arg2} (while attacking)"
},
"Names": {
"English": "\"Might Makes Right\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8568,
"Arg1": 0,
"Arg2": 5,
"Arg": 5,
"ModifierValueArg": "Arg2",
"Min": 4,
"Max": 5
}
]
},
"\"Not the Face!\"": {
"Identifier": "\"Not the Face!\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Blunt damage)"
},
"Names": {
"English": "\"Not the Face!\"",
"BorkBorkBork": "\"Nut zee faece-a!\"",
"Polish": "\"Nie po twarzy!\"",
"Russian": "\"Только не в лицо!\"",
"German": "\"Nicht das Gesicht!\"",
"TraditionalChinese": "\"不要打臉!\"",
"Spanish": "\"¡En la cara no!\"",
"Korean": "얼굴은 안 돼!",
"French": "\"Pas le visage !\"",
"Italian": "\"Non al Volto!\"",
"Japanese": "ノット ザ フェース!"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 41240,
"Arg1": 0,
"Arg2": 10,
"Arg": 10,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Nothing to Fear\"": {
"Identifier": "\"Nothing to Fear\"",
"Descriptions": {
"English": "Received physical damage -{arg2} (while Hexed)"
},
"Names": {
"English": "\"Nothing to Fear\"",
"German": "\"Nichts zu befürchten\"",
"French": "\"Rien à craindre\"",
"Korean": "두려울 건 없다",
"Italian": "\"Niente Paura\"",
"Spanish": "\"Nada que temer\"",
"TraditionalChinese": "\"無畏無懼\"",
"Polish": "\"Nieulękły\"",
"Russian": "\"Нечего бояться\"",
"BorkBorkBork": "\"Nutheeng tu Feaer\"",
"Japanese": "ナッシング トゥ フィアー"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8344,
"Arg1": 0,
"Arg2": 3,
"Arg": 3,
"ModifierValueArg": "Arg2",
"Min": 1,
"Max": 3
}
]
},
"\"Only the Strong Survive\"": {
"Identifier": "\"Only the Strong Survive\"",
"Descriptions": {
"English": "Reduces Weakness duration on you by 20%"
},
"Names": {
"English": "\"Only the Strong Survive\"",
"BorkBorkBork": "\"Oonly zee Strung Soorfeefe-a\"",
"Polish": "\"Tylko silni przetrwają\"",
"Russian": "\"Выживает сильнейший\"",
"German": "\"Nur die Stärksten überleben!\"",
"TraditionalChinese": "\"強者生存\"",
"Spanish": "\"Sólo sobreviven los más fuertes\"",
"Korean": "강자만이 살아남는다",
"French": "\"Seuls les plus forts survivent\"",
"Italian": "\"Superstite è soltanto il Forte\"",
"Japanese": "オンリー ザ ストロング サバイブ"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10328,
"Arg1": 8,
"Arg2": 0,
"Arg": 2048,
"ModifierValueArg": "Fixed",
"Min": 0,
"Max": 0
}
]
},
"\"Pure of Heart\"": {
"Identifier": "\"Pure of Heart\"",
"Descriptions": {
"English": "Reduces Poison duration on you by 20%"
},
"Names": {
"English": "\"Pure of Heart\"",
"BorkBorkBork": "\"Poore-a ooff Heaert\"",
"Polish": "\"Czystość serca\"",
"Russian": "\"Чистые сердцем\"",
"German": "\"Mein Herz ist rein\"",
"TraditionalChinese": "\"純淨之心\"",
"Spanish": "\"Puro de corazón\"",
"Korean": "심장의 깨끗함",
"French": "\"Pureté du coeur\"",
"Italian": "\"Purezza di Cuore\"",
"Japanese": "ピュア オブ ハート"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 10328,
"Arg1": 6,
"Arg2": 0,
"Arg": 1536,
"ModifierValueArg": "Fixed",
"Min": 0,
"Max": 0
}
]
},
"\"Riders on the Storm\"": {
"Identifier": "\"Riders on the Storm\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Lightning damage)"
},
"Names": {
"English": "\"Riders on the Storm\"",
"BorkBorkBork": "\"Reeders oon zee Sturm\"",
"Polish": "\"Jeźdźcy burzy\"",
"Russian": "\"Всадники бури\"",
"German": "\"Geblitzt wird nicht!\"",
"TraditionalChinese": "\"暴風騎士\"",
"Spanish": "\"Jinetes de la tormenta\"",
"Korean": "폭풍의 기수",
"French": "\"Les chevaliers du ciel\"",
"Italian": "\"Viaggiatori nella Burrasca\"",
"Japanese": "ライダー オン ザ ストーム"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 41240,
"Arg1": 4,
"Arg2": 10,
"Arg": 1034,
"ModifierValueArg": "Arg2",
"Min": 5,
"Max": 10
}
]
},
"\"Run For Your Life!\"": {
"Identifier": "\"Run For Your Life!\"",
"Descriptions": {
"English": "Received physical damage -{arg2} (while in a Stance)"
},
"Names": {
"English": "\"Run For Your Life!\"",
"BorkBorkBork": "\"Roon Fur Yuoor Leeffe-a!\"",
"Polish": "\"Ratuj się kto może!\"",
"Russian": "\"Спасайся, кто может!\"",
"German": "\"Rennt um Euer Leben!\"",
"TraditionalChinese": "\"逃命\"",
"Spanish": "\"¡Ponte a salvo!\"",
"Korean": "살기 위해 달려라!",
"French": "\"Sauve-qui-peut !\"",
"Italian": "\"Gambe in Spalla!\"",
"Japanese": "ラン フォー ユア ライフ!"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8360,
"Arg1": 0,
"Arg2": 2,
"Arg": 2,
"ModifierValueArg": "Arg2",
"Min": 1,
"Max": 2
}
]
},
"\"Serenity Now\"": {
"Identifier": "\"Serenity Now\"",
"Descriptions": {
"English": "Halves skill recharge of spells (Chance: {arg1}%)"
},
"Names": {
"English": "\"Serenity Now\"",
"German": "\"Auf die Gelassenheit\"",
"Korean": "평정을 찾아라",
"French": "\"Un peu de sérénité\"",
"Italian": "\"Serenità Immediata\"",
"Spanish": "\"Calma ahora\"",
"TraditionalChinese": "\"平靜\"",
"Japanese": "セレニティ ナウ",
"Polish": "\"Niech nastanie spokój\"",
"Russian": "\"Спокойствие, только спокойствие!\"",
"BorkBorkBork": "\"Sereneety Noo\""
},
"ModType": "Inherent",
"TargetTypes": [
"Offhand"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 9128,
"Arg1": 10,
"Arg2": 0,
"Arg": 2560,
"ModifierValueArg": "Arg1",
"Min": 7,
"Max": 10
}
]
},
"\"Sheltered by Faith\"": {
"Identifier": "\"Sheltered by Faith\"",
"Descriptions": {
"English": "Received physical damage -{arg2} (while Enchanted)"
},
"Names": {
"English": "\"Sheltered by Faith\"",
"German": "\"Vertrauen ist gut\"",
"French": "\"Protégé par la Foi\"",
"Korean": "신념의 보호",
"Italian": "\"Rifugio della Speranza\"",
"Spanish": "\"Fe ciega\"",
"TraditionalChinese": "\"信念守護\"",
"Polish": "\"Chroniony przez wiarę\"",
"Russian": "\"Под защитой веры\"",
"BorkBorkBork": "\"Sheltered by Faeeet\"",
"Japanese": "シェルター バイ フェイス"
},
"ModType": "Inherent",
"TargetTypes": [
"OffhandOrShield"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 8328,
"Arg1": 0,
"Arg2": 2,
"Arg": 2,
"ModifierValueArg": "Arg2",
"Min": 1,
"Max": 2
}
]
},
"\"Show me the money!\"": {
"Identifier": "\"Show me the money!\"",
"Descriptions": {
"English": "Improved sale value"
},
"Names": {
"English": "\"Show me the money!\"",
"BorkBorkBork": "\"Shoo me-a zee muney!\"",
"Polish": "\"Pokaż pieniądze!\"",
"Russian": "\"Покажи мне деньги!\"",
"German": "\"Geld macht glücklich!\"",
"TraditionalChinese": "\"給我錢!\"",
"Spanish": "\"¡Enséñame la pasta!\"",
"Korean": "돈이다!",
"French": "\"Par ici la monnaie !\"",
"Italian": "\"Mostrami la Grana!\"",
"Japanese": "ショー ミー ザ マネー!"
},
"ModType": "Inherent",
"TargetTypes": [
"EquippableItem"
],
"UpgradeExists": true,
"Modifiers": [
{
"Identifier": 9720,
"Arg1": 0,
"Arg2": 47,
"Arg": 47,
"ModifierValueArg": "None_",
"Min": 0,
"Max": 100
}
]
},
"\"Sleep Now in the Fire\"": {
"Identifier": "\"Sleep Now in the Fire\"",
"Descriptions": {
"English": "Armor +{arg2} (vs. Fire damage)"
},
"Names": {
"English": "\"Sleep Now in the Fire\"",
"BorkBorkBork": "\"Sleep Noo in zee Fure-a\"",