forked from OpenKore/openkore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems_control.txt
1757 lines (1733 loc) · 50.9 KB
/
items_control.txt
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
# In this file you can control which items to put in storage,
# to sell, or to leave in the inventory.
#
# Syntax:
# (item name) (minimum) (auto-store) (auto-sell) [put in cart] [get from cart]
# item name : Name of the item.
# miminum : The minimum amount of this item that you want to keep in inventory.
# autostore : Set to 1 to walk back to a Kapra NPC to put in storage.
# autosell : Set to 1 to sell item at a buy/sell NPC.
# put in cart : Set to 1 to automatically put this item in cart.
# get from cart : Set to 1 to automatically get this item from cart.
#
# The example below will sell all jellopies, store all knifes and puts
# all flowers in cart:
# Jellopy 0 0 1
# Knife 0 1 0
# Flower 0 0 0 1
#
# This example will get Red Potions from cart if you have less than 25
# of them in your inventory:
# Red Potion 25 0 0 0 1
#
# The item name isn't case sensitive. Only items found in this file will
# be stored or sold.
#
# If auto-store and auto-sell are 1, Kore will do storage first (unless
# storage is full) then sell.
#
# Kore will not sell or store equipped items. For example, if you're using
# a knife and you have a line to auto-sell all knives, kore will sell any
# extras it picks up, not the knife it's using.
#
# Don't forget to set the storageAuto, sellAuto and related configuration
# options in config.txt, or this file won't have any effect.
#
# An auto-sell list and auto-storage list is provided by default, modify it
# as you see fit.
# All items not mentioned in this file will be automatically stored in storage.
all 0 1 0
##### HEAL/SUPPORT ITEMS #####
# Adjust these to your needs
602 10 1 0 # Butterfly Wing
601 100 1 0 # Fly Wing
505 0 1 0 # Blue Potion
545 50 1 0 # Condensed Red Potion
547 50 1 0 # Condensed White Potion
546 50 1 0 # Condensed Yellow Potion
506 0 1 0 # Green Potion
501 25 1 0 # Red Potion
502 25 1 0 # Orange Potion
504 25 1 0 # White Potion
503 25 1 0 # Yellow potion
##### ARROWS #####
# You may want to modify these if you're an archer/hunter
Arrow 3000 1 0
#########################
##### SELLING ITEMS #####
#########################
##### WORTHLESS GEARS #####
# Worthless gears which are sold by default
2305 0 0 1 # Adventurer's Suit
2211 0 0 1 # Bandana
2217 0 0 1 # Biretta
2405 0 0 1 # Boots
2103 0 0 1 # Buckler
2227 0 0 1 # Cap
2314 0 0 1 # Chain Mail
2233 0 0 1 # Circlet
2309 0 0 1 # Coat
2310 0 0 1 # Coat [1]
2302 0 0 1 # Cotton Shirt
Cotton Shirt [1] 0 0 1
#Crystal Pumps 0 0 1
2613 0 0 1 # Diamond Ring
2205 0 0 1 # Diver Goggles
2212 0 0 1 # Eye Patch
2612 0 0 1 # Flower Ring
2219 0 0 1 # Flu Mask
2316 0 0 1 # Full Plate
2231 0 0 1 # Gemmed Sallet
2204 0 0 1 # Glasses
2610 0 0 1 # Gold Ring
2101 0 0 1 # Guard
2210 0 0 1 # Hair Band
2221 0 0 1 # Hat
2228 0 0 1 # Helm
2409 0 0 1 # High Heels
2501 0 0 1 # Hood
2502 0 0 1 # Hood [1]
2303 0 0 1 # Jacket
2304 0 0 1 # Jacket [1]
2505 0 0 1 # Manteau
2307 0 0 1 # Mantle
2308 0 0 1 # Mantle [1]
2107 0 0 1 # Mirror Shield
2278 0 0 1 # Mr. Smile
2503 0 0 1 # Muffler
2313 0 0 1 # Padded Armor
2371 0 0 1 # Pantie
2208 0 0 1 # Ribbon
2209 0 0 1 # Ribbon [1]
2840 0 0 1 # Rosary
2325 0 0 1 # Saint's Robe
2401 0 0 1 # Sandals
2402 0 0 1 # Sandals [1]
2323 0 0 1 # Scapulare
2408 0 0 1 # Shackles
2105 0 0 1 # Shield
2403 0 0 1 # Shoes
2321 0 0 1 # Silk Robe
2611 0 0 1 # Silver Ring
2332 0 0 1 # Silver Robe
2333 0 0 1 # Silver Robe [1]
2715 0 0 1 # Skull Ring
2335 0 0 1 # Thief Clothes
2330 0 0 1 # Tights
2223 0 0 1 # Turban
2328 0 0 1 # Wooden Mail
2329 0 0 1 # Wooden Mail [1]
##### WORTHLESS WEAPONS #####
# Worthless weapons which are sold by default
Arbalest Bow [1] 0 0 1
1612 0 0 1 # Arc Wand
1610 0 0 1 # Arc Wand [1]
1303 0 0 1 # Axe
1301 0 0 1 # Axe [3]
1302 0 0 1 # Axe [4]
1156 0 0 1 # Bastard Sword
1154 0 0 1 # Bastard Sword [2]
1353 0 0 1 # Battle Axe
1351 0 0 1 # Battle Axe [3]
1352 0 0 1 # Battle Axe [4]
2627 0 0 1 # Belt [1]
#Bible [2] 0 0 1
1467 0 0 1 # Bill Guisarme
1109 0 0 1 # Blade
1107 0 0 1 # Blade [3]
1108 0 0 1 # Blade [4]
1703 0 0 1 # Bow
1701 0 0 1 # Bow [3]
1702 0 0 1 # Bow [4]
1160 0 0 1 # Broad Sword [1]
1359 0 0 1 # Buster
1357 0 0 1 # Buster [1]
1519 0 0 1 # Chain [2]
#Chemeti Whip 0 0 1
1809 0 0 1 # Claw [1]
1810 0 0 1 # Claw [2]
1172 0 0 1 # Claymore
1503 0 0 1 # Club
1501 0 0 1 # Club [3]
1502 0 0 1 # Club [4]
1706 0 0 1 # Composite Bow
1704 0 0 1 # Composite Bow [3]
1712 0 0 1 # Cross Bow
Cross Bow [2] 0 0 1
1206 0 0 1 # Cutter
1204 0 0 1 # Cutter [3]
1205 0 0 1 # Cutter [4]
1215 0 0 1 # Dagger
1213 0 0 1 # Dagger [2]
1214 0 0 1 # Dagger [3]
1222 0 0 1 # Damascus [1]
1212 0 0 1 # Dirk
1210 0 0 1 # Dirk [2]
1211 0 0 1 # Dirk [3]
1106 0 0 1 # Falchion
1104 0 0 1 # Falchion [3]
1811 0 0 1 # Finger [1]
1812 0 0 1 # Finger [2]
1808 0 0 1 # Fist
1808 0 0 1 # Fist [1]
1510 0 0 1 # Flail [2]
1511 0 0 1 # Flail [3]
1149 0 0 1 # Flamberge
1714 0 0 1 # Gakkung Bow [1]
#Girl's Diary [1] 0 0 1
1221 0 0 1 # Gladius
1219 0 0 1 # Gladius [2]
1456 0 0 1 # Glaive
1454 0 0 1 # Glaive [2]
1455 0 0 1 # Glaive [3]
1709 0 0 1 # Great Bow
1707 0 0 1 # Great Bow [2]
1708 0 0 1 # Great Bow [3]
1453 0 0 1 # Guisarme
1451 0 0 1 # Guisarme [2]
1908 0 0 1 # Guitar
1908 0 0 1 # Guitar [1]
1911 0 0 1 # Gumoongoh [1]
1912 0 0 1 # Gumoongoh [2]
1123 0 0 1 # Haedonggum [1]
Hallberd [1] 0 0 1
Hallberd [2] 0 0 1
1356 0 0 1 # Hammer
1354 0 0 1 # Hammer [2]
1355 0 0 1 # Hammer [3]
1909 0 0 1 # Harp [1]
1910 0 0 1 # Harp [2]
1255 0 0 1 # Jamadhar
1403 0 0 1 # Javelin
1401 0 0 1 # Javelin [3]
1402 0 0 1 # Javelin [4]
1250 0 0 1 # Jur [2]
1118 0 0 1 # Katana
1116 0 0 1 # Katana [3]
1117 0 0 1 # Katana [4]
1252 0 0 1 # Katar [1]
1203 0 0 1 # Knife
1201 0 0 1 # Knife [3]
1202 0 0 1 # Knife [4]
1803 0 0 1 # Knuckle Dusters [2]
1804 0 0 1 # Knuckle Dusters [3]
1412 0 0 1 # Lance
#Lariat Whip 0 0 1
1905 0 0 1 # Lute [2]
1906 0 0 1 # Lute [3]
1506 0 0 1 # Mace
1504 0 0 1 # Mace [3]
#Mace [4] 0 0 1
1209 0 0 1 # Main Gauche
1207 0 0 1 # Main Gauche [3]
1903 0 0 1 # Mandolin [2]
1904 0 0 1 # Mandolin [3]
1513 0 0 1 # Morning Star [1]
1514 0 0 1 # Morning Star [2]
2628 0 0 1 # Novice Armlet [1]
2340 0 0 1 # Novice Breastplate [1]
1309 0 0 1 # Orcish Axe
1124 0 0 1 # Orcish Sword
1459 0 0 1 # Partizan
1457 0 0 1 # Partizan [1]
1458 0 0 1 # Partizan [2]
1409 0 0 1 # Pike
1407 0 0 1 # Pike [3]
1957 0 0 1 # Rante Whip
1957 0 0 1 # Rante Whip [1]
1112 0 0 1 # Rapier
1110 0 0 1 # Rapier [2]
1111 0 0 1 # Rapier [3]
1721 0 0 1 # Repeating Crossbow [1]
1122 0 0 1 # Ring Pommel Saber [2]
1603 0 0 1 # Rod
1601 0 0 1 # Rod [3]
#Rod [4] 0 0 1
1950 0 0 1 # Rope [3]
#Rope [4] 0 0 1
1126 0 0 1 # Saber [2]
Scimiter [2] 0 0 1
Scimiter [3] 0 0 1
1153 0 0 1 # Slayer
1151 0 0 1 # Slayer [2]
1152 0 0 1 # Slayer [3]
1507 0 0 1 # Smasher [2]
1508 0 0 1 # Smasher [3]
1406 0 0 1 # Spear
1404 0 0 1 # Spear [3]
1405 0 0 1 # Spear [4]
1609 0 0 1 # Staff
1607 0 0 1 # Staff [2]
1218 0 0 1 # Stiletto
1216 0 0 1 # Stiletto [2]
1217 0 0 1 # Stiletto [3]
1805 0 0 1 # Studded Knuckles [2]
1806 0 0 1 # Studded Knuckles [3]
1103 0 0 1 # Sword
1101 0 0 1 # Sword [3]
1102 0 0 1 # Sword [4]
1518 0 0 1 # Sword Mace
1958 0 0 1 # Tail Whip [1]
1959 0 0 1 # Tail Whip [2]
1462 0 0 1 # Trident
1460 0 0 1 # Trident [2]
1121 0 0 1 # Tsurugi
1119 0 0 1 # Tsurugi [1]
1120 0 0 1 # Tsurugi [2]
1362 0 0 1 # Two-handed Axe
Two-handed Axe [1] 0 0 1
1159 0 0 1 # Two-handed Sword
Two-handed Sword [1] 0 0 1
1901 0 0 1 # Violin [3]
#Violin [4] 0 0 1
1801 0 0 1 # Waghnak [3]
1802 0 0 1 # Waghnak [4]
1606 0 0 1 # Wand
1604 0 0 1 # Wand [2]
1605 0 0 1 # Wand [3]
#War Axe [1] 0 0 1
1960 0 0 1 # Whip [1]
1961 0 0 1 # Whip [2]
1953 0 0 1 # Whip [3]
1954 0 0 1 # Wire Whip [2]
1955 0 0 1 # Wire Whip [3]
##### STANDARD LOOT #####
# Useless items that are sold by default
1026 0 0 1 # Acorn
1054 0 0 1 # Ancient Lips
1053 0 0 1 # Ancient Tooth
Animal Poop 0 0 1
919 0 0 1 # Animal Skin
7003 0 0 1 # Anolian Skin
7106 0 0 1 # Antelope Horn
7107 0 0 1 # Antelope Skin
1014 0 0 1 # Ant Jaw
512 0 0 1 # Apple
531 0 0 1 # Apple Juice
7119 0 0 1 # Bacillus
513 0 0 1 # Banana
532 0 0 1 # Banana Juice
1068 0 0 1 # Barren Trunk
948 0 0 1 # Bear's Footskin
939 0 0 1 # Bee Sting
925 0 0 1 # Bill of Birds
1020 0 0 1 # Black Hair
737 0 0 1 # Black Ladle
1034 0 0 1 # Blue Hair
744 0 0 1 # Bouquet
7054 0 0 1 # Brigan
7158 0 0 1 # Broken Liquor Jar
7070 0 0 1 # Broken Shell
7156 0 0 1 # Broken Shuriken
7110 0 0 1 # Broken Sword
7062 0 0 1 # Broken Turtle Shell
1042 0 0 1 # Bug Leg
7122 0 0 1 # Burning Hair
7097 0 0 1 # Burning Heart
7120 0 0 1 # Burning Horseshoe
7068 0 0 1 # Burnt Tree
952 0 0 1 # Cactus Needle
515 0 0 1 # Carrot
534 0 0 1 # Carrot Juice
548 0 0 1 # Cheese
736 0 0 1 # China
742 0 0 1 # Chonchon Doll
915 0 0 1 # Chrysalis
735 0 0 1 # Chung Jah
966 0 0 1 # Clam Flesh
965 0 0 1 # Clam Shell
7030 0 0 1 # Claw of Desert Wolf
7011 0 0 1 # Claw of Monkey
7007 0 0 1 # Claw of Rat
705 0 0 1 # Clover
1025 0 0 1 # Cobweb
7093 0 0 1 # Cogwheel
961 0 0 1 # Conch
7013 0 0 1 # Coral Reef
7050 0 0 1 # Cotton Mat
7037 0 0 1 # Coupon
964 0 0 1 # Crab Shell
747 0 0 1 # Crystal Mirror
1045 0 0 1 # Cultish Masque
7053 0 0 1 # Cyfar
901 0 0 1 # Daenggie
7157 0 0 1 # Dark Mask
1047 0 0 1 # Dead Medusa
957 0 0 1 # Decayed Nail
7069 0 0 1 # Destroyed Armor
1051 0 0 1 # Detonator
1021 0 0 1 # Dokebi Horn
1035 0 0 1 # Dragon Canine
1036 0 0 1 # Dragon Scale
7123 0 0 1 # Dragon Skin
1037 0 0 1 # Dragon Tail
1055 0 0 1 # Earthworm Peeling
1040 0 0 1 # Elder Pixie's Moustache
1011 0 0 1 # Emveretarcon
540 0 0 1 # Falcon Food
1063 0 0 1 # Fang
949 0 0 1 # Feather
916 0 0 1 # Feather of Birds
951 0 0 1 # Fin
1066 0 0 1 # Fine-grained Trunk
7041 0 0 1 # Fine Grit
7043 0 0 1 # Fine Sand
1023 0 0 1 # Fish Tail
712 0 0 1 # Flower
914 0 0 1 # Fluff
7094 0 0 1 # Fragment
1012 0 0 1 # Frill
749 0 0 1 # Frozen Rose
#Garlet 0 0 1
956 0 0 1 # Gill
746 0 0 1 # Glass Bead
7009 0 0 1 # Glitter Shell
7152 0 0 1 # Glossy Hair
1060 0 0 1 # Golden Hair
940 0 0 1 # Grasshopper's Leg
1056 0 0 1 # Grit
7115 0 0 1 # Harpy Feather
7116 0 0 1 # Harpy Talon
950 0 0 1 # Heart of Mermaid
947 0 0 1 # Horn
1048 0 0 1 # Horrendous Hair
958 0 0 1 # Horrendous Mouth
944 0 0 1 # Horseshoe
7066 0 0 1 # Ice Cubic
929 0 0 1 # Immortal Heart
928 0 0 1 # Insect Feeler
7028 0 0 1 # Invite for Duel
1062 0 0 1 # Jack o' Pumpkin
7147 0 0 1 # Jasmine
909 0 0 1 # Jellopy
1041 0 0 1 # Lantern
7126 0 0 1 # Large Jellopy
7096 0 0 1 # Lava
7098 0 0 1 # Live Coal
1098 0 0 1 # Manacles
1028 0 0 1 # Mane
1032 0 0 1 # Maneater Blossom
1033 0 0 1 # Maneater Root
1031 0 0 1 # Mantis Scythe
7035 0 0 1 # Matchstick
517 0 0 1 # Meat
934 0 0 1 # Memento
7497 0 0 1 # Metal Fragment
519 0 0 1 # Milk
7001 0 0 1 # Mould Powder
1018 0 0 1 # Mole Claw
1017 0 0 1 # Mole Whiskers
528 0 0 1 # Monster's Feed
1057 0 0 1 # Moth Dust
7148 0 0 1 # Mother's Letter
1058 0 0 1 # Moth Wings
7004 0 0 1 # Mud Lump
921 0 0 1 # Mushroom Spore
1095 0 0 1 # Needle of Alarm
7102 0 0 1 # Nightmare
1022 0 0 1 # Nine Tails
960 0 0 1 # Nipper
941 0 0 1 # Nose Ring
5037 0 0 1 # Nut Shell
7002 0 0 1 # Ogre Tooth
7151 0 0 1 # Oil Paper
7031 0 0 1 # Old Frying Pan
7072 0 0 1 # Old Shuriken
1043 0 0 1 # Orc Claw
931 0 0 1 # Orcish Voucher
922 0 0 1 # Orc's Fang
751 0 0 1 # Osiris Doll
7101 0 0 1 # PecoPeco Feather
541 0 0 1 # PecoPeco Food
738 0 0 1 # Pencil Case
1010 0 0 1 # Phracon
7150 0 0 1 # Piece of Bamboo
7032 0 0 1 # Piece of Egg Shell
7108 0 0 1 # Piece of Shield
906 0 0 1 # Pointed Scale
7154 0 0 1 # Poisonous Powder
7155 0 0 1 # Poisonous Toad Skin
7033 0 0 1 # Poison Spore
1027 0 0 1 # Porcupine Quill
741 0 0 1 # Poring Doll
924 0 0 1 # Powder of Butterfly
535 0 0 1 # Pumpkin
740 0 0 1 # Puppet
945 0 0 1 # Raccoon Leaf
754 0 0 1 # Racoon Doll
7145 0 0 1 # Ragnarok T-shirt
1013 0 0 1 # Rainbow Shell
1016 0 0 1 # Rat Tail
544 0 0 1 # Raw Fish
734 0 0 1 # Red Frame
#Red Stocking 0 0 1
1064 0 0 1 # Reins
903 0 0 1 # Reptile Tongue
907 0 0 1 # Resin
550 0 0 1 # Rice Cake
752 0 0 1 # Rocker Doll
7082 0 0 1 # Root of Stone
930 0 0 1 # Rotten Bandage
739 0 0 1 # Rouge
1096 0 0 1 # Round Shell
7124 0 0 1 # Sand Clump
936 0 0 1 # Scale Shell
#Scell 0 0 1
7125 0 0 1 # Scorpion Claw
1046 0 0 1 # Scorpion Nipper
904 0 0 1 # Scorpion Tail
7065 0 0 1 # Sea-otter Fur
7100 0 0 1 # Sharp Leaf
7112 0 0 1 # Sharp Paper
Sharp scale 0 0 1
935 0 0 1 # Shell
954 0 0 1 # Shining Scale
7109 0 0 1 # Shining Spear Blade
711 0 0 1 # Shoot
1094 0 0 1 # Short Daenggie
7051 0 0 1 # Silk Mat
1052 0 0 1 # Single Cell
932 0 0 1 # Skel-Bone
7420 0 0 1 # Skull
7111 0 0 1 # Slick Paper
946 0 0 1 # Snail's Shell
926 0 0 1 # Snake Scale
661 0 0 1 # Soft Apron
943 0 0 1 # Solid Shell
1067 0 0 1 # Solid Trunk
Songpyun 0 0 1
908 0 0 1 # Spawn
7016 0 0 1 # Spoon Stub
743 0 0 1 # Spore Doll
1024 0 0 1 # Squid Ink
905 0 0 1 # Stem
938 0 0 1 # Sticky Mucus
918 0 0 1 # Sticky Webfoot
7008 0 0 1 # Stiff Horn
959 0 0 1 # Stinky Scale
7049 0 0 1 # Stone
7067 0 0 1 # Stone Fragment
953 0 0 1 # Stone Heart
551 0 0 1 # Sushi
7010 0 0 1 # Tail of Steel Scorpion
917 0 0 1 # Talon
7071 0 0 1 # Tattered Clothes
1050 0 0 1 # Tendon
7159 0 0 1 # Tengu Nose
962 0 0 1 # Tentacle
1029 0 0 1 # Tiger Skin
1015 0 0 1 # Tongue
913 0 0 1 # Tooth of Bat
7012 0 0 1 # Tough Scalelike Stem
902 0 0 1 # Tree Root
#Tribal Solidarity 0 0 1
967 0 0 1 # Turtle Shell
937 0 0 1 # Venom Canine
745 0 0 1 # Wedding Bouquet
7064 0 0 1 # Wing of Dragonfly
7006 0 0 1 # Wing of Red Bat
748 0 0 1 # Witherless Rose
920 0 0 1 # Wolf Claw
955 0 0 1 # Worm Peeling
7153 0 0 1 # Worn-out Kimono
1097 0 0 1 # Worn Out Page
1099 0 0 1 # Worn-out Prison Uniform
549 0 0 1 # Yam
7038 0 0 1 # Yarn
7149 0 0 1 # Yellow Plate
7018 0 0 1 # Young Twig
753 0 0 1 # Yoyo Doll
942 0 0 1 # Yoyo Tail
#Zargon 0 0 1
1044 0 0 1 # Zenorc's Fang
##### UNSTORAGEABLE ITEMS #####
"Bowman Scroll 1" 0 0 0
"Bowman Scroll 2" 0 0 0
"Bowman Scroll 3" 0 0 0
"Bowman Scroll 4" 0 0 0
"Bowman Scroll 5" 0 0 0
"Bowman Scroll 6" 0 0 0
"Bowman Scroll 7" 0 0 0
"Bowman Scroll 8" 0 0 0
"Bowman Scroll 9" 0 0 0
"Bowman Scroll 10" 0 0 0
"Fencer Scroll 1" 0 0 0
"Fencer Scroll 2" 0 0 0
"Fencer Scroll 3" 0 0 0
"Fencer Scroll 4" 0 0 0
"Fencer Scroll 5" 0 0 0
"Fencer Scroll 6" 0 0 0
"Fencer Scroll 7" 0 0 0
"Fencer Scroll 8" 0 0 0
"Fencer Scroll 9" 0 0 0
"Fencer Scroll 10" 0 0 0
"Spearman Scroll 1" 0 0 0
"Spearman Scroll 2" 0 0 0
"Spearman Scroll 3" 0 0 0
"Spearman Scroll 4" 0 0 0
"Spearman Scroll 5" 0 0 0
"Spearman Scroll 6" 0 0 0
"Spearman Scroll 7" 0 0 0
"Spearman Scroll 8" 0 0 0
"Spearman Scroll 9" 0 0 0
"Spearman Scroll 10" 0 0 0
671 0 0 0 0 0 # Gold_Coin
675 0 0 0 0 0 # Silver_Coin
1173 0 0 0 0 0 # Muramasa_C
1174 0 0 0 0 0 # Executioner_C
1183 0 0 0 0 0 # BF_Two_Handed_Sword1
1184 0 0 0 0 0 # BF_Two_Handed_Sword2
1187 0 0 0 0 0 # Krieger_Twohand_Sword1
1190 0 0 0 0 0 # Claymore_C
1192 0 0 0 0 0 # P_Slayer1
1193 0 0 0 0 0 # P_Slayer2
1197 0 0 0 0 0 # P_Slayer3
1198 0 0 0 0 0 # Hairtail
1243 0 0 0 0 0 # Novice_Knife
1267 0 0 0 0 0 # Infiltrator_C
1273 0 0 0 0 0 # Bloody_Roar_C
1274 0 0 0 0 0 # Unholy_Touch_C
1279 0 0 0 0 0 # BF_Katar1
1280 0 0 0 0 0 # BF_Katar2
1281 0 0 0 0 0 # Krieger_Katar1
1282 0 0 0 0 0 # Krieger_Katar2
1283 0 0 0 0 0 # Katar_Of_Speed
1286 0 0 0 0 0 # Jamadhar_C
1288 0 0 0 0 0 # Bloody_Fear_C
1289 0 0 0 0 0 # P_Katar1
1296 0 0 0 0 0 # Metal_Katar
1299 0 0 0 0 0 # TE_Woe_Katar
1310 0 0 0 0 0 # Krieger_Onehand_Axe1
1312 0 0 0 0 0 # Orcish_Axe_C
1313 0 0 0 0 0 # Tourist_Axe
1319 0 0 0 0 0 # TE_Woe_Axe
1372 0 0 0 0 0 # Right_Epsilon_C
1373 0 0 0 0 0 # Brood_Axe_C
1374 0 0 0 0 0 # Tomahawk_C
1378 0 0 0 0 0 # Great_Axe_C
1379 0 0 0 0 0 # BF_Two_Handed_Axe1
1380 0 0 0 0 0 # BF_Two_Handed_Axe2
1382 0 0 0 0 0 # Krieger_Twohand_Axe1
1386 0 0 0 0 0 # Doom_Slayer_I
1388 0 0 0 0 0 # Two_Handed_Axe_C
1391 0 0 0 0 0 # P_Two_Handed_Axe1
1398 0 0 0 0 0 # Metal_Two_Handed_Axe
1399 0 0 0 0 0 # TE_Woe_Two_Handed_Axe
1419 0 0 0 0 0 # Pole_Axe_C
1424 0 0 0 0 0 # Skewer_C
1425 0 0 0 0 0 # BF_Spear1
1426 0 0 0 0 0 # Krieger_Onehand_Spear1
1427 0 0 0 0 0 # Spear_Of_Excellent
1430 0 0 0 0 0 # Pike_C
1434 0 0 0 0 0 # P_Spear1
1437 0 0 0 0 0 # TE_Woe_Pike
1482 0 0 0 0 0 # BF_Lance1
1486 0 0 0 0 0 # Krieger_Twohand_Spear1
1487 0 0 0 0 0 # Lance_C
1488 0 0 0 0 0 # Ahlspiess_C
1489 0 0 0 0 0 # Spearfish_
1493 0 0 0 0 0 # Metal_Lance
1495 0 0 0 0 0 # TE_Woe_Lance
1533 0 0 0 0 0 # Warrior_Balmung
1534 0 0 0 0 0 # Spanner_C
1537 0 0 0 0 0 # Quadrille_C
1542 0 0 0 0 0 # BF_Morning_Star1
1543 0 0 0 0 0 # BF_Morning_Star2
1546 0 0 0 0 0 # Krieger_Onehand_Mace1
1547 0 0 0 0 0 # Mace_Of_Madness
1563 0 0 0 0 0 # Diary_Of_Great_Sage_C
1567 0 0 0 0 0 # Hardback_C
1574 0 0 0 0 0 # BF_Book1
1575 0 0 0 0 0 # BF_Book2
1576 0 0 0 0 0 # Krieger_Book1
1577 0 0 0 0 0 # Krieger_Book2
1578 0 0 0 0 0 # Book_Of_Prayer
1580 0 0 0 0 0 # Encyclopedia_C
1583 0 0 0 0 0 # P_Book1
1588 0 0 0 0 0 # Metal_Book
1591 0 0 0 0 0 # TE_Woe_Book
1623 0 0 0 0 0 # Mighty_Staff_C
1628 0 0 0 0 0 # Survival_Rod_C
1632 0 0 0 0 0 # BF_Staff1
1633 0 0 0 0 0 # BF_Staff2
1634 0 0 0 0 0 # BF_Staff3
1635 0 0 0 0 0 # BF_Staff4
1638 0 0 0 0 0 # Healing_Staff_C
1640 0 0 0 0 0 # Krieger_Onehand_Staff1
1641 0 0 0 0 0 # Krieger_Onehand_Staff2
1642 0 0 0 0 0 # Staff_Of_Darkness
1650 0 0 0 0 0 # P_Staff1
1651 0 0 0 0 0 # P_Staff2
1652 0 0 0 0 0 # Tourist_Staff
1653 0 0 0 0 0 # Staff_Of_Healing_C
1658 0 0 0 0 0 # P_Staff3
1667 0 0 0 0 0 # TE_Woe_Staff
1699 0 0 0 0 0 # Paradise_Foxtail_Staff_I
1703 0 0 0 0 0 # Bow__
1728 0 0 0 0 0 # Balistar_C
1729 0 0 0 0 0 # Bow_Of_Rudra_C
1738 0 0 0 0 0 # BF_Bow1
1739 0 0 0 0 0 # BF_Bow2
1743 0 0 0 0 0 # Krieger_Bow1
1744 0 0 0 0 0 # Bow_Of_Evil
1747 0 0 0 0 0 # P_Bow1
1748 0 0 0 0 0 # P_Bow2
1749 0 0 0 0 0 # Tourist_Bow
1817 0 0 0 0 0 # Kaiser_Knuckle_C
1823 0 0 0 0 0 # BF_Knuckle1
1824 0 0 0 0 0 # BF_Knuckle2
1826 0 0 0 0 0 # Krieger_Knuckle1
1827 0 0 0 0 0 # Krieger_Knuckle2
1828 0 0 0 0 0 # Monk_Knuckle
1829 0 0 0 0 0 # Fist_C
1831 0 0 0 0 0 # P_Knuckle1
1834 0 0 0 0 0 # TE_Woe_Fist
1923 0 0 0 0 0 # BF_Instrument1
1924 0 0 0 0 0 # BF_Instrument2
1927 0 0 0 0 0 # Krieger_Instrument1
1928 0 0 0 0 0 # Berserk_Guitar_I
1929 0 0 0 0 0 # Guitar_C
1931 0 0 0 0 0 # P_Guitar1
1932 0 0 0 0 0 # TE_Woe_Guitar
1977 0 0 0 0 0 # BF_Whip1
1978 0 0 0 0 0 # BF_Whip2
1981 0 0 0 0 0 # Krieger_Whip1
1982 0 0 0 0 0 # Phenomena_Whip
1983 0 0 0 0 0 # Rante_C
1986 0 0 0 0 0 # P_Tail1
1987 0 0 0 0 0 # TE_Woe_Rope
2002 0 0 0 0 0 # Krieger_Twohand_Staff1
2018 0 0 0 0 0 # Metal_Staff
2019 0 0 0 0 0 # TE_Woe_Two_Hand_Staff
2112 0 0 0 0 0 # Novice_Guard
2132 0 0 0 0 0 # Shelter_Resistance
2136 0 0 0 0 0 # Cracked_Buckler
2137 0 0 0 0 0 # Valkyrja
2140 0 0 0 0 0 # Energy_Rune_Guard
2152 0 0 0 0 0 # Anti_Demon_Shield_C
2178 0 0 0 0 0 # TE_Woe_Buckler
2179 0 0 0 0 0 # TE_Woe_Shield
2180 0 0 0 0 0 # TE_Woe_Magic_Guard
2352 0 0 0 0 0 # Novice_Plate
2369 0 0 0 0 0 # Freyja_Overcoat
2376 0 0 0 0 0 # Assaulter_Plate
2377 0 0 0 0 0 # Elite_Engineer_Armor
2378 0 0 0 0 0 # Assassin_Robe
2379 0 0 0 0 0 # Warlock_Battle_Robe
2380 0 0 0 0 0 # Medic_Robe
2381 0 0 0 0 0 # Elite_Archer_Suit
2382 0 0 0 0 0 # Elite_Shooter_Suit
2384 0 0 0 0 0 # Spritual_Tunic
2385 0 0 0 0 0 # Recuperative_Armor
2392 0 0 0 0 0 # Old_Pant
2393 0 0 0 0 0 # N_Adventurer
2394 0 0 0 0 0 # Krieger_Suit1
2395 0 0 0 0 0 # Krieger_Suit2
2396 0 0 0 0 0 # Krieger_Suit3
2414 0 0 0 0 0 # Novice_Boots
2428 0 0 0 0 0 # Freyja_Boots
2429 0 0 0 0 0 # Iron_Boots01
2430 0 0 0 0 0 # Iron_Boots02
2435 0 0 0 0 0 # Battle_Greave
2436 0 0 0 0 0 # Combat_Boots
2437 0 0 0 0 0 # Battle_Boots
2439 0 0 0 0 0 # Refresh_Shoes
2442 0 0 0 0 0 # Boots_Perforated
2443 0 0 0 0 0 # Fish_Shoes
2444 0 0 0 0 0 # Krieger_Shoes1
2445 0 0 0 0 0 # Krieger_Shoes2
2446 0 0 0 0 0 # Krieger_Shoes3
2456 0 0 0 0 0 # Para_Team_Boots1
2457 0 0 0 0 0 # Para_Team_Boots2
2458 0 0 0 0 0 # Para_Team_Boots3
2463 0 0 0 0 0 # Feral_Boots
2473 0 0 0 0 0 # Para_Team_Boots4
2496 0 0 0 0 0 # TE_Woe_Shoes
2497 0 0 0 0 0 # TE_Woe_Boots
2498 0 0 0 0 0 # TE_Woe_Magic_Sandal
2510 0 0 0 0 0 # Novice_Hood
2533 0 0 0 0 0 # Freyja_Cape
2535 0 0 0 0 0 # Cloak_Of_Survival_C
2538 0 0 0 0 0 # Commander_Manteau
2539 0 0 0 0 0 # Commander_Manteau_
2540 0 0 0 0 0 # Sheriff_Manteau
2543 0 0 0 0 0 # Sylphid_Manteau
2547 0 0 0 0 0 # Cheap_Running_Shirts
2548 0 0 0 0 0 # Muffler_C
2549 0 0 0 0 0 # Krieger_Muffler1
2560 0 0 0 0 0 # Para_Team_Manteau1
2564 0 0 0 0 0 # Feral_Tail
2566 0 0 0 0 0 # Half_Asprika
2571 0 0 0 0 0 # Para_Team_Manteau2
2634 0 0 0 0 0 # Bridegroom_Ring
2635 0 0 0 0 0 # Bride_Ring
2642 0 0 0 0 0 # Serin
2644 0 0 0 0 0 # The_Sign_
2647 0 0 0 0 0 # Nile_Rose
2668 0 0 0 0 0 # Women
2673 0 0 0 0 0 # Shining_Ring
2674 0 0 0 0 0 # Honor_Ring
2676 0 0 0 0 0 # Hunter_Earring
2681 0 0 0 0 0 # Republic_Ring
2686 0 0 0 0 0 # Elven_Ears_C
2687 0 0 0 0 0 # Steel_Flower_C
2688 0 0 0 0 0 # Critical_Ring_C
2689 0 0 0 0 0 # Earring_C
2690 0 0 0 0 0 # Ring_C
2691 0 0 0 0 0 # Necklace_C
2692 0 0 0 0 0 # Glove_C
2693 0 0 0 0 0 # Brooch_C
2694 0 0 0 0 0 # Rosary_C
2695 0 0 0 0 0 # Safety_Ring_C
2696 0 0 0 0 0 # Vesper_Core01_C
2697 0 0 0 0 0 # Vesper_Core02_C
2698 0 0 0 0 0 # Vesper_Core03_C
2699 0 0 0 0 0 # Vesper_Core04_C
2706 0 0 0 0 0 # Handcuff
2709 0 0 0 0 0 # 5_Anniversary_Coin
2710 0 0 0 0 0 # Bloody_Iron_Ball_C
2711 0 0 0 0 0 # Spiritual_Ring_C
2713 0 0 0 0 0 # Certificate_TW
2720 0 0 0 0 0 # Medal_Swordman
2721 0 0 0 0 0 # Medal_Thief
2722 0 0 0 0 0 # Medal_Acolyte
2723 0 0 0 0 0 # Medal_Mage
2724 0 0 0 0 0 # Medal_Archer
2725 0 0 0 0 0 # Medal_Merchant
2733 0 0 0 0 0 # Medal_Gunner
2734 0 0 0 0 0 # Directive_A
2735 0 0 0 0 0 # Directive_B
2738 0 0 0 0 0 # Shiny_Coin
2739 0 0 0 0 0 # Ordinary_Coin
2740 0 0 0 0 0 # Rusty_Coin
2741 0 0 0 0 0 # All_In_One_Ring
2742 0 0 0 0 0 # Lucky_Clip
2750 0 0 0 0 0 # Summer_Night_Dream
2752 0 0 0 0 0 # Praxinus_C
2753 0 0 0 0 0 # Beholder_Ring
2754 0 0 0 0 0 # Hallow_Ring
2755 0 0 0 0 0 # Clamorous_Ring
2756 0 0 0 0 0 # Chemical_Ring
2757 0 0 0 0 0 # Insecticide_Ring
2758 0 0 0 0 0 # Fisher_Ring
2759 0 0 0 0 0 # Decussate_Ring
2760 0 0 0 0 0 # Bloody_Ring
2761 0 0 0 0 0 # Satanic_Ring
2762 0 0 0 0 0 # Dragoon_Ring
2763 0 0 0 0 0 # Skul_Ring_C
2766 0 0 0 0 0 # Swordman_Figure
2767 0 0 0 0 0 # Acolyte_Figure
2768 0 0 0 0 0 # Mage_Figure
2769 0 0 0 0 0 # Archer_Figure
2770 0 0 0 0 0 # Thief_Figure
2771 0 0 0 0 0 # Merchant_Figure
2772 0 0 0 0 0 # Krieger_Ring1
2773 0 0 0 0 0 # Krieger_Ring2
2774 0 0 0 0 0 # Krieger_Ring3
2792 0 0 0 0 0 # Ring_Of_Flame_Lord_I
2793 0 0 0 0 0 # Ring_Of_Resonance_I
2794 0 0 0 0 0 # Magic_Stone_Ring
2795 0 0 0 0 0 # Green_Apple_Ring
2796 0 0 0 0 0 # Magical_Stone
2797 0 0 0 0 0 # Magical_Stone_
2798 0 0 0 0 0 # Will_Of_Exhausted_Angel
2816 0 0 0 0 0 # Radar_Ring1
2817 0 0 0 0 0 # Radar_Ring2
2818 0 0 0 0 0 # Radar_Ring3
2819 0 0 0 0 0 # Swordman_Manual
2820 0 0 0 0 0 # Thief_Manual
2821 0 0 0 0 0 # Acolyte_Manual
2822 0 0 0 0 0 # Archer_Manual
2823 0 0 0 0 0 # Merchant_Manual
2823 0 0 0 0 0 # Merchant_Manual
2824 0 0 0 0 0 # Mage_Manual
2832 0 0 0 0 0 # Freyja_Ring
2841 0 0 0 0 0 # Caracas_Ring
2843 0 0 0 0 0 # Gold_Trickle
2856 0 0 0 0 0 # Half_Megin
2857 0 0 0 0 0 # Half_Brysing
2863 0 0 0 0 0 # Ring_Of_Valkyrie
2864 0 0 0 0 0 # Light_Of_Cure
2865 0 0 0 0 0 # Seal_Of_Cathedral
2866 0 0 0 0 0 # Ring_Of_Archbishop
2885 0 0 0 0 0 # Mother_Heart
2885 0 0 0 0 0 # Mother_Heart
2940 0 0 0 0 0 # Ninja_Manual
2941 0 0 0 0 0 # Gunslinger_Manual
2942 0 0 0 0 0 # Taekwon_Manual
2944 0 0 0 0 0 # TE_Ring_Of_Protection
2945 0 0 0 0 0 # TE_Ring_Of_Rage
2946 0 0 0 0 0 # TE_Ring_Of_Defiance
2950 0 0 0 0 0 # Rune_Ring
5147 0 0 0 0 0 # Baseball_Cap
5149 0 0 0 0 0 # Silver_Tiara
5179 0 0 0 0 0 # Gold_Tiara
5265 0 0 0 0 0 # Apple_Of_Archer_C
5266 0 0 0 0 0 # Bunny_Band_C
5267 0 0 0 0 0 # Sahkkat_C
5268 0 0 0 0 0 # Lord_Circlet_C
5269 0 0 0 0 0 # Flying_Angel_
5279 0 0 0 0 0 # Drooping_Kitty_C
5280 0 0 0 0 0 # Magestic_Goat_C
5281 0 0 0 0 0 # Deviruchi_Cap_C
5286 0 0 0 0 0 # Pecopeco_Hairband
5288 0 0 0 0 0 # Red_Glasses
5293 0 0 0 0 0 # Ramen_Hat
5294 0 0 0 0 0 # Whisper_Mask
5306 0 0 0 0 0 # Freyja_Crown
5314 0 0 0 0 0 # Hockey_Mask
5315 0 0 0 0 0 # Observer
5326 0 0 0 0 0 # Masquerade_C
5327 0 0 0 0 0 # Orc_Hero_Helm_C
5328 0 0 0 0 0 # Evil_Wing_Ears_C
5329 0 0 0 0 0 # Dark_Blindfold_C
5330 0 0 0 0 0 # kRO_Drooping_Kitty_C
5331 0 0 0 0 0 # Corsair_C
5336 0 0 0 0 0 # Guildsman_Recruiter
5337 0 0 0 0 0 # Party_Recruiter_Hat
5338 0 0 0 0 0 # Bf_Recruiter_Hat
5339 0 0 0 0 0 # Friend_Recruiter_Hat
5346 0 0 0 0 0 # Gf_Recruiter_Hat
5391 0 0 0 0 0 # Toast_C
5394 0 0 0 0 0 # Bubblegum_Lower
5408 0 0 0 0 0 # Old_Bandanna
5410 0 0 0 0 0 # Bread_Bag2
5460 0 0 0 0 0 # Adv_Dragon_Skull
5461 0 0 0 0 0 # Adv_Whisper_Mask
5462 0 0 0 0 0 # Spiked_Scarf
5463 0 0 0 0 0 # Rainbow_Scarf
5492 0 0 0 0 0 # Boy
5493 0 0 0 0 0 # Ulle_Cap_I
5494 0 0 0 0 0 # Spinx_Helm_I
5521 0 0 0 0 0 # Angry_Mouth_C
5536 0 0 0 0 0 # Spare_Card
5551 0 0 0 0 0 # Holy_Egg_Hat
5583 0 0 0 0 0 # Para_Team_Hat1
5587 0 0 0 0 0 # Mosquito_Coil_1Use
5596 0 0 0 0 0 # 4Leaf_Clover_In_Mouth
5597 0 0 0 0 0 # Bubble_Gum_In_Mouth
5668 0 0 0 0 0 # Weird_Pumpkin_Hat
5793 0 0 0 0 0 # Ribbon_Of_Life
5794 0 0 0 0 0 # 3D_Glasses_
5796 0 0 0 0 0 # Cheer_Scarf
5797 0 0 0 0 0 # Cheer_Scarf2
5798 0 0 0 0 0 # Cheer_Scarf3
5799 0 0 0 0 0 # Cheer_Scarf4
5812 0 0 0 0 0 # Hat_Of_Expert
5814 0 0 0 0 0 # Ati_Atihan_Hat3
5817 0 0 0 0 0 # Valentine_Pledge
5818 0 0 0 0 0 # Carnival_Hat
5819 0 0 0 0 0 # Carnival_Circlet
5822 0 0 0 0 0 # Love_Chick_Hat
5855 0 0 0 0 0 # Fishing_Rod
6006 0 0 0 0 0 # Rice_Cake_Delivery_Box
6007 0 0 0 0 0 # New_Year_Rice_Cake_Soup
6009 0 0 0 0 0 # Large_Magical_Fan
6025 0 0 0 0 0 # Towel_Of_Memory
6027 0 0 0 0 0 # Crystal_Of_Feardoom
6028 0 0 0 0 0 # Seal_Scroll
6029 0 0 0 0 0 # Morocc_Tracing_Log
6034 0 0 0 0 0 # Weird_Part
6035 0 0 0 0 0 # Decaying_Stem
6036 0 0 0 0 0 # Invite_To_Meeting
6037 0 0 0 0 0 # Rough_File
6038 0 0 0 0 0 # Neat_Report
6039 0 0 0 0 0 # Piece_Of_Fish
6040 0 0 0 0 0 # Some_Of_Report
6042 0 0 0 0 0 # Ordinary_Branch
6043 0 0 0 0 0 # Letter_From_Lugen
6044 0 0 0 0 0 # Letter_From_Otto
6045 0 0 0 0 0 # Supply_Box
6048 0 0 0 0 0 # Unidentified_Mineral
6049 0 0 0 0 0 # Marlin
6051 0 0 0 0 0 # Gray_Hollow
6052 0 0 0 0 0 # Ornamental_Hairpin
6060 0 0 0 0 0 # Moon_Admin_Ticket
6074 0 0 0 0 0 # Bazett
6076 0 0 0 0 0 # Portable_Toolbox
6077 0 0 0 0 0 # Rough_Mineral
6078 0 0 0 0 0 # Stone_Fragments
6079 0 0 0 0 0 # Flower_Of_Alfheim
6080 0 0 0 0 0 # Manuk_Coin
6081 0 0 0 0 0 # Splendide_Coin
6082 0 0 0 0 0 # Spirit_Of_Alfheim
6084 0 0 0 0 0 # Bradium_Fragments
6085 0 0 0 0 0 # Shaggy_Muffler
6093 0 0 0 0 0 # Egg_Of_Draco
6101 0 0 0 0 0 # Attendance_Card
6102 0 0 0 0 0 # Report_On_Splendide
6103 0 0 0 0 0 # Report_On_Manuk
6116 0 0 0 0 0 # Succu_Pet_Coupon
6117 0 0 0 0 0 # Imp_Pet_Coupon
6118 0 0 0 0 0 # Chung_E_Pet_Coupon
6121 0 0 0 0 0 # Makeover_Brush
6122 0 0 0 0 0 # Paint_Brush
6124 0 0 0 0 0 # Wolf
6125 0 0 0 0 0 # Lucky_Box
6126 0 0 0 0 0 # Happy_Box
6127 0 0 0 0 0 # Purification_Stone
6129 0 0 0 0 0 # Ticket_Nightmare
6130 0 0 0 0 0 # Ticket_Loli_Ruri
6132 0 0 0 0 0 # Ticket_Incubus
6133 0 0 0 0 0 # Ticket_Miyabi_Ningyo
6134 0 0 0 0 0 # Ticket_Whisper
6135 0 0 0 0 0 # Ticket_Wicked_Nymph
6136 0 0 0 0 0 # Ticket_Medusa
6137 0 0 0 0 0 # Ticket_Stoneshooter