-
Notifications
You must be signed in to change notification settings - Fork 10
/
items.json
26754 lines (26754 loc) · 594 KB
/
items.json
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
[
{
"id": "I0LZ",
"name": "Mystical Materials",
"koreanname": "미지의 재료",
"description": "Unknown materials that are not yet revealed",
"rank": "none",
"grade": 0,
"type": "Material",
"color": "A52A2A",
"required_by": []
},
{
"id": "I0B9",
"name": "Tomato",
"koreanname": "토마토",
"description": "Tomato. Tasty!",
"rank": "none",
"grade": 0,
"type": "Food",
"color": "A52A2A",
"required_by": [
"Fruit Candy Pouch"
],
"stats": {
"active": [
"Increases EXP gain by 15% for 10 minutes"
]
}
},
{
"id": "I0BB",
"name": "Pumpkin",
"koreanname": "호박",
"description": "Pumpkin, good for your health.",
"rank": "none",
"grade": 0,
"type": "Food",
"color": "A52A2A",
"stats": {
"active": [
"Restores HP & MP by 30%"
]
}
},
{
"id": "I04V",
"name": "Blue Magic Stone",
"koreanname": "블루 매직 스톤",
"description": "Resource used to summon various bosses..",
"notes": [
"Where to obtain: Frosty Snowfield"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"required_by": [
"Key of Sea"
]
},
{
"id": "I04U",
"name": "White Magic Stone",
"koreanname": "화이트 매직 스톤",
"description": "Resource used to summon various bosses..",
"notes": [
"Where to obtain: Lands of Wallachia"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"required_by": [
"Key of Storm"
]
},
{
"id": "I04X",
"name": "Red Magic Stone",
"koreanname": "레드 매직 스톤",
"description": "Resource used to summon various bosses..",
"notes": [
"Where to obtain: Volcanic Lands"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"required_by": [
"Key of Flame"
]
},
{
"id": "I04W",
"name": "Green Magic Stone",
"koreanname": "그린 매직 스톤",
"description": "Resource used to summon various bosses..",
"notes": [
"Where to obtain: Fairy Forest"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA"
},
{
"id": "I0IO",
"name": "Chaos Magic Stone",
"koreanname": "카오스 매직 스톤",
"description": "Resource used to summon various bosses..",
"notes": [
"Where to obtain: Spirit of Chaos"
],
"dropped_by": [
"Elemental of Chaos"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"droprate": 0.12,
"required_by": [
"Key of Storm",
"Key of Flame",
"Key of Sea"
]
},
{
"id": "I0RU",
"name": "Storage Expansion Coupon",
"koreanname": "창고 확장권",
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"recipe": [
{
"Coin of Effort": 2
}
],
"stats": {
"active": [
"Expands your storage by 1 slot",
"Can only be used up to 6 times"
]
}
},
{
"id": "I01E",
"name": "Lucky Acorn",
"koreanname": "행운의 도토리",
"dropped_by": [
"Tutorial",
"Shop"
],
"rank": "[Normal]",
"grade": 0,
"type": "Accessory",
"color": "AFAFAF",
"level": 1,
"required_by": [
"Acorn Bomb",
"Master Icon"
],
"stats": {
"hpregen": 5
}
},
{
"id": "I011",
"name": "Flame Fairy Stone",
"koreanname": "불의 요정석",
"dropped_by": [
"Tutorial"
],
"rank": "[Magic]",
"grade": 0,
"type": "Material",
"color": "FFFFFF",
"required_by": [
"Acorn Bomb"
]
},
{
"id": "I08Q",
"name": "Pickaxe",
"koreanname": "녹슨 마법 곡괭이",
"dropped_by": [
"Shop"
],
"rank": "[Normal]",
"grade": 0,
"type": "Pickaxe",
"color": "AFAFAF",
"required_by": [
"Mithril Pickaxe"
],
"stats": {
"active": [
"Mining Speed: Once every 10 seconds"
]
}
},
{
"id": "I009",
"name": "Silver Fang",
"koreanname": "은빛 송곳니",
"dropped_by": [
"Silverback Wolf"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Shared)",
"color": "AFC3FF",
"level": 5,
"droprate": 1,
"required_by": [
"Bloody Fang"
],
"stats": {
"damage": 50,
"mainstat": 20,
"critchancepercent": 0.1,
"passive": [
"On attack, restores 10 HP"
]
}
},
{
"id": "I00P",
"name": "Silverfang Vest",
"koreanname": "은빛가죽 갑옷",
"dropped_by": [
"Silverback Wolf"
],
"rank": "[Magic]",
"grade": 0,
"type": "Armor",
"color": "AFC3FF",
"level": 5,
"droprate": 1,
"required_by": [
"Bloody Fang"
],
"stats": {
"armor": 18,
"mainstat": 10,
"hpregen": 3
}
},
{
"id": "I00D",
"name": "Troll Axe",
"koreanname": "트롤 도끼",
"dropped_by": [
"Troll"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Shared)",
"color": "AFAFAF",
"level": 10,
"droprate": 0.02,
"required_by": [
"Berserker Axe"
],
"stats": {
"damage": 70,
"mainstat": 15,
"attackspeedpercent": -0.15
}
},
{
"id": "I00S",
"name": "Troll Battlewear",
"koreanname": "트롤 전투복",
"dropped_by": [
"Troll Shaman"
],
"rank": "[Normal]",
"grade": 0,
"type": "Armor",
"color": "AFAFAF",
"level": 10,
"droprate": 0.03,
"required_by": [
"Berserker Axe"
],
"stats": {
"armor": 20,
"mainstat": 8,
"hp": 100
}
},
{
"id": "I01B",
"name": "Berserker Mask",
"koreanname": "광전사의 가면",
"dropped_by": [
"Troll Berserker"
],
"rank": "[Normal]",
"grade": 0,
"type": "Headwear",
"color": "AFAFAF",
"level": 10,
"droprate": 0.03,
"stats": {
"armor": 10,
"mainstat": 5,
"attackspeedpercent": 0.1
}
},
{
"id": "tbar",
"name": "Bag",
"koreanname": "배낭",
"description": "A Merchant's necessity. It's too heavy for classes other than Merchant to carry.",
"dropped_by": [
"Shop"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Bag)",
"color": "AFAFAF",
"level": 15,
"required_by": [
"Sturdy Bag",
"Silky Bag"
],
"stats": {
"damage": 150,
"str": 20
}
},
{
"id": "I01G",
"name": "Fang Necklace",
"koreanname": "송곳니 목걸이",
"dropped_by": [
"Troll Lord"
],
"rank": "[Magic]",
"grade": 0,
"type": "Accessory",
"color": "AFC3FF",
"level": 20,
"droprate": 0.5,
"stats": {
"mainstat": 10,
"movespeed": 50
}
},
{
"id": "I013",
"name": "Troll Blood",
"koreanname": "트롤의 피",
"dropped_by": [
"Troll Lord"
],
"rank": "[Magic]",
"grade": 0,
"type": "Material",
"color": "FFFFFF",
"droprate": 0.5,
"required_by": [
"Bloody Fang",
"Berserker Axe"
]
},
{
"id": "I00T",
"name": "Forest Armor",
"koreanname": "숲의 갑옷",
"dropped_by": [
"Furbolg"
],
"rank": "[Normal]",
"grade": 0,
"type": "Armor",
"color": "AFAFAF",
"level": 20,
"droprate": 0.03,
"stats": {
"armor": 25,
"str": 12,
"agi": 12
}
},
{
"id": "I0PY",
"name": "Ancient Branch",
"koreanname": "고대의 나뭇가지",
"description": "An ancient branch used for special summoning rituals.",
"dropped_by": [
"Furbolg",
"Furbolg Tracker",
"Furbolg Shaman",
"Furbolg Giant"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"droprate": [
0.05,
0.05,
0.25,
1
],
"required_by": [
"Ancient Leaf Circlet"
]
},
{
"id": "I01C",
"name": "Forest Helm",
"koreanname": "숲의 투구",
"dropped_by": [
"Furbolg Tracker"
],
"rank": "[Normal]",
"grade": 0,
"type": "Headwear",
"color": "AFAFAF",
"level": 20,
"droprate": 0.03,
"stats": {
"armor": 12,
"allstat": 8
}
},
{
"id": "I01F",
"name": "Forest Robe",
"koreanname": "숲의 로브",
"dropped_by": [
"Furbolg Shaman"
],
"rank": "[Normal]",
"grade": 0,
"type": "Armor",
"color": "AFAFAF",
"level": 20,
"droprate": 0.09,
"stats": {
"armor": 18,
"int": 18,
"mp": 100
}
},
{
"id": "I0DW",
"name": "Wings of Nature",
"koreanname": "자연의 날개",
"dropped_by": [
"Protector of Nature"
],
"rank": "[Magic]",
"grade": 0,
"type": "Wings",
"color": "AFC3FF",
"level": 20,
"droprate": 0.33,
"required_by": [
"Wing of Sea"
],
"stats": {
"allstat": 15,
"expgainpercent": 0.1,
"active": [
"On use, creates a portal that connects to Alfon Village"
]
}
},
{
"id": "I016",
"name": "Ancient Leaf",
"koreanname": "고대의 나뭇잎",
"color": "FFFFFF",
"droprate": 0.33,
"rank": "[Magic]",
"grade": 0,
"type": "Material",
"dropped_by": [
"Protector of Nature"
],
"required_by": [
"Ancient Leaf Circlet"
]
},
{
"id": "I00B",
"name": "Ancient Tree Sword",
"koreanname": "고대 나무 검",
"dropped_by": [
"Protector of Nature"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Melee)",
"color": "AFC3FF",
"level": 20,
"droprate": 0.33,
"stats": {
"damage": 200,
"mainstat": 30,
"active": [
"On attack, 8% chance to activate Force Blast",
"Deals 500 magic damage in an AoE"
]
}
},
{
"id": "I00E",
"name": "Ancient Tree Staff",
"koreanname": "고대 나무 지팡이",
"dropped_by": [
"Protector of Nature"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Staff)",
"color": "AFC3FF",
"level": 20,
"droprate": 0.33,
"stats": {
"damage": 140,
"int": 40,
"active": [
"On use, activates Chain Lightning",
"Deals 4000 magic damage up to 6 targets",
"Cooldown: 15 seconds"
]
}
},
{
"id": "I0AJ",
"name": "Ancient Tree Bow",
"koreanname": "고대 나무 활",
"dropped_by": [
"Protector of Nature"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Bow)",
"color": "AFC3FF",
"level": 20,
"droprate": 0.33,
"stats": {
"damage": 170,
"agi": 35,
"active": [
"On attack, chance to activate Force Blast",
"Deals 500 magic damage in an AoE"
]
}
},
{
"id": "I00I",
"name": "Ancient Tree Rifle",
"koreanname": "고대 나무 라이플",
"dropped_by": [
"Protector of Nature"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Gun)",
"color": "AFC3FF",
"level": 20,
"droprate": 0.33,
"stats": {
"damage": 170,
"agi": 35,
"active": [
"On attack, chance to activate Force Blast",
"Deals 500 magic damage in an AoE"
]
}
},
{
"id": "pclr",
"name": "Green Crystal Golem Token",
"koreanname": "그린 크리스탈 골렘 토큰",
"dropped_by": [
"Protector of Nature"
],
"rank": "none",
"grade": 0,
"type": "Token",
"color": "DAA520",
"droprate": 0.02,
"required_by": [
"Rainbow Crystal Golem Token"
]
},
{
"id": "I02M",
"name": "Deep Sword",
"koreanname": "딥 소드",
"dropped_by": [
"White Murloc",
"Green Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Melee)",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"damage": 150,
"mainstat": 20
}
},
{
"id": "I038",
"name": "Deep Staff",
"koreanname": "딥 스태프",
"dropped_by": [
"White Murloc",
"Orange Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Staff)",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"damage": 90,
"int": 30
}
},
{
"id": "I09B",
"name": "Deep Bow",
"koreanname": "딥 보우",
"dropped_by": [
"Green Murloc",
"Orange Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Bow)",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"damage": 120,
"agi": 25
}
},
{
"id": "I0EU",
"name": "Deep Rifle",
"koreanname": "딥 라이플",
"dropped_by": [
"Green Murloc",
"Orange Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Gun)",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"damage": 120,
"agi": 25
}
},
{
"id": "I03B",
"name": "Deep Armor",
"koreanname": "딥 아머",
"dropped_by": [
"Blue Murloc",
"Purple Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Armor",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"armor": 32,
"str": 17,
"agi": 17
}
},
{
"id": "I039",
"name": "Deep Robe",
"koreanname": "딥 로브",
"dropped_by": [
"Blue Murloc",
"Purple Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "Armor",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"armor": 22,
"int": 22,
"mp": 150
}
},
{
"id": "I03C",
"name": "Deep Helm",
"koreanname": "딥 헬멧",
"dropped_by": [
"Blue Murloc",
"Purple Murloc"
],
"rank": "[Normal]",
"grade": 0,
"type": "headwear",
"color": "AFAFAF",
"level": 30,
"droprate": 0.01,
"stats": {
"armor": 15,
"mainstat": 10
}
},
{
"id": "vddl",
"name": "Hard Turtle Shell",
"koreanname": "터틀의 단단한 등껍질",
"dropped_by": [
"Dragon Turtle"
],
"rank": "[Magic]",
"grade": 0,
"type": "Wings",
"color": "AFC3FF",
"level": 30,
"droprate": 0.4,
"required_by": [
"Sturdy Bag"
],
"stats": {
"armor": 15,
"hp": 500,
"hpregen": 10
}
},
{
"id": "I0Q3",
"name": "Black Pearl",
"koreanname": "흑진주",
"dropped_by": [
"Dragon Turtle"
],
"rank": "[Magic]",
"grade": 0,
"type": "Material",
"color": "FFFFFF",
"droprate": 0.4,
"required_by": [
"Silky Bag",
"Wing of Sea"
]
},
{
"id": "srrc",
"name": "Magical Horn",
"koreanname": "마법의 뿔피리",
"description": "You can hear a rumbling inside.. maybe you should blow it.",
"dropped_by": [
"Dragon Turtle",
"Purple Murloc",
"Blue Murloc",
"Orange Murloc",
"Green Murloc",
"White Murloc"
],
"rank": "none",
"grade": 0,
"type": "Misc",
"color": "D8C1BA",
"notes": [
"Droprate increases every 5 minutes that it does not drop"
],
"stats": {
"active": [
"Summons a field boss"
]
}
},
{
"id": "pmna",
"name": "Shell Sword",
"koreanname": "쉘 소드",
"dropped_by": [
"King Crab"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Melee)",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"required_by": [
"Parasitic Sword"
],
"stats": {
"damage": 400,
"armor": 15,
"str": 30,
"agi": 40,
"passive": [
"25% chance to deal splash damage on attack"
]
}
},
{
"id": "spsh",
"name": "Crab Armor",
"koreanname": "크랩 아머",
"dropped_by": [
"King Crab"
],
"rank": "[Magic]",
"grade": 0,
"type": "Armor",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"required_by": [
"Infected Crab Armor"
],
"stats": {
"armor": 40,
"str": 25,
"agi": 20,
"passive": [
"Reflects 300 magic damage when attacked"
]
}
},
{
"id": "ciri",
"name": "Sea Jewel",
"koreanname": "바다의 진주",
"dropped_by": [
"King Crab"
],
"rank": "[Magic]",
"grade": 0,
"type": "Accessory",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"required_by": [
"Wing of Sea"
],
"stats": {
"allstat": 15,
"mpregen": 5,
"active": [
"Calls a refreshing wave upon use",
"Heals allies for 3000 HP",
"Deals (MAIN STAT X 3.75) + 500 magic damage to enemies",
"Cooldown: 120 seconds"
]
}
},
{
"id": "I0DS",
"name": "Ivory Cane",
"koreanname": "상아 지팡이",
"dropped_by": [
"Walrus"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Staff)",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"stats": {
"damage": 280,
"int": 60,
"attackspeedpercent": 0.1,
"passive": [
"On attack, deals 300 bonus magic damage"
]
}
},
{
"id": "wneg",
"koreanname": "터스크 헌터",
"name": "Tusk Hunter",
"dropped_by": [
"Walrus"
],
"rank": "[Magic]",
"grade": 0,
"type": "Weapon (Gun)",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"required_by": [
"Beast Hunter"
],
"stats": {
"damage": 340,
"agi": 50,
"int": 25,
"attackspeedpercent": 0.15
}
},
{
"id": "I0DT",
"name": "Walrus Skin Cloak",
"koreanname": "코끼리 가죽 망토",
"dropped_by": [
"Walrus"
],
"rank": "[Magic]",
"grade": 0,
"type": "Wings",
"color": "AFC3FF",
"level": 30,
"droprate": 1,
"required_by": [
"Wing of Sea"
],
"stats": {
"allstat": 20,
"hpregen": 5
}
},
{
"id": "I03K",
"name": "Frosty Sword",
"koreanname": "혹한의 검",
"dropped_by": [
"Ice Troll"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Melee)",
"color": "AFAFAF",
"level": 40,
"droprate": 0.01,
"stats": {
"damage": 250,
"mainstat": 30
}
},
{
"id": "I03H",
"name": "Frosty Staff",
"koreanname": "혹한의 지팡이",
"dropped_by": [
"Ice Troll"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Melee)",
"color": "AFAFAF",
"level": 40,
"droprate": 0.01,
"stats": {
"damage": 150,
"int": 45
}
},
{
"id": "I09H",
"name": "Frosty Bow",
"koreanname": "혹한의 활",
"dropped_by": [
"Ice Troll Priest"
],
"rank": "[Normal]",
"grade": 0,
"type": "Weapon (Bow)",
"color": "AFAFAF",
"level": 40,
"droprate": 0.01,
"stats": {
"damage": 200,
"agi": 38
}
},
{
"id": "I0EW",
"name": "Frosty Rifle",
"koreanname": "혹한의 라이플",
"dropped_by": [