summaryrefslogblamecommitdiff
path: root/db/re/item_db.conf
blob: 554c45046e646e642a553b727f6775329c7fe850 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
8773
8774
8775
8776
8777
8778
8779
8780
8781
8782
8783
8784
8785
8786
8787
8788
8789
8790
8791
8792
8793
8794
8795
8796
8797
8798
8799
8800
8801
8802
8803
8804
8805
8806
8807
8808
8809
8810
8811
8812
8813
8814
8815
8816
8817
8818
8819
8820
8821
8822
8823
8824
8825
8826
8827
8828
8829
8830
8831
8832
8833
8834
8835
8836
8837
8838
8839
8840
8841
8842
8843
8844
8845
8846
8847
8848
8849
8850
8851
8852
8853
8854
8855
8856
8857
8858
8859
8860
8861
8862
8863
8864
8865
8866
8867
8868
8869
8870
8871
8872
8873
8874
8875
8876
8877
8878
8879
8880
8881
8882
8883
8884
8885
8886
8887
8888
8889
8890
8891
8892
8893
8894
8895
8896
8897
8898
8899
8900
8901
8902
8903
8904
8905
8906
8907
8908
8909
8910
8911
8912
8913
8914
8915
8916
8917
8918
8919
8920
8921
8922
8923
8924
8925
8926
8927
8928
8929
8930
8931
8932
8933
8934
8935
8936
8937
8938
8939
8940
8941
8942
8943
8944
8945
8946
8947
8948
8949
8950
8951
8952
8953
8954
8955
8956
8957
8958
8959
8960
8961
8962
8963
8964
8965
8966
8967
8968
8969
8970
8971
8972
8973
8974
8975
8976
8977
8978
8979
8980
8981
8982
8983
8984
8985
8986
8987
8988
8989
8990
8991
8992
8993
8994
8995
8996
8997
8998
8999
9000
9001
9002
9003
9004
9005
9006
9007
9008
9009
9010
9011
9012
9013
9014
9015
9016
9017
9018
9019
9020
9021
9022
9023
9024
9025
9026
9027
9028
9029
9030
9031
9032
9033
9034
9035
9036
9037
9038
9039
9040
9041
9042
9043
9044
9045
9046
9047
9048
9049
9050
9051
9052
9053
9054
9055
9056
9057
9058
9059
9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
9072
9073
9074
9075
9076
9077
9078
9079
9080
9081
9082
9083
9084
9085
9086
9087
9088
9089
9090
9091
9092
9093
9094
9095
9096
































































































































































































































































































































































































































































































































































































                                                                                                     

























































































































































































































































































































































































































































































































































                                               












                                                























                                    
                                        


      







































































































































                                      































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                      

































                                      



































































                                      





























                                                                                            



                       

            



















                            

                 





                                      




















                                      
                                                                                 



                                



















































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                     
           












































































                           
           













































































                             
                           
                       
                  

             
















































































                            
          









































































































































































































                             
            

             






















                              

           

















































                                   


              





































                         
                   











































































































































                               


              
















































                            

             

























































































































































                              


               






















                        


              























                            

             

























































































































































                                

             






















                           


             























                            

             






















                            


             


















                      



























































































































































                               











































































































                                     


               















































































































































































                                
                              



















































































































































































































































































































































                                   


















































































































































































































                                   











                     
                   





                      


                                
                  


               











                     
                   





                      


                             
                  


               











                     
                   





                      


                                  
                  


               











                     
                   

                      
                          



             


                             
                  


               











                     
                   





                      


                           


                  
              











                     
                   





                      


                            















                     
                   

                      








                            

             
















































                                


             






















                                   
             

             






















                                     


             














                      



             

























                            










































































































































































                                        
          










































































                                  
               




















































































                                     
          

































































































                                      








                            
          











































                            

























































                               
              






























                           
          










































































































                            
          










































































































                               
          















































































                             
          




























































































































                             








                          
          

























                            
          











































                            








                             
           

























































                             
           









































































































































































































                                    
                               
                    


              
          

             
            
            





                       
               


























                      



























































































                               
           









































































                             
            
            
            












                       




















                 







                         
              

             
           
            
            





                       
               





                      




















                 












                             
            












                       




















                 












                                     
            












                       




















                 







                               
               



             
            












                       




















                 










                             
           
            
            












                       




















                 

  





                            
              
          
           
           







                       
              







                      



                       


             
          
          
            
            





                       
              


                      




                         



             


























                               

















































































                               

                                
































                                     
           




























































































































                                   


























                              








                               
          
















                      



























                              

                               























                      








                            
           
















                      


























                         








































































































































































































































































































                                
















































































                               


























                             



































































































































































































































































































































                                








                              
           

















                       

                             





                    
           







                       
               
















                              
            

























                              
            







                       
               








                      

                           





                    
            

























                             
           







                       
              
















                          
           







                       
              
















                               
           







                       
               
















                          
           
            
            





                       
               





                      




















                 










                            
           







                       
              
















                               
            

























                               
            
















                       








                            
           







                       
               
















                                
            







                       
               
















                            
           







                       
               
















                             
            







                       
               
















                            
            







                       
               







                      




                             
             
              

           
           







                       
              







                      



































                                 
          

















































































































































































































                                     

              


             
          
















                      





















































                          



































                               


               
           




                     
               












                            



                




                     
               












                                 



                




                     
               












                            



                




                     
               












                             


                





                     
               












                               



                




                     
               








                            




                                   
             
              
           














                            



                              



                




                     
               












                              



                




                     
               








                            










































                             






















                             


      






























































                           
           


































































































































































                                  
            












                       




















                 



























































































                               
          





































































































































                               
           
            
            












                       




















                 




































































































































































                              

                               



























































                          
          

















                       

                                 



















































                         

                              
































                          
           
































                          
                       










                      

                              












                     
                       













                      


             

           
          





                     
                       
               
              


                      




                         












                    
           





                     
                       


















                       
           





                     
                       


















                          
           





                     
                       

























                        
                       

























                           
                       









                      















                               
                       


















                              
           





                     
                       









                      


























                             


























                                


























                                





















































                           


























                        







































                        
            
                         
                    
                    



             



                     

                    
                 




















                      

                      

  















































































                             


































                           
            




















































                                
            













































                               






                           
           


















                       






                           
           


























                       
            


















































































                           
           



















                       



























                            



























                             



























                             
            

                           
























                       



























                       



























                          
















                                     

               








                          
            

                          











                     
                     
               
               














                                                                               



























                           

















































































































































































































                                     















































































































                                                        















                                     
















                            
           
















































































































































                                     









                              
           


                       







                            
           


                       







                      
           


















































                            




























                                                             

 
//================= Hercules Database =====================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2014-2015  Hercules Dev Team
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Items Database
//=========================================================================

item_db: (
//  Items Database
//
/******************************************************************************
 ************* Entry structure ************************************************
 ******************************************************************************
{
	// =================== Mandatory fields ===============================
	Id: ID                        (int)
	AegisName: "Aegis_Name"       (string)
	Name: "Item Name"             (string)
	// =================== Optional fields 
================================
	Type: Item Type               (string, defaults to "IT_ETC")
	Buy: Buy Price                (int, defaults to Sell * 2)
	Sell: Sell Price              (int, defaults to Buy / 2)
	Weight: Item Weight           (int, defaults to 0)
	Atk: Attack                   (int, defaults to 0)
	Matk: Magical Attack          (int, defaults to 0, ignored in pre-re)
	Def: Defense                  (int, defaults to 0)
	Range: Attack Range           (int, defaults to 0)
	MinRange: Minimal Attack Range (int, defaults to 0)
	Slots: Slots                  (int, defaults to 0)
	Job: Job mask                 (int, defaults to all jobs = 0xFFFFFFFF)
	Upper: Upper mask             (bitmask array, string or int, defaults to "ITEMUPPER_ALL")
	Gender: Gender                (string, defaults to "SEX_ANY")
	Loc: Equip location           (bitmask array, string or int, required value for equipment)
	WeaponLv: Weapon Level        (int, defaults to 0)
	EquipLv: Equip required level (int, defaults to 0)
	EquipLv: [min, max]           (alternative syntax with min / max level)
	Refine: Refineable            (boolean, defaults to true)
	DisableOptions: true/false    (boolean, defaults to false !!for equipments only!!) [Smokexyz]
	Subtype: Item Subtype         (int, defaults to 0)
	ViewSprite: Sprite view ID    (int, defaults to 0)
	BindOnEquip: true/false       (boolean, defaults to false)
	ForceSerial: true/false       (boolean, defaults to false)
	BuyingStore: true/false       (boolean, defaults to false)
	Delay: Delay to use item      (int, defaults to 0)
	FloorLifeTime: Delay to remove item from ground (int, default flooritem_lifetime)
	KeepAfterUse: true/false      (boolean, defaults to false)
	DropAnnounce: true/false      (boolean, defaults to false)
	AllowPickup: true/false       (boolean, defaults to true)
	Charm: true/false             (boolean, defaults to false)
	MaxFloorOffset: [x, y]        (int, defaults to 8)
	MaxFloorOffset: offset        (int, defaults to 8)
	RequiredStr: required strength (int, default to 0)
	RequiredAgi: required agility  (int, default to 0)
	RequiredVit: required vitality (int, default to 0)
	RequiredInt: required intellect (int, default to 0)
	RequiredDex: required dexterity (int, default to 0)
	RequiredLuk: required luck     (int, default to 0)
	RequiredMaxHp: required max hp (int, default to 0)
	RequiredMaxSp: required max sp (int, default to 0)
	RequiredAtk: required attack   (int, default to 0)
	RequiredMAtkMin: required minimal magic attack (int, default to 0)
	RequiredMAtkMax: required maximum magic attack (int, default to 0)
	RequiredDef: required defence  (int, default to 0)
	RequiredMDef: required magic defence (int, default to 0)
	RequiredSkill: required skill (int, default to 0)
	UseEffect: effect if use/equip item success (int, default to -1)
	UseFailEffect: effect if use/equip item failed (int, default to -1)
	UnequipEffect: effect if unequip item success (int, default to -1)
	UnequipFailEffect: effect if unequip item failed (int, default to -1)
	Trade: {                      (defaults to no restrictions)
		override: GroupID             (int, defaults to 100)
		nodrop: true/false            (boolean, defaults to false)
		notrade: true/false           (boolean, defaults to false)
		partneroverride: true/false   (boolean, defaults to false)
		noselltonpc: true/false       (boolean, defaults to false)
		nocart: true/false            (boolean, defaults to false)
		nostorage: true/false         (boolean, defaults to false)
		nogstorage: true/false        (boolean, defaults to false)
		nomail: true/false            (boolean, defaults to false)
		noauction: true/false         (boolean, defaults to false)
	}
	Nouse: {                      (defaults to no restrictions)
		override: GroupID             (int, defaults to 100)
		sitting: true/false           (boolean, defaults to false)
	}
	Stack: [amount, type]         (int, defaults to 0)
	Sprite: SpriteID              (int, defaults to 0)
	Script: <"
		Script
		(it can be multi-line)
	">
	OnEquipScript: <" OnEquip Script (can also be multi-line) ">
	OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">
	OnDropScript: <" OnDrop Script (can also be multi-line) ">
	OnTakeScript: <" OnTake Script (can also be multi-line) ">
	OnInsertCardScript: <" OnInsert card Script (can also be multi-line) ">
	AllowCards: {
		idNUM: amount         (NUM is id number, amount is amount)
	}
	AllowAmmo: {
		idNUM: something      (NUM is id number)
	}
},
******************************************************************************/

{
    Id: 501
    AegisName: "Acorn"
    Name: "Acorn"
    Type: "IT_HEALING"
    Buy: 20
    Sell: 7
    Weight: 3
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 501
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        if (@useType == 1)
        {
            if (!getmapxy(.@map$, .@x, .@y, 0))
            {
                monster(.@map$, .@x, .@y, l("Oak"), 1017, 1);
            }
        }
        else
        {
            @min = 12;
            @max = 18;
            @delay = 3;
            @type = 1;
            doevent "rand_sc_heal::OnUse";
        }
    ">
},
{
    Id: 502
    AegisName: "Bread"
    Name: "Bread"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 15
    Weight: 25
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 502
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 25;
        @max = 40;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 503
    AegisName: "Fungus"
    Name: "Fungus"
    Type: "IT_HEALING"
    Buy: 45
    Sell: 15
    Weight: 8
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 503
    BindOnEquip: false
    BuyingStore: true
    Delay: 1000
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_end SC_POISON;
        @min = 25;
        @max = 35;
        @delay = 5;
        @type = 4;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 504
    AegisName: "Cheese"
    Name: "Cheese"
    Type: "IT_HEALING"
    Buy: 55
    Sell: 18
    Weight: 3
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 504
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 30;
        @max = 50;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 505
    AegisName: "PiouLegs"
    Name: "Piou Legs"
    Type: "IT_HEALING"
    Buy: 15
    Sell: 5
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 505
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 7;
        @max = 13;
        @delay = 2;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 506
    AegisName: "LettuceLeaf"
    Name: "Lettuce Leaf"
    Type: "IT_HEALING"
    Buy: 30
    Sell: 10
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 506
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 15;
        @max = 25;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 507
    AegisName: "Piberries"
    Name: "Piberries"
    Type: "IT_HEALING"
    Buy: 20
    Sell: 5
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 507
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 12;
        @max = 23;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 508
    AegisName: "SeaDrops"
    Name: "Sea Drops"
    Type: "IT_HEALING"
    Buy: 3
    Sell: 1
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 508
    BindOnEquip: false
    BuyingStore: true
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start SC_POISON, 30000, 0;
        @min = 10;
        @max = 20;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 509
    AegisName: "Aquada"
    Name: "Aquada"
    Type: "IT_HEALING"
    Buy: 120
    Sell: 40
    Weight: 16
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 509
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 75;
        @max = 100;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 510
    AegisName: "PinkBlobime"
    Name: "Pink Blobime"
    Type: "IT_HEALING"
    Buy: 10
    Sell: 3
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 510
    BindOnEquip: false
    BuyingStore: true
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start2 SC_POISON, 1, 30, 3333;
        @min = 2;
        @max = 6;
        @delay = 1;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 511
    AegisName: "PurpleBlobime"
    Name: "Purple Blobime"
    Type: "IT_HEALING"
    Buy: 20
    Sell: 4
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 511
    BindOnEquip: false
    BuyingStore: true
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start2 SC_POISON, 1, 30, 6666;
        @min = 30;
        @max = 70;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 512
    AegisName: "HalfCroconut"
    Name: "Half Croconut"
    Type: "IT_HEALING"
    Buy: 75
    Sell: 25
    Weight: 38
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 512
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 65;
        @max = 90;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 513
    AegisName: "Croconut"
    Name: "Croconut"
    Type: "IT_HEALING"
    Buy: 100
    Sell: 35
    Weight: 80
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 513
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    Script: <"
        doevent "Croconut::OnUse";
    ">
},
{
    Id: 515
    AegisName: "Plushroom"
    Name: "Plushroom"
    Type: "IT_HEALING"
    Buy: 42
    Sell: 14
    Weight: 8
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 515
    BindOnEquip: false
    BuyingStore: true
    Delay: 1000
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start SC_ATTHASTE_POTION1, 15000, 5;
        @min = 20;
        @max = 30;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 516
    AegisName: "PumpkinSeeds"
    Name: "Pumpkin Seeds"
    Type: "IT_HEALING"
    Buy: 5
    Sell: 2
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 516
    BindOnEquip: false
    BuyingStore: true
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start2 SC_POISON, 1, 10, 2500;
        heal 1, 0;
    ">
},
{
    Id: 517
    AegisName: "DeliciousCookie"
    Name: "Delicious Cookie"
    Type: "IT_ARMOR"
    Buy: 30
    Sell: 10
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 517
    BindOnEquip: false
    BuyingStore: false
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 518
    AegisName: "UrchinMeat"
    Name: "Urchin Meat"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 18
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 518
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 28;
        @max = 35;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 519
    AegisName: "EasterEgg"
    Name: "Easter Egg"
    Type: "IT_HEALING"
    Buy: 5
    Sell: 2
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 519
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 60;
        @max = 75;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 520
    AegisName: "PiberriesInfusion"
    Name: "Piberries Infusion"
    Type: "IT_HEALING"
    Buy: 140
    Sell: 20
    Weight: 15
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 520
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 110;
        @max = 130;
        @delay = 5;
        @type = 2;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 521
    AegisName: "FatesPotion"
    Name: "Fates Potion"
    Type: "IT_HEALING"
    Buy: 250
    Sell: 80
    Weight: 17
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 521
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 240;
        @max = 260;
        @delay = 5;
        @type = 2;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 522
    AegisName: "ClothoLiquor"
    Name: "Clotho Liquor"
    Type: "IT_HEALING"
    Buy: 600
    Sell: 150
    Weight: 16
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 522
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 575;
        @max = 625;
        @delay = 5;
        @type = 2;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 523
    AegisName: "LachesisBrew"
    Name: "Lachesis Brew"
    Type: "IT_HEALING"
    Buy: 1000
    Sell: 150
    Weight: 14
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 523
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 1100;
        @max = 1300;
        @delay = 5;
        @type = 2;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 524
    AegisName: "AtroposMixture"
    Name: "Atropos Mixture"
    Type: "IT_HEALING"
    Buy: 2450
    Sell: 300
    Weight: 15
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 524
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 2300;
        @max = 2550;
        @delay = 5;
        @type = 2;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 525
    AegisName: "ElixirOfLife"
    Name: "Elixir Of Life"
    Type: "IT_HEALING"
    Buy: 5000
    Sell: 500
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 525
    BindOnEquip: false
    BuyingStore: true
    Delay: 1000
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        percentheal 100, 100;
    ">
},
{
    Id: 526
    AegisName: "IronShovel"
    Name: "Iron Shovel"
    Type: "IT_USABLE"
    Buy: 3000
    Sell: 100
    Weight: 210
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 526
    BindOnEquip: false
    BuyingStore: true
    KeepAfterUse: true
    Sprite: 0
    Script: <"
        doevent "Shovel::OnUse";
    ">
},
{
    Id: 527
    AegisName: "PumpkishJuice"
    Name: "Pumpkish Juice"
    Type: "IT_USABLE"
    Buy: 200
    Sell: 5
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 527
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 30;
        @max = 50;
        @delay = 4;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 528
    AegisName: "Manana"
    Name: "Manana"
    Type: "IT_DELAYCONSUME"
    Buy: 100
    Sell: 35
    Weight: 10
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Refine: false
    ViewSprite: 528
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 70;
        @max = 80;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 529
    AegisName: "Curshroom"
    Name: "Curshroom"
    Type: "IT_HEALING"
    Buy: 150
    Sell: 25
    Weight: 10
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 529
    BindOnEquip: false
    BuyingStore: true
    Delay: 1000
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        sc_start SC_ATTHASTE_POTION1, 30000, 5;
        sc_end SC_POISON;
        @min = 40;
        @max = 50;
        @delay = 5;
        @type = 3;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 530
    AegisName: "Carrot"
    Name: "Carrot"
    Type: "IT_HEALING"
    Buy: 30
    Sell: 8
    Weight: 3
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Refine: false
    ViewSprite: 530
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 20;
        @max = 30;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 531
    AegisName: "RedPlushWine"
    Name: "Red Plush Wine"
    Type: "IT_HEALING"
    Buy: 100
    Sell: 20
    Weight: 10
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Refine: false
    ViewSprite: 531
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 40;
        @max = 90;
        @delay = 5;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 536
    AegisName: "PetcaringGuide"
    Name: "Fluffy Animals who Love Their Owners"
    Type: "IT_USABLE"
    Buy: 70
    Sell: 10
    Weight: 20
    KeepAfterUse: true
    Script: <"
        doevent "#Book-Petcaring::OnUse";
    ">
},
{
    Id: 537
    AegisName: "BookOfLaws"
    Name: "The Book of Laws"
    Type: "IT_USABLE"
    Buy: 0
    Sell: 0
    Weight: 10
    KeepAfterUse: true
    Refine: false
    Script: <"
        doevent "@rules::OnUseBook";
    ">
},
{
    Id: 538
    AegisName: "FishingGuideVolI"
    Name: "Fishing Guide Vol. I"
    Type: "IT_USABLE"
    Buy: 60
    Sell: 10
    Weight: 30
    KeepAfterUse: true
    Refine: false
    Script: <"
        doevent "#Book-Fishing1::OnUse";
    ">
},
{
    Id: 539
    AegisName: "RoastedMaggot"
    Name: "Roasted Maggot"
    Type: "IT_HEALING"
    Buy: 110
    Sell: 55
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 539
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 55;
        @max = 155;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 540
    AegisName: "RedApple"
    Name: "Red Apple"
    Type: "IT_HEALING"
    Buy: 99
    Sell: 5
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 540
    BindOnEquip: false
    BuyingStore: true
    Delay: 400
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 100;
        @max = 400;
        @delay = 4;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 541
    AegisName: "CactusPotion"
    Name: "Cactus Potion"
    Type: "IT_HEALING"
    Buy: 70
    Sell: 35
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 541
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 10;
        @max = 1000;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 542
    AegisName: "CactusDrink"
    Name: "Cactus Drink"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 542
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 543
    AegisName: "ApanaCake"
    Name: "Apana Cake"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 543
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 544
    AegisName: "Beer"
    Name: "Beer"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 544
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 545
    AegisName: "Blueberries"
    Name: "Blueberries"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 545
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 546
    AegisName: "Candy"
    Name: "Candy"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 546
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 547
    AegisName: "BottleOfSweaWater"
    Name: "Bottle Of Sea Water"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 547
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 548
    AegisName: "CandyCane"
    Name: "Candy Cane"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 548
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 549
    AegisName: "Cherry"
    Name: "Cherry"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 549
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 550
    AegisName: "CherryCake"
    Name: "CherryCake"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 550
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 551
    AegisName: "ChickenLeg"
    Name: "Chicken Leg"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 551
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 552
    AegisName: "ChocolateMouboo"
    Name: "Chocolate Mouboo"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 552
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 553
    AegisName: "GingerBreadMan"
    Name: "Ginger Bread Man"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 553
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 554
    AegisName: "GoldenApple"
    Name: "Golden Apple"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 554
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 555
    AegisName: "JarOfBlood"
    Name: "Jar Of Blood"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 555
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 556
    AegisName: "JellyBeans"
    Name: "Jelly Beans"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 556
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 557
    AegisName: "Lollipop"
    Name: "Lollipop"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 557
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 558
    AegisName: "Mashmallow"
    Name: "Mashmallow"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 558
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 559
    AegisName: "Milk"
    Name: "Milk"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 556
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 560
    AegisName: "Orange"
    Name: "Orange"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 560
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 561
    AegisName: "OrangeCupcake"
    Name: "Orange Cupcake"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 561
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 562
    AegisName: "Pear"
    Name: "Pear"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 562
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 563
    AegisName: "Plum"
    Name: "Plum"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 563
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 564
    AegisName: "PumpkinJuice"
    Name: "Pumpkin Juice"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 564
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 565
    AegisName: "PumpkinSeed"
    Name: "Pumpkin Seed"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 565
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 566
    AegisName: "BigPumpkinSeed"
    Name: "Big Pumpkin Seed"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 566
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 567
    AegisName: "SkullBloodyMug"
    Name: "SkullBloodyMug"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 567
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 568
    AegisName: "SkullPotion"
    Name: "Skull Potion"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 568
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 569
    AegisName: "SmallMushroom"
    Name: "Small Mushroom"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 569
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 570
    AegisName: "Steak"
    Name: "Steak"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 570
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 571
    AegisName: "TonoriDelight"
    Name: "Tonori Delight"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 571
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 572
    AegisName: "XmasCake"
    Name: "XmasCake"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 572
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 573
    AegisName: "XmasCandyCane"
    Name: "Xmas Candy Cane"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 573
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 574
    AegisName: "ZombieNachos"
    Name: "Zombie Nachos"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 574
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 583
    AegisName: "ChocolateBiscuit"
    Name: "Chocolate Biscuit"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 583
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 584
    AegisName: "ChocolateBar"
    Name: "Chocolate Bar"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 584
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 585
    AegisName: "CaveSnakeEgg"
    Name: "Cave Snake Egg"
    Type: "IT_HEALING"
    Buy: 50
    Sell: 25
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 585
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 4;
        @max = 400;
        @delay = 3;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 586
    AegisName: "Grenade"
    Name: "Grenade"
    Type: "IT_USABLE"
    Buy: 700
    Sell: 350
    Weight: 40
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 541
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: 52 // TODO FIXME: We should add to db/constants.conf instead of using numbers
    Script: <"
    itemskill SM_MAGNUM,1;
    ">
},
{
    Id: 587
    AegisName: "BugLeg"
    Name: "Bug Leg"
    Type: "IT_HEALING"
    Buy: 30
    Sell: 10
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 587
    BindOnEquip: false
    BuyingStore: true
    Delay: 500
    Sprite: 0
    UseEffect: "EFFECT_HEAL"
    Script: <"
        @min = 1;
        @max = 3;
        @delay = 2;
        @type = 1;
        doevent "rand_sc_heal::OnUse";
    ">
},
{
    Id: 588
    AegisName: "Toothbrush"
    Name: "Toothbrush"
    Type: "IT_USABLE"
    Buy: 0
    Sell: 0
    Weight: 1
    KeepAfterUse: false
    Refine: false
    BuyingStore: false
	Trade: {
		notrade: true
		noselltonpc: true
		nocart: true
		nostorage: false
		nogstorage: true
		nomail: true
		noauction: true
	}
    Script: <"
        //doevent "@rules::OnUseBook";
        announce l("@@ has the clear smile of victory!", strcharinfo(0)), bc_all;
        getitem StrangeCoin, 10;
    ">
},
{
    Id: 700
    AegisName: "SmallTentacles"
    Name: "Small Tentacles"
    Type: "IT_ETC"
    Buy: 50
    Sell: 16
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 700
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 701
    AegisName: "PiouFeathers"
    Name: "Piou Feathers"
    Type: "IT_USABLE"
    Buy: 10
    Sell: 3
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 701
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 702
    AegisName: "TortugaShellFragment"
    Name: "Tortuga Shell Fragment"
    Type: "IT_ETC"
    Buy: 25
    Sell: 8
    Weight: 25
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 702
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 703
    AegisName: "HalfEggshell"
    Name: "Half Eggshell"
    Type: "IT_ETC"
    Buy: 40
    Sell: 13
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 703
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 704
    AegisName: "RattoTail"
    Name: "Ratto Tail"
    Type: "IT_ETC"
    Buy: 30
    Sell: 10
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 704
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 705
    AegisName: "RattoTeeth"
    Name: "Ratto Teeth"
    Type: "IT_ETC"
    Buy: 30
    Sell: 10
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 705
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 706
    AegisName: "CrocClaw"
    Name: "Croc Claw"
    Type: "IT_ETC"
    Buy: 60
    Sell: 20
    Weight: 45
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 706
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 707
    AegisName: "SquichyClaws"
    Name: "Squichy Claws"
    Type: "IT_ETC"
    Buy: 250
    Sell: 40
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 707
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 708
    AegisName: "TortugaShell"
    Name: "Tortuga Shell"
    Type: "IT_ETC"
    Buy: 90
    Sell: 30
    Weight: 95
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 708
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 709
    AegisName: "TortugaTongue"
    Name: "Tortuga Tongue"
    Type: "IT_ETC"
    Buy: 18
    Sell: 6
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 709
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 710
    AegisName: "Pearl"
    Name: "Pearl"
    Type: "IT_ETC"
    Buy: 1000
    Sell: 200
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 710
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 711
    AegisName: "Coral"
    Name: "Coral"
    Type: "IT_ETC"
    Buy: 100
    Sell: 35
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 711
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 712
    AegisName: "BlueCoral"
    Name: "Blue Coral"
    Type: "IT_ETC"
    Buy: 80
    Sell: 27
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 712
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 713
    AegisName: "FishBox"
    Name: "Fish Box"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 1250
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 713
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 714
    AegisName: "AquadaBox"
    Name: "Aquada Box"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 850
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 714
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 715
    AegisName: "CroconutBox"
    Name: "Croconut Box"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 1400
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 715
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 716
    AegisName: "PlushroomBox"
    Name: "Plushroom Box"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 720
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 716
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 717
    AegisName: "PoisonedDish"
    Name: "Poisoned Dish"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 717
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 718
    AegisName: "JohanneKey"
    Name: "Johanne Key"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 718
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Sprite: 0
},
{
    Id: 719
    AegisName: "LeftCraftyWing"
    Name: "Left Crafty Wing"
    Type: "IT_ETC"
    Buy: 10
    Sell: 3
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 719
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 720
    AegisName: "BatTeeth"
    Name: "Bat Teeth"
    Type: "IT_ETC"
    Buy: 10
    Sell: 3
    Weight: 3
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 720
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 721
    AegisName: "RightCraftyWing"
    Name: "Right Crafty Wing"
    Type: "IT_ETC"
    Buy: 10
    Sell: 3
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 721
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 722
    AegisName: "Pumpkin"
    Name: "Pumpkin"
    Type: "IT_ETC"
    Buy: 15
    Sell: 5
    Weight: 530
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 722
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 723
    AegisName: "MushroomSpores"
    Name: "Mushroom Spores"
    Type: "IT_ETC"
    Buy: 5
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 723
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 724
    AegisName: "Moss"
    Name: "Moss"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 724
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 725
    AegisName: "Tentacles"
    Name: "Tentacles"
    Type: "IT_ETC"
    Buy: 100
    Sell: 30
    Weight: 8
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 725
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 726
    AegisName: "CommonCarp"
    Name: "Common Carp"
    Type: "IT_ETC"
    Buy: 600
    Sell: 60
    Weight: 200
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 726
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 727
    AegisName: "GrassCarp"
    Name: "Grass Carp"
    Type: "IT_ETC"
    Buy: 900
    Sell: 80
    Weight: 200
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 727
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 728
    AegisName: "FishingRod"
    Name: "Fishing Rod"
    Type: "IT_ETC"
    Buy: 5000
    Sell: 150
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 728
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 729
    AegisName: "FluffyFur"
    Name: "Fluffy Fur"
    Type: "IT_ETC"
    Buy: 200
    Sell: 8
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 729
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 730
    AegisName: "GuildCertification"
    Name: "Guild Certification"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 100
},
{
    Id: 731
    AegisName: "Diamond"
    Name: "Diamond"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 731
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 732
    AegisName: "Ruby"
    Name: "Ruby"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 732
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 733
    AegisName: "Emerald"
    Name: "Emerald"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 733
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 734
    AegisName: "Sapphire"
    Name: "Sapphire"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 734
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 735
    AegisName: "Topaz"
    Name: "Topaz"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 735
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 736
    AegisName: "Amethyst"
    Name: "Amethyst"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 736
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 737
    AegisName: "BlackPearl"
    Name: "Black Pearl"
    Type: "IT_ETC"
    Buy: 20000
    Sell: 6000
    Weight: 200
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 737
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 738
    AegisName: "Bloodstone"
    Name: "Blooodstone"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 25
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 738
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 739
    AegisName: "CoinBag"
    Name: "Coin Bag"
    Type: "IT_ETC"
    Buy: 1000
    Sell: 500
    Weight: 50
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 739
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 740
    AegisName: "WolvernTooth"
    Name: "Wolvern Tooth"
    Type: "IT_ETC"
    Buy: 500
    Sell: 250
    Weight: 30
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 740
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 741
    AegisName: "IronPowder"
    Name: "Iron Powder"
    Type: "IT_ETC"
    Buy: 500
    Sell: 100
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 741
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 742
    AegisName: "PinkAntenna"
    Name: "Pink Antenna"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 742
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 743
    AegisName: "AnimalBones"
    Name: "Animal Bones"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 743
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 744
    AegisName: "Antlers"
    Name: "Antlers"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 3
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 744
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 745
    AegisName: "BanditHood"
    Name: "Bandit Hood"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 745
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 746
    AegisName: "BatWing"
    Name: "Bat Wing"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 746
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 747
    AegisName: "BentNeedle"
    Name: "Bent Needle"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 747
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 748
    AegisName: "Blanket"
    Name: "Blanket"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 748
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 749
    AegisName: "Bone"
    Name: "Bone"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 749
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 750
    AegisName: "BottleOfSand"
    Name: "Bottle Of Sand"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 750
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 751
    AegisName: "Brainstem"
    Name: "Brainstem"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 751
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 752
    AegisName: "CasinoCoins"
    Name: "Casino Coins"
    Type: "IT_ETC"
    Buy: 200
    Sell: 20
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 752
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 753
    AegisName: "CaveSnakeLamp"
    Name: "Cave Snake lamp"
    Type: "IT_ETC"
    Buy: 80
    Sell: 4
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 753
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 754
    AegisName: "ClosedChristmasBox"
    Name: "Closed Christmas Box"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 754
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 755
    AegisName: "Coal"
    Name: "Coal"
    Type: "IT_ETC"
    Buy: 600
    Sell: 200
    Weight: 40
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 755
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 756
    AegisName: "CryptKey"
    Name: "Crypt Key"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 756
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 757
    AegisName: "DarkPetal"
    Name: "Dark Petal"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 757
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 758
    AegisName: "ZombieEar"
    Name: "Zombie Ear"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 758
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 759
    AegisName: "Ectoplasm"
    Name: "Ectoplasm"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 759
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 760
    AegisName: "FrozenYetiTear"
    Name: "Frozen Yeti Tear"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 760
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 761
    AegisName: "CobaltHerb"
    Name: "Cobalt Herb"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 761
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 762
    AegisName: "SnakeSkin"
    Name: "Snake Skin"
    Type: "IT_ETC"
    Buy: 500
    Sell: 100
    Weight: 17
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 762
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 763
    AegisName: "UndeadEye"
    Name: "Undead Eye"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 763
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 764
    AegisName: "CottonCloth"
    Name: "Cotton Cloth"
    Type: "IT_ETC"
    Buy: 500
    Sell: 100
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 764
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 765
    AegisName: "GrassSeeds"
    Name: "Grass Seeds"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 765
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 766
    AegisName: "HardSpike"
    Name: "Hard Spike"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 766
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 767
    AegisName: "DiseasedHeart"
    Name: "Diseased Heart"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 767
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 768
    AegisName: "GambogeHerb"
    Name: "Gamboge Herb"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 768
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 769
    AegisName: "MauveHerb"
    Name: "Mauve Herb"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 769
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 770
    AegisName: "IronIngot"
    Name: "Iron Ingot"
    Type: "IT_ETC"
    Buy: 20000
    Sell: 1000
    Weight: 260
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 770
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 771
    AegisName: "IronOre"
    Name: "Iron Ore"
    Type: "IT_ETC"
    Buy: 500
    Sell: 200
    Weight: 40
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 771
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 772
    AegisName: "MaggotSlime"
    Name: "Maggot Slime"
    Type: "IT_ETC"
    Buy: 50
    Sell: 4
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 772
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 773
    AegisName: "RottenRags"
    Name: "Rotten Rags"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 773
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 774
    AegisName: "RawLog"
    Name: "Raw Log"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 774
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 775
    AegisName: "Brain"
    Name: "Brain"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 775
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 776
    AegisName: "ReedBundle"
    Name: "Reed Bundle"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 776
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 777
    AegisName: "Root"
    Name: "Root"
    Type: "IT_ETC"
    Buy: 50
    Sell: 10
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 777
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 778
    AegisName: "ScorpionStinger"
    Name: "Scorpion Stinger"
    Type: "IT_ETC"
    Buy: 50
    Sell: 25
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 778
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 779
    AegisName: "SilkCocoon"
    Name: "Silk Cocoon"
    Type: "IT_ETC"
    Buy: 60
    Sell: 5
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 779
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 780
    AegisName: "SnakeTongue"
    Name: "Snake Tongue"
    Type: "IT_ETC"
    Buy: 50
    Sell: 30
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 780
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 781
    AegisName: "TreasureKey"
    Name: "Treasure Key"
    Type: "IT_ETC"
    Buy: 500
    Sell: 220
    Weight: 2
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 781
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 782
    AegisName: "VampireBatWing"
    Name: "Vampire Bat Wing"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 782
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 783
    AegisName: "TetiClaw"
    Name: "Yeti Claw"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 783
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 784
    AegisName: "WolvernPelt"
    Name: "Wolvern Pelt"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 784
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 785
    AegisName: "WhiteFur"
    Name: "White Fur"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 785
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 786
    AegisName: "Tulip"
    Name: "Tulip"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 786
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 787
    AegisName: "SpellBookPage"
    Name: "Spell Book Page"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 787
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 789
    AegisName: "Skull"
    Name: "Skull"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 789
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 790
    AegisName: "SilverBell"
    Name: "Silver Bell"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 790
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 791
    AegisName: "BrokenFOurLeafAmulet"
    Name: "Broken Four Leaf Amulet"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 791
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 792
    AegisName: "GemPowder"
    Name: "Gem powder"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 792
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 793
    AegisName: "GoldPieces"
    Name: "GOld Pieces"
    Type: "IT_ETC"
    Buy: 25000
    Sell: 15000
    Weight: 6
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 793
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 794
    AegisName: "GrassLiner"
    Name: "Grass Liner"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 794
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 795
    AegisName: "IceCude"
    Name: "Ice Cube"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 795
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 796
    AegisName: "Iten"
    Name: "Iten"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 796
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 797
    AegisName: "JackOLantern"
    Name: "Jack'O Lantern"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 797
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 798
    AegisName: "LazuriteShard"
    Name: "Lazurite Shard"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 798
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 799
    AegisName: "LazuriteCrystal"
    Name: "Lazurite Cristal"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 799
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 800
    AegisName: "LazuriteHeart"
    Name: "Lazurite Heart"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 800
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 801
    AegisName: "LeatherSuitcase"
    Name: "Leather Suitcase"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 801
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 802
    AegisName: "Lockpicks"
    Name: "Lockpicks"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 802
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 803
    AegisName: "LoveLetter"
    Name: "Love Letter"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 803
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 804
    AegisName: "MylarinDust"
    Name: "Mylarin Dust"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 804
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 805
    AegisName: "OpenedChristmasBox"
    Name: "Opened Christmas Box"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 805
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 806
    AegisName: "LeatherPatch"
    Name: "Leather Patch"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 806
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 807
    AegisName: "Petal"
    Name: "Petal"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 807
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 808
    AegisName: "Powder"
    Name: "Powder"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 808
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 809
    AegisName: "PresentBox"
    Name: "Present Box"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 809
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 810
    AegisName: "Quill"
    Name: "Quill"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 810
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 811
    AegisName: "Rose"
    Name: "Rose"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 811
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 812
    AegisName: "SealedSoul"
    Name: "Sealed Soul"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 812
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 813
    AegisName: "SilverMirror"
    Name: "Silver Mirror"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 813
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 814
    AegisName: "TerraniteOre"
    Name: "Terranite Ore"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 814
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 815
    AegisName: "Tuber"
    Name: "Tuber"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 815
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 816
    AegisName: "IcedBottle"
    Name: "Iced Bottle"
    Type: "IT_ETC"
    Buy: 10000
    Sell: 5000
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 816
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 817
    AegisName: "SaxsoKey"
    Name: "Saxso Key"
    Type: "IT_ETC"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 817
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 818
    AegisName: "BlueManaPearl"
    Name: "Blue Mana Pearl"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 0
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 818
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 819
    AegisName: "CrystallizedMaggot"
    Name: "Crystallized Maggot"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 819
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 820
    AegisName: "DarkCrystal"
    Name: "Dark Crystal"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 820
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 821
    AegisName: "SunnyCrystal"
    Name: "Sunny Crystal"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 821
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 822
    AegisName: "DruidTreeBranch"
    Name: "Druid Tree Branch"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 822
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 823
    AegisName: "DragonScales"
    Name: "Dragon Scales"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 823
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 824
    AegisName: "LightGreenDiamond"
    Name: "Light Green Diamond"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 824
    BindOnEquip: false
    BuyingStore: true
	DropAnnounce: true
    Delay: 0
    Sprite: 0
},
{
    Id: 825
    AegisName: "DesertTablet"
    Name: "Desert Tablet"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 825
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 826
    AegisName: "FluoPowder"
    Name: "Fluo Powder"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 826
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 827
    AegisName: "BrokenMedal"
    Name: "Broken Medal"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 827
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 828
    AegisName: "StrangeCoin"
    Name: "Strange Coin"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 100
    Weight: 0
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 828
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 829
    AegisName: "Butterfly"
    Name: "Butterfly"
    Type: "IT_ETC"
    Buy: 100000
    Sell: 10000
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 829
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 830
    AegisName: "CaveSnakeTongue"
    Name: "Cave Snake Tongue"
    Type: "IT_ETC"
    Buy:100
    Sell: 40
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 830
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 831
    AegisName: "RedScorpionStinger"
    Name: "Red Scorpion Stinger"
    Type: "IT_ETC"
    Buy: 1000
    Sell: 75
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 831
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 832
    AegisName: "BlackScorpionStinger"
    Name: "Black Scorpion Stinger"
    Type: "IT_ETC"
    Buy: 1000
    Sell: 100
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 832
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 833
    AegisName: "EmptyBottle"
    Name: "EmptyBottle"
    Type: "IT_ETC"
    Buy: 100
    Sell: 10
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    WeaponLv: 0
    EquipLv: 0
    Refine: false
    ViewSprite: 833
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1000
    AegisName: "BromenalFourLeafAmulet"
    Name: "Bromenal Four-Leaf Amulet"
    Type: "IT_ARMOR"
    Buy: 50000
    Sell: 7000
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 25
    Refine: false
    ViewSprite: 1000
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1001
    AegisName: "IronFourLeafAmulet"
    Name: "Iron Four-Leaf Amulet"
    Type: "IT_ARMOR"
    Buy: 40000
    Sell: 6000
    Weight: 25
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 35
    Refine: false
    ViewSprite: 1001
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1002
    AegisName: "GoldenFourLeafAmulet"
    Name: "Golden Four-Leaf Amulet"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 10000
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 45
    Refine: false
    ViewSprite: 1002
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1003
    AegisName: "CrozeniteFourLeafAmulet"
    Name: "Crozenite Four-Leaf Amulet"
    Type: "IT_ARMOR"
    Buy: 120000
    Sell: 12000
    Weight: 55
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 65
    Refine: false
    ViewSprite: 1003
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1004
    AegisName: "HeartNecklace"
    Name: "Heart Necklace"
    Type: "IT_ARMOR"
    Buy: 75000
    Sell: 10000
    Weight: 100
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 90
    Refine: false
    ViewSprite: 1004
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1005
    AegisName: "JacksSkeletonCharm"
    Name: "Jack's Skeleton Charm"
    Type: "IT_ARMOR"
    Buy: 16000
    Sell: 100
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 60
    Refine: false
    ViewSprite: 1005
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1006
    AegisName: "LifestonePendant"
    Name: "Lifestone Pendant"
    Type: "IT_ARMOR"
    Buy: 10000
    Sell: 2000
    Weight: 60
    Atk: 0
    Matk: 0
    Def: 2
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 25
    Refine: false
    ViewSprite: 1006
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1007
    AegisName: "BloodstonePendant"
    Name: "Bloodstone Pendant"
    Type: "IT_ARMOR"
    Buy: 18000
    Sell: 1800
    Weight: 100
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 45
    Refine: false
    ViewSprite: 1007
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1008
    AegisName: "RawTalisman"
    Name: "Raw Talisman"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 3500
    Weight: 100
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 65
    Refine: false
    ViewSprite: 1008
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1009
    AegisName: "DarkTalisman"
    Name: "Dark Talisman"
    Type: "IT_ARMOR"
    Buy: 150000
    Sell: 15000
    Weight: 1000
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 85
    Refine: false
    ViewSprite: 1009
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1010
    AegisName: "FlightTalisman"
    Name: "Flight Talisman"
    Type: "IT_ARMOR"
    Buy: 22000
    Sell: 4200
    Weight: 500
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 75
    Refine: false
    ViewSprite: 1010
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1011
    AegisName: "ToothNecklace"
    Name: "Tooth Necklace"
    Type: "IT_ARMOR"
    Buy: 4000
    Sell: 500
    Weight: 50
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 1011
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1012
    AegisName: "WolvernTeethNecklace"
    Name: "Wolvern Teeth Necklace"
    Type: "IT_ARMOR"
    Buy: 8000
    Sell: 1000
    Weight: 150
    Atk: 0
    Matk: 0
    Def: 3
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 24
    Refine: false
    ViewSprite: 1012
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1013
    AegisName: "ClawPendant"
    Name: "Claw Pendant"
    Type: "IT_ARMOR"
    Buy: 9000
    Sell: 1700
    Weight: 250
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 34
    Refine: false
    ViewSprite: 1013
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1014
    AegisName: "BarbarianAmulet"
    Name: "Barbarian Amulet"
    Type: "IT_ARMOR"
    Buy: 11000
    Sell: 2000
    Weight: 350
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 44
    Refine: false
    ViewSprite: 1014
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1015
    AegisName: "BarbarianMasterAmulet"
    Name: "Barbarian Master Amulet"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 10000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1015
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1016
    AegisName: "MonkPendant"
    Name: "Monk Pendant"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 10000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 4
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1016
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1017
    AegisName: "AngelAmulet"
    Name: "Angel Amulet"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 10000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 1024
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1017
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1150
    AegisName: "FourLeafClover"
    Name: "Four Leaf Clover"
    Type: "IT_ARMOR"
    Buy: 200000
    Sell: 15000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1150
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1151
    AegisName: "DemonAshUrn"
    Name: "Demon Ash Urn"
    Type: "IT_ARMOR"
    Buy: 8000
    Sell: 2600
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1151
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1152
    AegisName: "AstralCube"
    Name: "Astra Cube"
    Type: "IT_ARMOR"
    Buy: 70000
    Sell: 5000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1152
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1153
    AegisName: "BrokenDoll"
    Name: "Broken Doll"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 2500
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 2
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1153
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1154
    AegisName: "Doll"
    Name: "Doll"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1154
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1155
    AegisName: "FireScroll"
    Name: "Fire Scroll"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1155
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1156
    AegisName: "HeartOfIsis"
    Name: "Heart Of Isis"
    Type: "IT_ARMOR"
    Buy: 10000000
    Sell: 60000
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1156
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1157
    AegisName: "LeatherBall"
    Name: "Leather Ball"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 3
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1157
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1158
    AegisName: "MechaMedallion"
    Name: "Mecha Medallion"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1158
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1159
    AegisName: "OldTowel"
    Name: "Old Towel"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1159
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1160
    AegisName: "PlushMouboor"
    Name: "Plush Mouboo"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1160
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1161
    AegisName: "RedStocking"
    Name: "Red Stocking"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 5
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1161
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1162
    AegisName: "SantaGlobe"
    Name: "Santa Globe"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1162
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1163
    AegisName: "SnowmanGlobe"
    Name: "Snowman Globe"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1163
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1164
    AegisName: "SpectralOrb"
    Name: "Spectra Orb"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 4
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1164
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1165
    AegisName: "ThetaBook"
    Name: "Theta Book"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1165
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1166
    AegisName: "TreasureMap"
    Name: "Treasure Map"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1166
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1167
    AegisName: "EarthScroll"
    Name: "Earth Scroll"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1167
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1168
    AegisName: "DemonicSkull"
    Name: "Demonic Skull"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1168
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1169
    AegisName: "GoldMedal"
    Name: "Gold Medal"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 3
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1169
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1170
    AegisName: "SilverMedal"
    Name: "SilverMedal"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 2
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1170
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1171
    AegisName: "BronzeMedal"
    Name: "Bronze Medal"
    Type: "IT_ARMOR"
    Buy: 7000
    Sell: 1800
    Weight: 450
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_L"
    WeaponLv: 0
    EquipLv: 54
    Refine: false
    ViewSprite: 1171
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0 
},
{
    Id: 1300
    AegisName: "CreasedShirt"
    Name: "Creased Shirt"
    Type: "IT_ARMOR"
    Buy: 70
    Sell: 18
    Weight: 17
    Atk: 0
    Matk: 0
    Def: 10
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1300
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1301
    AegisName: "VneckJumper"
    Name: "V-neck Jumper"
    Type: "IT_ARMOR"
    Buy: 1800
    Sell: 200
    Weight: 30
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 10
    Refine: false
    ViewSprite: 1301
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5000: 1
        id5001: 1
        id5002: 1
    }
},
{
    Id: 1302
    AegisName: "ArtisTankTop"
    Name: "Artis Tank Top"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 120
    Weight: 11
    Atk: 0
    Matk: 0
    Def: 40
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 5
    Refine: false
    ViewSprite: 1302
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1303
    AegisName: "SailorShirt"
    Name: "SailorShirt"
    Type: "IT_ARMOR"
    Buy: 1900
    Sell: 250
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 180
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 10
    Refine: false
    ViewSprite: 1303
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1304
    AegisName: "LegionTrainingShirt"
    Name: "Legion's Training Shirt"
    Type: "IT_ARMOR"
    Buy: 4500
    Sell: 300
    Weight: 120
    Atk: 0
    Matk: 0
    Def: 200
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 10
    Refine: false
    ViewSprite: 1304
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1305
    AegisName: "LegionCopperArmor"
    Name: "Legion's Copper Armor"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 340
    Atk: 0
    Matk: 0
    Def: 400
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1305
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1306
    AegisName: "WarlordPlate"
    Name: "Warlord Plate"
    Type: "IT_ARMOR"
    Buy: 200000
    Sell: 18000
    Weight: 2600
    Atk: 0
    Matk: -170
    Def: 270
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1306
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1307
    AegisName: "BromenalChest"
    Name: "Bromenal Chest"
    Type: "IT_ARMOR"
    Buy: 160000
    Sell: 16000
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1307
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1308
    AegisName: "ForestArmor"
    Name: "Forest Armor"
    Type: "IT_ARMOR"
    Buy: 120000
    Sell: 10000
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1308
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1309
    AegisName: "ContributorSweater"
    Name: "COntributor Sweater"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 25
    Atk: 0
    Matk: 170
    Def: 90
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 25
    Refine: false
    ViewSprite: 1309
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1310
    AegisName: "Chainmail"
    Name: "Chainmail"
    Type: "IT_ARMOR"
    Buy: 14000
    Sell: 8000
    Weight: 1200
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1310
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1311
    AegisName: "TerraniteArmor"
    Name: "Terranite Armor"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1311
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1312
    AegisName: "LightPlatemail"
    Name: "Light Platemail"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1312
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1313
    AegisName: "ShortTankTop"
    Name: "Short Tank Top"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 80
    Weight: 5
    Atk: 0
    Matk: 0
    Def: 30
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 1313
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1314
    AegisName: "LeatherShirt"
    Name: "Leather Shirt"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1314
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1315
    AegisName: "TneckSweater"
    Name: "Tneck Sweater"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 100
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1315
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1316
    AegisName: "SilkRobe"
    Name: "Silk Robe"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 25
    Atk: 0
    Matk: 170
    Def: 90
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 25
    Refine: false
    ViewSprite: 1316
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1317
    AegisName: "SorcererRobe"
    Name: "Sorcerer Robe"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1317
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1318
    AegisName: "UglyChristmasSweater"
    Name: "Tneck Sweater"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1318
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1319
    AegisName: "ValentineDress"
    Name: "Valentine Dress"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 100
    Atk: 0
    Matk: 170
    Def: 250
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1319
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1320
    AegisName: "VneckSweater"
    Name: "Vneck Sweater"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 800
    Weight: 3600
    Atk: 0
    Matk: 170
    Def: 70
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1320
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 1321
    AegisName: "CandorShirt"
    Name: "Candor Shirt"
    Type: "IT_ARMOR"
    Buy: 120
    Sell: 50
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 20
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 3
    Refine: false
    ViewSprite: 1321
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1322
    AegisName: "GMRobe"
    Name: "GM Robe"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1322
    BindOnEquip: false
    BuyingStore: false
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Delay: 0
    Sprite: 0
},
{
    Id: 1323
    AegisName: "RedknightArmor"
    Name: "Red Knight Armor"
    Type: "IT_ARMOR"
    Buy: 12000
    Sell: 5000
    Weight: 500
    Atk: 0
    Matk: 0
    Def: 100
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 20
    Refine: false
    ViewSprite: 1323
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1324
    AegisName: "DesertShirt"
    Name: "Desert Shirt"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1324
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1325
    AegisName: "YetiTankTop"
    Name: "Yety Tank Top"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1325
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1326
    AegisName: "MoonshroomRobe"
    Name: "Moonshroom Robe"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1326
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1327
    AegisName: "GoldenChainmail"
    Name: "Golden Chainmail"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1327
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1328
    AegisName: "GoldenLightPlatemail"
    Name: "Golden Light Platemail"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 21
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1328
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1329
    AegisName: "GoldenWarlordPlate"
    Name: "Golden Warlord Plare"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1329
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1330
    AegisName: "LazuriteRobe"
    Name: "Lazurite Robe"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1330
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1331
    AegisName: "SaviorArmor"
    Name: "Savior Armor"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1331
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1332
    AegisName: "CottonShirt"
    Name: "Cotton Shirt"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1332
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1333
    AegisName: "AssassinChest"
    Name: "AssassinChest"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_MID"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1333
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1800
    AegisName: "LousyMoccasins"
    Name: "Lousy Moccasins"
    Type: "IT_ARMOR"
    Buy: 600
    Sell: 180
    Weight: 18
    Atk: 0
    Matk: 0
    Def: 5
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 1800
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1801
    AegisName: "AssassinBoots"
    Name: "Assassin Boots"
    Type: "IT_ARMOR"
    Buy: 600
    Sell: 180
    Weight: 18
    Atk: 0
    Matk: 0
    Def: 150
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1801
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1802
    AegisName: "DeepBlackBoots"
    Name: "Deep Black Boots"
    Type: "IT_ARMOR"
    Buy: 600
    Sell: 180
    Weight: 18
    Atk: 0
    Matk: 0
    Def: 150
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1802
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1803
    AegisName: "CandorBoots"
    Name: "Candor Boots"
    Type: "IT_ARMOR"
    Buy: 600
    Sell: 180
    Weight: 18
    Atk: 0
    Matk: 0
    Def: 10
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1803
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1804
    AegisName: "FurBoots"
    Name: "Fur Boots"
    Type: "IT_ARMOR"
    Buy: 600
    Sell: 180
    Weight: 18
    Atk: 0
    Matk: 0
    Def: 10
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 1804
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1805
    AegisName: "CottonBoots"
    Name: "CottonBoots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1805
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1806
    AegisName: "Boots"
    Name: "Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1806
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1807
    AegisName: "LeatherBoots"
    Name: "Leather Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1807
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1808
    AegisName: "RedStockings"
    Name: "Red Stockings"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1808
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1809
    AegisName: "BromenalBoots"
    Name: "Bromenal"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1809
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1810
    AegisName: "WisardMoccasins"
    Name: "Wisard Moccasins"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1810
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1811
    AegisName: "WitchBoots"
    Name: "Witch Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1811
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1812
    AegisName: "HeliosBoots"
    Name: "Helios Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1812
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1813
    AegisName: "TerraniteBoots"
    Name: "Terranite Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1813
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1814
    AegisName: "WarlordBoots"
    Name: "Warlord Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1814
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 1815
    AegisName: "SaviorBoots"
    Name: "Savior Boots"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_SHOES"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 1815
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2000
    AegisName: "Armbands"
    Name: "Armbands"
    Type: "IT_ARMOR"
    Buy: 400
    Sell: 120
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 80
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 3
    Refine: false
    ViewSprite: 2000
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2001
    AegisName: "CopperArmbands"
    Name: "Copper Armbands"
    Type: "IT_ARMOR"
    Buy: 4000
    Sell: 800
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 120
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 7
    Refine: false
    ViewSprite: 2001
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2002
    AegisName: "IronArmbands"
    Name: "Iron Armbands"
    Type: "IT_ARMOR"
    Buy: 7500
    Sell: 940
    Weight: 30
    Atk: 0
    Matk: 0
    Def: 180
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 11
    Refine: false
    ViewSprite: 2002
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2003
    AegisName: "ScarabArmlet"
    Name: "Scarab Armlet"
    Type: "IT_ARMOR"
    Buy: 75000
    Sell: 940
    Weight: 30
    Atk: 0
    Matk: 0
    Def: 180
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 11
    Refine: false
    ViewSprite: 2003
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2004
    AegisName: "CreasedGloves"
    Name: "Creased Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2004
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2005
    AegisName: "CottonGloves"
    Name: "Cotton Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2005
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2006
    AegisName: "MinerGloves"
    Name: "Miner Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2006
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2007
    AegisName: "SilkGloves"
    Name: "Silk Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2007
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2008
    AegisName: "LeatherGloves"
    Name: "Leather Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2008
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2009
    AegisName: "ForestGloves"
    Name: "Forest Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2009
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2010
    AegisName: "BromenalGloves"
    Name: "Bromenal Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2010
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2011
    AegisName: "GoldenArmbands"
    Name: "Golden Armbands"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2011
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2012
    AegisName: "WarlordGloves"
    Name: "Warlord Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2012
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2013
    AegisName: "ManaGloves"
    Name: "Mana Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2013
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2014
    AegisName: "TerraniteGloves"
    Name: "Terranite Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2014
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2015
    AegisName: "AssassinGloves"
    Name: "Assassin Gloves"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_GARMENT"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2015
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2200
    AegisName: "CreasedShorts"
    Name: "Creased Shorts"
    Type: "IT_ARMOR"
    Buy: 60
    Sell: 15
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 10
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2200
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2201
    AegisName: "RaidTrousers"
    Name: "Raid Trousers"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 80
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 30
    Refine: false
    ViewSprite: 2201
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2202
    AegisName: "AssassinPants"
    Name: "Assassin Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 35
    Atk: 0
    Matk: 0
    Def: 300
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 85
    Refine: false
    ViewSprite: 2202
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2203
    AegisName: "BromenalPants"
    Name: "Bromenal Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 435
    Atk: 0
    Matk: 0
    Def: 210
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 70
    Refine: false
    ViewSprite: 2203
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2204
    AegisName: "JeansChaps"
    Name: "Jeans Chaps"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 65
    Atk: 0
    Matk: 0
    Def: 120
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 55
    Refine: false
    ViewSprite: 2204
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2205
    AegisName: "CottonShorts"
    Name: "Cotton Shorts"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 15
    Atk: 0
    Matk: 0
    Def: 26
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2205
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2206
    AegisName: "MiniSkirt"
    Name: "Mini Skirt"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 14
    Atk: 0
    Matk: 0
    Def: 15
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 2
    Refine: false
    ViewSprite: 2206
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2207
    AegisName: "CottonTrousers"
    Name: "CottonTrous"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 25
    Atk: 0
    Matk: 0
    Def: 70
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 20
    Refine: false
    ViewSprite: 2207
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2208
    AegisName: "SilkPants"
    Name: "Silk Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 16
    Atk: 0
    Matk: 0
    Def: 80
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 60
    Refine: false
    ViewSprite: 2208
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 2209
    AegisName: "CottonSkirt"
    Name: "Cotton Skirt"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 19
    Atk: 0
    Matk: 0
    Def: 20
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 5
    Refine: false
    ViewSprite: 2209
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2210
    AegisName: "TerranitePants"
    Name: "Terranite Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 80
    Atk: 0
    Matk: 0
    Def: 350
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 80
    Refine: false
    ViewSprite: 2210
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2211
    AegisName: "ChainmailSkirt"
    Name: "Chainmail Skirt"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 190
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 65
    Refine: false
    ViewSprite: 2211
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2212
    AegisName: "JeansShorts"
    Name: "Jeans Shorts"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 50
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 15
    Refine: false
    ViewSprite: 2212
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2213
    AegisName: "LeatherTrousers"
    Name: "Leather Trousers"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 100
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 50
    Refine: false
    ViewSprite: 2213
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2214
    AegisName: "BanditPants"
    Name: "Bandit Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 90
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 45
    Refine: false
    ViewSprite: 2214
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2215
    AegisName: "WarlordPants"
    Name: "Warlord Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 390
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 75
    Refine: false
    ViewSprite: 2215
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2216
    AegisName: "SaviorPants"
    Name: "Savior Pants"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 280
    Atk: 0
    Matk: 0
    Def: 420
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 90
    Refine: false
    ViewSprite: 2216
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2217
    AegisName: "CandorShorts"
    Name: "Candor Shorts"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 200
    Weight: 32
    Atk: 0
    Matk: 0
    Def: 18
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_LOW"
    WeaponLv: 0
    EquipLv: 3
    Refine: false
    ViewSprite: 2217
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2500
    AegisName: "WeddingRing"
    Name: "Wedding Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2500
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2501
    AegisName: "GoldenSimpleRing"
    Name: "Golden Simple Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 2
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2501
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2502
    AegisName: "GoldenDiamondRing"
    Name: "Golden Diamond Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2502
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2503
    AegisName: "GoldenRubyRing"
    Name: "Golden Ruby Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2503
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2504
    AegisName: "GoldenAmethystRing"
    Name: "Golden Amethyst Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2504
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2505
    AegisName: "GoldenSapphireRing"
    Name: "Golden Sapphire Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2505
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2506
    AegisName: "GoldenTopazRing"
    Name: "Golden Topaz Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2506
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2507
    AegisName: "GoldenEmeraldRing"
    Name: "Golden Emerald Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2507
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2508
    AegisName: "GoldenPearlRing"
    Name: "Golden Pearl Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2508
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2509
    AegisName: "GoldenBlackPearlRing"
    Name: "Golden Pearl Ring"
    Type: "IT_ARMOR"
    Buy: 10000
    Sell: 5000
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2509
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2510
    AegisName: "ThetaRing"
    Name: "Theta Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2510
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2511
    AegisName: "LightRing"
    Name: "Light Ring"
    Type: "IT_ARMOR"
    Buy: 1200
    Sell: 250
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 140
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: 2048
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2511
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2700
    AegisName: "Barrel"
    Name: "Barrel"
    Type: "IT_ARMOR"
    Buy: 150
    Sell: 50
    Weight: 400
    Atk: 0
    Matk: 0
    Def: 100
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    WeaponLv: 0
    EquipLv: 5
    Refine: false
    ViewSprite: 2700
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    OnEquipScript: <"
        bonus bAspd, -30;
        bonus bCriticalDef, 15;
        bonus bAtkRange, -5;
    ">
},
{
    Id: 2701
    AegisName: "LeatherShield"
    Name: "Leather Shield"
    Type: "IT_ARMOR"
    Buy: 5000
    Sell: 1200
    Weight: 200
    Def: 55
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 13
    Refine: false
    ViewSprite: 2701
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2702
    AegisName: "BladeShield"
    Name: "Blade Shield"
    Type: "IT_ARMOR"
    Buy: 30000
    Sell: 5000
    Weight: 1980
    Def: 85
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 31
    Refine: false
    ViewSprite: 2702
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2703
    AegisName: "BlueKnightShield"
    Name: "Blue Knight Shield"
    Type: "IT_ARMOR"
    Buy: 55000
    Sell: 16000
    Weight: 2400
    Def: 172
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 66
    Refine: false
    ViewSprite: 2703
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2704
    AegisName: "BritShield"
    Name: "Brit Shield"
    Type: "IT_ARMOR"
    Buy: 40000
    Sell: 12500
    Weight: 2240
    Def: 120
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 45
    Refine: false
    ViewSprite: 2704
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2705
    AegisName: "SaviorShield"
    Name: "Savior Shield"
    Type: "IT_ARMOR"
    Buy: 200000
    Sell: 20000
    Weight: 2710
    Def: 250
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 92
    Refine: false
    ViewSprite: 2705
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2706
    AegisName: "BromenalShield"
    Name: "Bromenal Shield"
    Type: "IT_ARMOR"
    Buy: 45000
    Sell: 15000
    Weight: 2900
    Def: 160
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 60
    Refine: false
    ViewSprite: 2706
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2707
    AegisName: "RoundLeatherShield"
    Name: "Round Leather Shield"
    Type: "IT_ARMOR"
    Buy: 3000
    Sell: 500
    Weight: 90
    Def: 35
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 3
    Refine: false
    ViewSprite: 2707
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2708
    AegisName: "AncientShield"
    Name: "Ancient Shield"
    Type: "IT_ARMOR"
    Buy: 50000
    Sell: 18600
    Weight: 6500
    Def: 190
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 50
    Refine: false
    ViewSprite: 2708
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2709
    AegisName: "BraknarShield"
    Name: "Braknar Shield"
    Type: "IT_ARMOR"
    Buy: 35000
    Sell: 11000
    Weight: 2360
    Def: 105
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 39
    Refine: false
    ViewSprite: 2709
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2710
    AegisName: "WoodenShield"
    Name: "Wooden Shield"
    Type: "IT_ARMOR"
    Buy: 20000
    Sell: 2250
    Weight: 1650
    Def: 72
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 24
    Refine: false
    ViewSprite: 2710
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2711
    AegisName: "SteelShield"
    Name: "Steel Shield"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 18000
    Weight: 2500
    Def: 200
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 76
    Refine: false
    ViewSprite: 2711
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2712
    AegisName: "DragonShield"
    Name: "Dragon Shield"
    Type: "IT_ARMOR"
    Buy: 100000
    Sell: 18000
    Weight: 2500
    Def: 200
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_L"
    EquipLv: 76
    Refine: false
    ViewSprite: 2712
    BindOnEquip: false
    BuyingStore: true
    OnEquipScript: <"
        bonus bAtkRange, -1;
    ">
},
{
    Id: 2900
    AegisName: "Bandana"
    Name: "Bandana"
    Type: "IT_ARMOR"
    Buy: 950
    Sell: 220
    Weight: 4
    Atk: 0
    Matk: 0
    Def: 40
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 5
    Refine: false
    ViewSprite: 2900
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2901
    AegisName: "PumpkinHat"
    Name: "Pumpkin Hat"
    Type: "IT_ARMOR"
    Buy: 320
    Sell: 100
    Weight: 50
    Atk: 0
    Matk: 0
    Def: 20
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2901
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2902
    AegisName: "FancyHat"
    Name: "Fancy Hat"
    Type: "IT_ARMOR"
    Buy: 320
    Sell: 100
    Weight: 11
    Atk: 0
    Matk: 0
    Def: 31
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2902
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2903
    AegisName: "BrimmedHat"
    Name: "Brimmed Hat"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 240
    Weight: 20
    Atk: 0
    Matk: 0
    Def: 100
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2903
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2904
    AegisName: "BrimmedFeatherHat"
    Name: "Brimmed Feather Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 23
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2904
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2905
    AegisName: "BrimmedFlowerHat"
    Name: "Brimmed Flower Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2905
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2906
    AegisName: "Bull"
    Name: "Bull"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 220
    Atk: 0
    Matk: 0
    Def: 310
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 90
    Refine: false
    ViewSprite: 2906
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2907
    AegisName: "Darkelm"
    Name: "Darkhelm"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 1300
    Atk: 0
    Matk: 0
    Def: 190
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 90
    Refine: false
    ViewSprite: 2907
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2908
    AegisName: "FunkyHat"
    Name: "Funky Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 50
    Atk: 0
    Matk: 0
    Def: 130
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 30
    Refine: false
    ViewSprite: 2908
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 2909
    AegisName: "CrusadeHelmet"
    Name: "Crusade Helmet"
    Type: "IT_ARMOR"
    Buy: 320
    Sell: 100
    Weight: 1450
    Atk: 0
    Matk: 0
    Def: 175
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 55
    Refine: false
    ViewSprite: 2909
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2910
    AegisName: "Bucket"
    Name: "Bucket"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 90
    Atk: 0
    Matk: 0
    Def: 36
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 10
    Refine: false
    ViewSprite: 2910
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2911
    AegisName: "InfantryHelmet"
    Name: "Infantry Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 622
    Atk: 0
    Matk: 0
    Def: 145
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 30
    Refine: false
    ViewSprite: 2911
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2912
    AegisName: "BunnyEars"
    Name: "Bunny Ears"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 10
    Atk: 0
    Matk: 0
    Def: 5
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 61
    Refine: false
    ViewSprite: 2912
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2913
    AegisName: "MoubooHat"
    Name: "Mouboo Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 400
    Atk: 0
    Matk: 0
    Def: 58
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 39
    Refine: false
    ViewSprite: 2913
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2914
    AegisName: "BromenalHelmet"
    Name: "Bromenal Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 900
    Atk: 0
    Matk: 0
    Def: 166
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 45
    Refine: false
    ViewSprite: 2914
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2915
    AegisName: "CandleHelmet"
    Name: "Candle Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2915
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2916
    AegisName: "DesertHelmet"
    Name: "Desert Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2916
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2917
    AegisName: "DesertHat"
    Name: "Desert Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 35
    Range: 0
    Slots: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2917
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
    AllowCards: {
        id5003: 1
        id5004: 1
        id5005: 1
        id5006: 1
        id5007: 1
        id5008: 1
        id5009: 1
        id5010: 1
        id5011: 1
        id5012: 1
        id5013: 1
        id5014: 1
        id5015: 1
        id5016: 1
        id5017: 1
        id5018: 1
        id5019: 1
        id5020: 1
        id5021: 1
    }
},
{
    Id: 2918
    AegisName: "EggshellHat"
    Name: "Eggshell Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2918
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2919
    AegisName: "PrsmHelmet"
    Name: "Prsm Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2919
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2920
    AegisName: "WarlordHelmet"
    Name: "Warlord Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2920
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2921
    AegisName: "TrapperHat"
    Name: "Trapper Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2921
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2922
    AegisName: "YetiMask"
    Name: "Yeti Mask"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2922
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2923
    AegisName: "AntlerHat"
    Name: "Antler Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2923
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2924
    AegisName: "DragonEggshell"
    Name: "Dragon Eggshell"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2924
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2925
    AegisName: "OperaMask"
    Name: "Opera Mask"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2925
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2926
    AegisName: "AxeHat"
    Name: "Axe Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 8
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2926
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2927
    AegisName: "DarkKnightHelmet"
    Name: "Dark Knight Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2927
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2928
    AegisName: "Earmuffs"
    Name: "Earmuffs"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2928
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2929
    AegisName: "SamuraiHelmet"
    Name: "Samurai Helmet"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2929
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2930
    AegisName: "PinkieHat"
    Name: "Pinkie Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 30
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2930
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2931
    AegisName: "SkullMask"
    Name: "Skull Mask"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2931
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2932
    AegisName: "ImperialCrown"
    Name: "Imperial Crown"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2932
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2933
    AegisName: "GMCap"
    Name: "GM Cap"
    Type: "IT_ARMOR"
    Buy: 2
    Sell: 1
    Weight: 1
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 1
    Refine: false
    ViewSprite: 2933
    BindOnEquip: false
    BuyingStore: false
    Trade: {
        nodrop: true
        noselltonpc: true
    }
    Delay: 0
    Sprite: 0
},
{
    Id: 2934
    AegisName: "Cap"
    Name: "Cap"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 35
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2934
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2935
    AegisName: "TopHat"
    Name: "Top Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 50
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2935
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2936
    AegisName: "BowlerHat"
    Name: "Bowler Hat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 40
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2936
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2937
    AegisName: "ChefHat"
    Name: "ChefHat"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2937
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2938
    AegisName: "CaptainCap"
    Name: "Captain Cap"
    Type: "IT_ARMOR"
    Buy: 1600
    Sell: 300
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 110
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 8
    Refine: false
    ViewSprite: 2938
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2939
    AegisName: "CandorHeadBnad"
    Name: "Candor Head Band"
    Type: "IT_ARMOR"
    Buy: 320
    Sell: 100
    Weight: 11
    Atk: 0
    Matk: 0
    Def: 20
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2939
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2940
    AegisName: "GraduationCap"
    Name: "Graduation Cap"
    Type: "IT_ARMOR"
    Buy: 320
    Sell: 100
    Weight: 11
    Atk: 0
    Matk: 0
    Def: 25
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2940
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2941
    AegisName: "VikingHelmet"
    Name: "Viking Helmet"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2941
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2942
    AegisName: "CenturionHelmet"
    Name: "Centurion Helmet"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2942
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2943
    AegisName: "AlphaMoubooHead"
    Name: "Alpha Mouboo Head"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2943
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2944
    AegisName: "SailorHat"
    Name: "Sailor Hat"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2944
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2945
    AegisName: "CorsairHat"
    Name: "Corsair Hat"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2945
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 2983
    AegisName: "SerfHat"
    Name: "Serf Hat"
    Type: "IT_ARMOR"
    Buy: 32000
    Sell: 1000
    Weight: 22
    Atk: 0
    Matk: 0
    Def: 1
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HEAD_TOP"
    WeaponLv: 0
    EquipLv: 4
    Refine: false
    ViewSprite: 2983
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3200
    AegisName: "Shemagh"
    Name: "Shemagh"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 22
    Def: 50
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3200
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3201
    AegisName: "Monocle"
    Name: "Monocle"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 22
    Def: 50
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3201
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3202
    AegisName: "Mustache"
    Name: "Mustache"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3202
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3203
    AegisName: "Beard"
    Name: "Beard"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3203
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3204
    AegisName: "EyePatch"
    Name: "EyePatch"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3204
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3205
    AegisName: "Googles"
    Name: "Googles"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3205
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3206
    AegisName: "HeartGlasses"
    Name: "Heart Glasses"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3206
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3207
    AegisName: "RedNose"
    Name: "Red Nose"
    Type: "IT_ARMOR"
    Buy: 1000
    Sell: 90
    Weight: 1
    Def: 1
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_ACC_R"
    EquipLv: 3
    Refine: false
    ViewSprite: 3207
    BindOnEquip: false
    BuyingStore: true
},
{
    Id: 3500
    AegisName: "Knife"
    Name: "Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3501
    AegisName: "PiouSlayer"
    Name: "Piou Slayer"
    Type: "IT_WEAPON"
    Buy: 1100
    Sell: 300
    Weight: 26
    Atk: 200
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 3
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3502
    AegisName: "TrainingGladius"
    Name: "TrainingGladius"
    Type: "IT_WEAPON"
    Buy: 5000
    Sell: 400
    Weight: 58
    Atk: 350
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 5
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3503
    AegisName: "WoodenSword"
    Name: "Wooden Sword"
    Type: "IT_WEAPON"
    Buy: 500
    Sell: 50
    Weight: 25
    Atk: 130
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 5
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3504
    AegisName: "ArtisBacksword"
    Name: "Artis Backsword"
    Type: "IT_WEAPON"
    Buy: 25800
    Sell: 1200
    Weight: 86
    Atk: 800
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 15
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3505
    AegisName: "SharpKnife"
    Name: "Sharp Knife"
    Type: "IT_WEAPON"
    Buy: 2580
    Sell: 250
    Weight: 50
    Atk: 75
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 5
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3506
    AegisName: "RustyKnife"
    Name: "Rusty Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 25
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3507
    AegisName: "Dagger"
    Name: "Dagger"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 100
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3508
    AegisName: "BoneKnife"
    Name: "Bone Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3509
    AegisName: "RockKnife"
    Name: "Rock Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3510
    AegisName: "SmallKnife"
    Name: "Small Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 35
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3511
    AegisName: "DivineSWord"
    Name: "Divine Sword"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3512
    AegisName: "ButcherKnife"
    Name: "Butcher Knife"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3513
    AegisName: "AncientSWord"
    Name: "Ancient Sword"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3514
    AegisName: "IceGladius"
    Name: "Ice Gladius"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3515
    AegisName: "Setzer"
    Name: "Setzer"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3516
    AegisName: "LongSword"
    Name: "Long Sword"
    Type: "IT_WEAPON"
    Buy: 90
    Sell: 25
    Weight: 6
    Atk: 50
    Matk: 0
    Def: 0
    Range: 0
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 1
    Refine: false
    Subtype: "W_DAGGER"
    ViewSprite: 1
    BindOnEquip: false
    BuyingStore: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3517
    AegisName: "ThunderStaff"
    Name: "Thunder Staff"
    Type: "IT_WEAPON"
    Buy: 440000
    Sell: 220000
    Weight: 1000
    Atk: 100
    Matk: 25
    Def: 0
    Range: 2
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 40
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
	DropAnnounce: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3518
    AegisName: "Judgement"
    Name: "Judgement"
    Type: "IT_WEAPON"
    Buy: 640000
    Sell: 320000
    Weight: 1000
    Atk: 100
    Def: 0
    Range: 1
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 24
    Refine: false
    Subtype: "W_DAGGER"
	//Script: <" itemskill SM_MAGNUM,1; "> // Consumable only - eg Grenade
	//skill SM_MAGNUM,3;
    // [22:27:11] <{41444d494e}> bonus3 bAutoSpell,SKILLNAME,SKILLELVEL,PARAM1;
    Script: <"
		bonus3 bAutoSpell,SM_MAGNUM,1,100;
    ">
    BindOnEquip: false
    BuyingStore: true
	DropAnnounce: true
    Delay: 0
    Sprite: 0
},
{
    Id: 3519
    AegisName: "DarkPulsar"
    Name: "Dark Pulsar"
    Type: "IT_WEAPON"
    Buy: 140000
    Sell: 20000
    Weight: 1000
    Atk: 100
    Matk: 25
    Def: 0
    Range: 1
    Slots: 0
    Job: {
        All: true
    }
    Gender: "SEX_ANY"
    Loc: "EQP_HAND_R"
    WeaponLv: 1
    EquipLv: 60
    Refine: false
    Subtype: "W_DAGGER"
    BindOnEquip: false
    BuyingStore: true
	DropAnnounce: true
    Delay: 0
    Sprite: 0
},
{
    Id: 4000
    AegisName: "PiouEgg"
    Name: "Piou egg"
    Type: "IT_PETEGG"
    Buy: 30000
    Sell: 1
    KeepAfterUse: true
    Script: <"
        bpet;
    ">
},
{
    Id: 5000
    AegisName: "CrimsonCashmereDye"
    Name: "Crimson Cashmere Dye"
    Type: "IT_CARD"
    Buy: 2000
    Sell: 80
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5001
    AegisName: "ChocolateCashmereDye"
    Name: "Chocolate Cashmere Dye"
    Type: "IT_CARD"
    Buy: 2000
    Sell: 80
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5002
    AegisName: "MintCashmereDye"
    Name: "Mint Cashmere Dye"
    Type: "IT_CARD"
    Buy: 2000
    Sell: 80
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5003
    AegisName: "BlackCottonDye"
    Name: "Black Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5004
    AegisName: "SilverCottonDye"
    Name: "Silver Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5005
    AegisName: "CamelCottonDye"
    Name: "Camel Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5006
    AegisName: "BrownCottonDye"
    Name: "Brown Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5007
    AegisName: "OrangeCottonDye"
    Name: "Orange Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5008
    AegisName: "DarkRedCottonDye"
    Name: "Dark Red Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5009
    AegisName: "RedCottonDye"
    Name: "Red Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5010
    AegisName: "FuschiaCottonDye"
    Name: "Fuschia Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5011
    AegisName: "PinkCottonDye"
    Name: "Pink Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5012
    AegisName: "MauveCottonDye"
    Name: "Mauve Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5013
    AegisName: "PurpleCottonDye"
    Name: "Purple Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5014
    AegisName: "NavyBlueCottonDye"
    Name: "Navy Blue Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5015
    AegisName: "BlueGrayCottonDye"
    Name: "Blue Gray Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5016
    AegisName: "BlueCottonDye"
    Name: "Blue Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5017
    AegisName: "TealCottonDye"
    Name: "Teal Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5018
    AegisName: "GreenCottonDye"
    Name: "Green Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5019
    AegisName: "LimeCottonDye"
    Name: "Lime Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5020
    AegisName: "KhakiCottonDye"
    Name: "Khaki Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5021
    AegisName: "YellowCottonDye"
    Name: "Yellow Cotton Dye"
    Type: "IT_CARD"
    Buy: 1200
    Sell: 70
    Loc: "EQP_HEAD_MID"
},
{
    Id: 5022
    AegisName: "NecromancerCard"
    Name: "Necromancer Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5023
    AegisName: "HeroCard"
    Name: "Hero Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5024
    AegisName: "CrusaderCard"
    Name: "Crusader Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5025
    AegisName: "PaladinCard"
    Name: "Paladin Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5026
    AegisName: "ForestCard"
    Name: "Forest Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5027
    AegisName: "OldurCard"
    Name: "Oldur Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5028
    AegisName: "SlideCard"
    Name: "Slide Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 5029
    AegisName: "NaturalCard"
    Name: "Natural Card"
    Type: "IT_CARD"
    Buy: 50
    Sell: 25
    Weight: 4
    EquipLv: 0
    Loc: "EQP_HEAD_MID"
    Script: <"
        dispbottom ("Error, contact Saulc about this!");
    ">
},
{
    Id: 6000
    AegisName: "WoodenBow"
    Name: "Wooden Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6001
    AegisName: "TrainingBow"
    Name: "Training Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 20
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6002
    AegisName: "ShortBow"
    Name: "Short Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6003
    AegisName: "ForestBow"
    Name: "Forest Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6004
    AegisName: "ChampionshipBow"
    Name: "Championship Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6005
    AegisName: "DesertBow"
    Name: "Desert Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6006
    AegisName: "BansheeBow"
    Name: "Banshee Bow"
    Type: "IT_WEAPON"
    Buy: 550
    Sell: 52
    Weight: 12
    Atk: 150
    Range: 7
    MinRange: 3
    Loc: ["EQP_HAND_R", "EQP_HAND_L"]
    WeaponLv: 1
    EquipLv: 5
    Subtype: "W_BOW"
    AllowAmmo: {
        Id6500: 1
        Id6501: 1
        Id6502: 1
        Id6503: 1
        Id6504: 1
        Id6505: 1
        Id6506: 1
        Id6507: 1      
    }
},
{
    Id: 6500
    AegisName: "TrainingArrow"
    Name: "Training Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 20
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6501
    AegisName: "TolchiArrow"
    Name: "Tolchi Arrow"
    Type: "IT_AMMO"
    Buy: 6
    Sell: 1
    Weight: 1
    Atk: 10
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6502
    AegisName: "Arrow"
    Name: "Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 30
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6503
    AegisName: "CursedArrow"
    Name: "Cursed Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 100
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6504
    AegisName: "IronArrow"
    Name: "Iron Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 100
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6505
    AegisName: "PoisonArrow"
    Name: "Poison Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 100
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 6506
    AegisName: "ThornArrow"
    Name: "Thorn Arrow"
    Type: "IT_AMMO"
    Buy: 100
    Sell: 1
    Weight: 1
    Atk: 100
    Loc: "EQP_AMMO"
    Subtype: "W_DAGGER"
},
{
    Id: 7420
    AegisName: "DeathPenality"
    Name: "Acorn Of Death"
    Type: "IT_HEALING"
    Buy: 10
    Sell: 1
    Weight: 1
    BuyingStore: false
    Delay: 500
    UseEffect: "EFFECT_HEAL"
    Script: <"
        if (@useType == 1)
        {
            if (!getmapxy(.@map$, .@x, .@y, 0))
            {
                monster(.@map$, .@x, .@y, l("Oak"), 1017, 1);
            }
        }
        else
        {
            @min = 12;
            @max = 18;
            @delay = 3;
            @type = 1;
            doevent "rand_sc_heal::OnUse";
        }
    ">
},
)