-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.json
11261 lines (11261 loc) · 317 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
[
{
"name": "Book of Combos 1",
"rare": 4,
"description": "Intro text for first-tie combiners. Improves your combining success rate.",
"carry-max": 1,
"icon": "book",
"color": "gray",
"selling-price": 100
},
{
"name": "Book of Combos 2",
"rare": 4,
"description": "Basic text. Together with 1, improves your combining success rate.",
"carry-max": 1,
"icon": "book",
"color": "gray",
"selling-price": 200
},
{
"name": "Book of Combos 3",
"rare": 4,
"description": "Intermediate text. Along with 1 & 2, improves your combining success rate.",
"carry-max": 1,
"icon": "book",
"color": "white",
"selling-price": 500
},
{
"name": "Book of Combos 4",
"rare": 5,
"description": "Advanced text. Along with 1, 2, and 3, improves your combining success rate.",
"carry-max": 1,
"icon": "book",
"color": "white",
"selling-price": 1000
},
{
"name": "Book of Combos 5",
"rare": 5,
"description": "Pro text. Along with 1, 2, 3, and 4, improves your combining success rate.",
"carry-max": 1,
"icon": "book",
"color": "yellow",
"selling-price": 1500
},
{
"name": "Alchemy Guide",
"rare": 5,
"description": "With this book, you too can use alchemy. What will you create?",
"carry-max": 1,
"icon": "book",
"color": "yellow",
"selling-price": 2000
},
{
"name": "Potion",
"rare": 1,
"description": "Restores a small amount of Health.",
"carry-max": 10,
"icon": "bottle",
"color": "green",
"selling-price": 7
},
{
"name": "Mega Potion",
"rare": 2,
"description": "Restores a moderate amount of Health.",
"carry-max": 10,
"icon": "bottle",
"color": "green",
"selling-price": 16
},
{
"name": "Nutrients",
"rare": 2,
"description": "Increases the maximum Health level slightly.",
"carry-max": 5,
"icon": "bottle",
"color": "sky",
"selling-price": 25
},
{
"name": "Mega Nutrients",
"rare": 3,
"description": "Medicine that increases the maximum Health level by a small amount.",
"carry-max": 5,
"icon": "bottle",
"color": "sky",
"selling-price": 92
},
{
"name": "Antidote",
"rare": 1,
"description": "Effectively removes all traces of poison from your system.",
"carry-max": 10,
"icon": "bottle",
"color": "blue",
"selling-price": 6
},
{
"name": "Immunizer",
"rare": 3,
"description": "Medicine that enhances natural recovery ability.",
"carry-max": 10,
"icon": "bottle",
"color": "yellow",
"selling-price": 92
},
{
"name": "Power Juice",
"rare": 2,
"description": "Allows you to run without becoming fatigued for a period of time.",
"carry-max": 5,
"icon": "bottle",
"color": "yellow",
"selling-price": 29
},
{
"name": "Mega Juice",
"rare": 3,
"description": "Allows you to run without fatiguing for even longer than Power Juice.",
"carry-max": 5,
"icon": "bottle",
"color": "yellow",
"selling-price": 205
},
{
"name": "Demondrug",
"rare": 4,
"description": "Increases Attack power, bestowing the strength of Asura himself on user.",
"carry-max": 5,
"icon": "bottle",
"color": "red",
"selling-price": 67
},
{
"name": "Mega Demondrug",
"rare": 5,
"description": "Increases Attack power even more than Demondrug.",
"carry-max": 5,
"icon": "bottle",
"color": "red",
"selling-price": 283
},
{
"name": "Power Pill",
"rare": 1,
"description": "A strengthening pill that endows you with the power of a fierce god.",
"carry-max": 5,
"icon": "bag",
"color": "red",
"selling-price": 280
},
{
"name": "Armorskin",
"rare": 4,
"description": "Increases Defense by hardening your skin to stone-like armor.",
"carry-max": 5,
"icon": "bottle",
"color": "orange",
"selling-price": 58
},
{
"name": "Mega Armorskin",
"rare": 5,
"description": "Increases Defense even more than Armorskin.",
"carry-max": 5,
"icon": "bottle",
"color": "orange",
"selling-price": 269
},
{
"name": "Armor Pill",
"rare": 1,
"description": "A pill that temporarily makes your skin as hard as metal.",
"carry-max": 5,
"icon": "bag",
"color": "orange",
"selling-price": 80
},
{
"name": "Cool Drink",
"rare": 1,
"description": "A drink that bestows temporary resistance to extreme heat.",
"carry-max": 5,
"icon": "bottle",
"color": "white",
"selling-price": 30
},
{
"name": "Hot Drink",
"rare": 1,
"description": "A drink that bestows temporary resistance to extreme cold.",
"carry-max": 5,
"icon": "bottle",
"color": "red",
"selling-price": 25
},
{
"name": "Thawing Agent",
"rare": 1,
"description": "A chemical agent that melts away the frozen tundra in the soul.",
"carry-max": 10,
"icon": "bag",
"color": "sky",
"selling-price": 10
},
{
"name": "Psychoserum",
"rare": 3,
"description": "Temporarily activates an ESP-like ability to sense monsters.",
"carry-max": 3,
"icon": "bottle",
"color": "orange",
"selling-price": 30
},
{
"name": "Monster Fluid",
"rare": 4,
"description": "Can be mixed with insect stomach juices to make an adhesive.",
"carry-max": 99,
"icon": "bottle",
"color": "sky",
"selling-price": 500
},
{
"name": "Monster Broth",
"rare": 5,
"description": "A broth made from only the thickest of a monster's juices. Quite rich.",
"carry-max": 99,
"icon": "bottle",
"color": "blue",
"selling-price": 1000
},
{
"name": "Monster Essence",
"rare": 5,
"description": "Further distilled monster broth, although I don't recommend touching it...",
"carry-max": 99,
"icon": "bottle",
"color": "blue",
"selling-price": 2000
},
{
"name": "Thunderbug Juice",
"rare": 5,
"description": "Fluids of a Thunderbug. When stockpilled, can causes an electrical discharge.",
"carry-max": 99,
"icon": "bottle",
"color": "yellow",
"selling-price": 250
},
{
"name": "Thunderbug Jelly",
"rare": 5,
"description": "Gelatin from a Great Thunderbug. More powerful than Juice. Easier to use.",
"carry-max": 99,
"icon": "bottle",
"color": "yellow",
"selling-price": 1000
},
{
"name": "Herbal Medicine",
"rare": 2,
"description": "Effectively cures posion, and restores a slight amount of Health.",
"carry-max": 10,
"icon": "bag",
"color": "white",
"selling-price": 25
},
{
"name": "Max Potion",
"rare": 3,
"description": "Restores Health to the maximum level, enabling a full recovery.",
"carry-max": 2,
"icon": "bag",
"color": "yellow",
"selling-price": 210
},
{
"name": "Ancient Potion",
"rare": 5,
"description": "Restores Health and Stamina to maximum levels, enabling a full recovery.",
"carry-max": 2,
"icon": "bag",
"color": "red",
"selling-price": 345
},
{
"name": "Catalyst",
"rare": 2,
"description": "Mixes with other materials to improve their effect. Cannot be used by itself.",
"carry-max": 5,
"icon": "bag",
"color": "gray",
"selling-price": 48
},
{
"name": "Energy Drink",
"rare": 2,
"description": "Recovers Stamina and cures fatigue. Approved by the Guild.",
"carry-max": 10,
"icon": "bottle",
"color": "yellow",
"selling-price": 6
},
{
"name": "Gunpowder",
"rare": 2,
"description": "A dangerous chemical that explodes when disturbed or heated.",
"carry-max": 20,
"icon": "bag",
"color": "red",
"selling-price": 22
},
{
"name": "Lifecrystals",
"rare": 3,
"description": "Mysterious crystals long worshipped as a fount of life.",
"carry-max": 10,
"icon": "bag",
"color": "white",
"selling-price": 59
},
{
"name": "Lifepowder",
"rare": 4,
"description": "Medicine created by combining Lifecrystals. Strong restorative power.",
"carry-max": 3,
"icon": "bag",
"color": "white",
"selling-price": 315
},
{
"name": "Powercharm",
"rare": 5,
"description": "Amulet that raises Attack power. The holder gains the strength of a demon.",
"carry-max": 1,
"icon": "bag",
"color": "red",
"selling-price": 3600
},
{
"name": "Powertalon",
"rare": 5,
"description": "Amulet that raises Attack. Made from a Lao-Shan's Claw.",
"carry-max": 1,
"icon": "fang",
"color": "red",
"selling-price": 6840
},
{
"name": "Armorcharm",
"rare": 5,
"description": "Amulet that causes one's skin to become as hard as stone. Raises Defense",
"carry-max": 1,
"icon": "bag",
"color": "orange",
"selling-price": 2400
},
{
"name": "Armortalon",
"rare": 5,
"description": "Amulet that raises Defense. Made from a Lao-Shan's Claw.",
"carry-max": 1,
"icon": "fang",
"color": "orange",
"selling-price": 5040
},
{
"name": "Tranquilizer",
"rare": 4,
"description": "Medicine that is used as an anesthetic when combined.",
"carry-max": 10,
"icon": "bottle",
"color": "red",
"selling-price": 15
},
{
"name": "Raw Meat",
"rare": 1,
"description": "Meat obtained through carving up a monster. Has many uses.",
"carry-max": 10,
"icon": "meat",
"color": "red",
"selling-price": 5
},
{
"name": "Poisoned Meat",
"rare": 1,
"description": "Poisons if consumed. Used as bait in traps.",
"carry-max": 10,
"icon": "meat",
"color": "purple",
"selling-price": 19
},
{
"name": "Tainted Meat",
"rare": 2,
"description": "Paralyzes if consumed. Used as bait in traps.",
"carry-max": 10,
"icon": "meat",
"color": "yellow",
"selling-price": 30
},
{
"name": "Drugged Meat",
"rare": 1,
"description": "Causes sleepiness if consumed. Used as bait in traps.",
"carry-max": 10,
"icon": "meat",
"color": "sky",
"selling-price": 32
},
{
"name": "Rare Steak",
"rare": 1,
"description": "Meat cooked on the rare side. Gives a small boost to Stamina.",
"carry-max": 10,
"icon": "meat",
"color": "orange",
"selling-price": 3
},
{
"name": "Well-Done Steak",
"rare": 2,
"description": "Well-cooked meat. Gives a medium boost to Stamina.",
"carry-max": 10,
"icon": "meat",
"color": "orange",
"selling-price": 48
},
{
"name": "Gourmet Steak",
"rare": 3,
"description": "A gourmet steak cooked to perfection. Give a full boost to Stamina.",
"carry-max": 10,
"icon": "meat",
"color": "orange",
"selling-price": 64
},
{
"name": "Burnt Meat",
"rare": 1,
"description": "Meat burnt to a crisp. Boots Stamina sometimes, but can also weaken you.",
"carry-max": 10,
"icon": "meat",
"color": "gray",
"selling-price": 1
},
{
"name": "Hot Meat",
"rare": 1,
"description": "Eat to warm the body, ward off the cold, and even recover a bit of Stamina.",
"carry-max": 10,
"icon": "meat",
"color": "red",
"selling-price": 25
},
{
"name": "Cold Meat",
"rare": 1,
"description": "Eat to cool the body, ward off the heat, and even recover a bit of Stamina.",
"carry-max": 10,
"icon": "meat",
"color": "sky",
"selling-price": 30
},
{
"name": "Rare Fish",
"rare": 1,
"description": "A lightly brazed fish. Recovers red portion of Health Gauge when eaten.",
"carry-max": 10,
"icon": "fish",
"color": "sky",
"selling-price": 2
},
{
"name": "Gourmet Fish",
"rare": 2,
"description": "Recover the red portion of the Health gauge and increases natrual recovery.",
"carry-max": 10,
"icon": "fish",
"color": "orange",
"selling-price": 40
},
{
"name": "Gourmet Fish+",
"rare": 3,
"description": "Recovers red portion of the Health gauge and increases reilience.",
"carry-max": 10,
"icon": "fish",
"color": "orange",
"selling-price": 58
},
{
"name": "Burnt Fish",
"rare": 1,
"description": "A fish burnt to a crisp. Sometimes recovers Health, but can also harm you...",
"carry-max": 10,
"icon": "fish",
"color": "gray",
"selling-price": 1
},
{
"name": "Boomerang",
"rare": 4,
"description": "Returns when thrown. A peculiar shaped weapon form a foreign land.",
"carry-max": 5,
"icon": "boomerang",
"color": "yellow",
"selling-price": 15
},
{
"name": "Throwing Knife",
"rare": 1,
"description": "A standard throwing knife. Goes straight to a target. (Supply Item)",
"carry-max": 5,
"icon": "knife",
"color": "white",
"selling-price": 0
},
{
"name": "Poison Thrw Knf",
"rare": 1,
"description": "Throwing knift with a posion edge. Has a toxic effect (Supply Item)",
"carry-max": 5,
"icon": "knife",
"color": "purple",
"selling-price": 0
},
{
"name": "Sleeping Thr Knf",
"rare": 1,
"description": "Throwing knife with an edge daubed with sleeping powder. (Supply Item)",
"carry-max": 5,
"icon": "knife",
"color": "sky",
"selling-price": 0
},
{
"name": "Paralyze Thr Knf",
"rare": 1,
"description": "Throwing knife with a paralysis toxin coated edge. (Supply Item)",
"carry-max": 5,
"icon": "knife",
"color": "yellow",
"selling-price": 0
},
{
"name": "Tranq Thrwng Knf",
"rare": 4,
"description": "A knife made to assist in the capture of monsters it strikes. (Supply Item)",
"carry-max": 5,
"icon": "knife",
"color": "red",
"selling-price": 0
},
{
"name": "Bomb Material",
"rare": 1,
"description": "Basic ingredient for making hand-thrown bombs,",
"carry-max": 30,
"icon": "ball",
"color": "white",
"selling-price": 15
},
{
"name": "Paintball",
"rare": 1,
"description": "Can be thrown at a monster to mark it for easy tracking.",
"carry-max": 99,
"icon": "ball",
"color": "pink",
"selling-price": 10
},
{
"name": "Flash Bomb",
"rare": 2,
"description": "Bomb that flashes brightly upon impact. Blinds monsters.",
"carry-max": 10,
"icon": "ball",
"color": "yellow",
"selling-price": 57
},
{
"name": "Sonic Bomb",
"rare": 2,
"description": "Emits a powerful high-frequency sound upon detonation.",
"carry-max": 10,
"icon": "ball",
"color": "gray",
"selling-price": 45
},
{
"name": "Dung",
"rare": 1,
"description": "Monster excrement. One dropping can maximize the fertility of a row.",
"carry-max": 10,
"icon": "dung",
"color": "yellow",
"selling-price": 1
},
{
"name": "Wyvern Droppings",
"rare": 4,
"description": "Wyvern excrement. One dropping can maximize the fertility of all rows.",
"carry-max": 99,
"icon": "dung",
"color": "red",
"selling-price": 2
},
{
"name": "Dung Bomb",
"rare": 2,
"description": "Creates a terrible smell upon impact, which certain wyverns dislike.",
"carry-max": 10,
"icon": "dung",
"color": "yellow",
"selling-price": 9
},
{
"name": "Smoke Bomb",
"rare": 2,
"description": "Creates a large cloud of smoke in the area where it lands.",
"carry-max": 10,
"icon": "smoke",
"color": "white",
"selling-price": 44
},
{
"name": "Poison Smoke Bmb",
"rare": 2,
"description": "Smoke bomb containing a toxic chemical. Popular as a household bug bomb.",
"carry-max": 10,
"icon": "smoke",
"color": "purple",
"selling-price": 60
},
{
"name": "Farcaster",
"rare": 3,
"description": "Instantly transports you back to base camp.",
"carry-max": 1,
"icon": "smoke",
"color": "green",
"selling-price": 30
},
{
"name": "Deodorant",
"rare": 2,
"description": "Removes item usage blocks. When thrown on the ground, its smoke deodorizes.",
"carry-max": 5,
"icon": "smoke",
"color": "sky",
"selling-price": 8
},
{
"name": "Tranq Bomb",
"rare": 4,
"description": "Use to subdue and capture a trapped monster.",
"carry-max": 8,
"icon": "ball",
"color": "red",
"selling-price": 35
},
{
"name": "Spiderweb",
"rare": 1,
"description": "A spider's web. Very sticky.",
"carry-max": 10,
"icon": "web",
"color": "white",
"selling-price": 6
},
{
"name": "Net",
"rare": 2,
"description": "Powerful net able to withstand a certain amount of weight.",
"carry-max": 10,
"icon": "web",
"color": "white",
"selling-price": 54
},
{
"name": "Trap Tool",
"rare": 3,
"description": "A tool needed to set up various types of traps, such as the Pitfall Trap.",
"carry-max": 2,
"icon": "tool",
"color": "green",
"selling-price": 20
},
{
"name": "Pitfall Trap",
"rare": 3,
"description": "Trap for catching certain large monsters. It is tripped by a heavy weight.",
"carry-max": 1,
"icon": "trap",
"color": "green",
"selling-price": 46
},
{
"name": "Shock Trap",
"rare": 3,
"description": "A trap taht can immobilize a monster. Used for capturing.",
"carry-max": 1,
"icon": "trap",
"color": "purple",
"selling-price": 160
},
{
"name": "Lightning Rod",
"rare": 3,
"description": "Will attract lightning after a while. Can be used in the rain.",
"carry-max": 10,
"icon": "trap",
"color": "gray",
"selling-price": 28
},
{
"name": "Barrel Lid",
"rare": 5,
"description": "A small barrel lid. There appears to be a drawing on it.",
"carry-max": 99,
"icon": "barrel",
"color": "gray",
"selling-price": 10
},
{
"name": "Small Barrel",
"rare": 1,
"description": "A small, empty barrel.",
"carry-max": 10,
"icon": "barrel",
"color": "yellow",
"selling-price": 8
},
{
"name": "Large Barrel",
"rare": 2,
"description": "A large, empty barrel.",
"carry-max": 10,
"icon": "boomerang",
"color": "red",
"selling-price": 21
},
{
"name": "Sm Barrel-Bomb",
"rare": 2,
"description": "A small time-bomb.",
"carry-max": 10,
"icon": "bomb",
"color": "yellow",
"selling-price": 16
},
{
"name": "Sm Barrel-Bomb+",
"rare": 2,
"description": "Upgraded Small Barrel Bomb. Not to be taken lightly despite its size.",
"carry-max": 5,
"icon": "bomb",
"color": "yellow",
"selling-price": 52
},
{
"name": "Lg Barrel-Bomb",
"rare": 3,
"description": "Powerful bomb triggered by external physical impact.",
"carry-max": 3,
"icon": "bomb",
"color": "red",
"selling-price": 52
},
{
"name": "Lg Barrel-Bomb+",
"rare": 4,
"description": "Upgraded Large Barrel Bomb. Effective against large monsters.",
"carry-max": 2,
"icon": "bomb",
"color": "red",
"selling-price":80
},
{
"name": "Bounce Bomb",
"rare": 2,
"description": "Bounces into the air when set. This modified bomb requires skill to use.",
"carry-max": 10,
"icon": "bomb",
"color": "blue",
"selling-price": 18
},
{
"name": "Bounce Bomb+",
"rare": 4,
"description": "Improved version of the Bounce Bomb. Requires some skill to use.",
"carry-max": 10,
"icon": "bomb",
"color": "blue",
"selling-price": 68
},
{
"name": "Anti-Dragon Bomb",
"rare": 3,
"description": "Small time bomb that attaches to an enemy. (Supply Item)",
"carry-max": 10,
"icon": "bomb",
"color": "yellow",
"selling-price": 0
},
{
"name": "Huskberry",
"rare": 1,
"description": "An empty berry that can grow anywhere. Try planting it in the field.",
"carry-max": 99,
"icon": "husk",
"color": "gray",
"selling-price": 1
},
{
"name": "Sm Bone Husk",
"rare": 2,
"description": "Bone ammunition casing. Stronger than a Huskberry ammunition casing.",
"carry-max": 99,
"icon": "husk",
"color": "white",
"selling-price": 3
},
{
"name": "Lg Bone Husk",
"rare": 3,
"description": "Bone ammunition casing that can withstand powerful explosions.",
"carry-max": 99,
"icon": "husk",
"color": "white",
"selling-price": 5
},
{
"name": "Normal S Lv1",
"rare": 1,
"description": "Inexpensive ammo for novices, but don't expect much. Unlimited shots.",
"carry-max": "Infinity",
"icon": "shell",
"color": "white",
"selling-price": 0
},
{
"name": "Normal S Lv2",
"rare": 1,
"description": "Normal ammo that is more powerful than Normal S Lv1. Maximum of 99 shots.",
"carry-max": 99,
"icon": "shell",
"color": "white",
"selling-price": 1
},
{
"name": "Normal S Lv3",
"rare": 2,
"description": "Normal ammo that causes more damage than its predecessor. Max 99 shots.",
"carry-max": 99,
"icon": "shell",
"color": "white",
"selling-price": 2
},
{
"name": "Pierce S Lv1",
"rare": 2,
"description": "Piercing round that causes multiple hits to monsters. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 1
},
{
"name": "Pierce S Lv2",
"rare": 2,
"description": "Piercing round that causes more hits than Lv1 ammo. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 2
},
{
"name": "Pierce S Lv3",
"rare": 3,
"description": "Piercing round that causes the most hits in the class. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 3
},
{
"name": "Pellet S Lv1",
"rare": 2,
"description": "Sprays a wide area and can cause multiple hits at close range. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 1
},
{
"name": "Pellet S Lv2",
"rare": 2,
"description": "Sprays a wide area, causing more hits than Lv1 ammo. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 2
},
{
"name": "Pellet S Lv3",
"rare": 3,
"description": "Sprays a wide area, causing the most hits in the class. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "white",
"selling-price": 2
},
{
"name": "Crag S Lv1",
"rare": 3,
"description": "Penetrates and explodes in its target. Quite powerful and stunning. Max 9 shots.",
"carry-max": 9,
"icon": "shell",
"color": "white",
"selling-price": 4
},
{
"name": "Crag S Lv2",
"rare": 3,
"description": "Very powerful & stunning shot. Penetrates and explodes. Max 9 shots.",
"carry-max": 9,
"icon": "shell",
"color": "white",
"selling-price": 7
},
{
"name": "Crag S Lv3",
"rare": 3,
"description": "Tremendously powerful and stunning shot. Penetrates and explodes. Max 9 shots.",
"carry-max": 9,
"icon": "shell",
"color": "white",
"selling-price": 7
},
{
"name": "Clust S Lv1",
"rare": 2,
"description": "Splits into 3 bombs upon impact. Beware of friendly fire. Max 3 shots.",
"carry-max": 3,
"icon": "shell",
"color": "white",
"selling-price": 4
},
{
"name": "Clust S Lv2",
"rare": 3,
"description": "Splits into 4 bombs upon impact. Beware of friendly fire. Max 3 shots.",
"carry-max": 3,
"icon": "shell",
"color": "white",
"selling-price": 6
},
{
"name": "Clust S Lv3",
"rare": 3,
"description": "Splits into 5 bombs upon impact. Beware of friendly fire. Max 3 shots.",
"carry-max": 3,
"icon": "shell",
"color": "white",
"selling-price": 10
},
{
"name": "Flaming S",
"rare": 3,
"description": "Shot effective against monsters vulnerable to fire. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "red",
"selling-price": 2
},
{
"name": "Water S",
"rare": 3,
"description": "Shot effective against monsters vulnerable to water. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "sky",
"selling-price": 2
},
{
"name": "Thunder S",
"rare": 3,
"description": "Shot effective against monsters vulnerable to thunder. Max 60 shots.",
"carry-max": 60,
"icon": "shell",
"color": "yellow",
"selling-price": 2
},