summaryrefslogtreecommitdiff
path: root/items.xml
blob: b9b5de20355d08d5b82815e42e05fe7269d584ce (plain) (blame)
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
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
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
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="items.xsl"?>
<!-- Authors: 4144, Alige, Piman, Reid
Copyright (C) 2010-2015 Evol Online
Copyright (C) 2016-2017 The Mana World -->

<!--
New organization (04/12/11).
-0      -99       = Hairstyles
-100    -infinity = Races
30      500       = Weapon Animations
501     699       = Usable Items
700     999       = Generic Items
1000    1299      = Necklaces
1300    1799      = Chest Armors
1800    1999      = Boots
2000    2199      = Gloves
2200    2499      = Pants
2500    2699      = Wings
2700    2899      = Shields
2900    3199      = Head Gears
3200    3499      = Neck Armors
3500    3999      = Weapons
4000    4999      = Pets
5000    5999      = Cards
6000    6999      = Bows
7000    7999      = Arrows
Colors for dyeable equipments or items are now set up by itemcolors.xml.
-->

<items>
    <!-- Hairstyles -->
    <item id="-1" type="hairsprite" name="Bald">
        <sprite>hairstyles/hairstyle01.xml</sprite>
    </item>
    <item id="-2" type="hairsprite" name="Bowl Cut" colors="hairS">
        <sprite>hairstyles/hairstyle02.xml</sprite>
    </item>
    <item id="-3" type="hairsprite" name="Combed Back" colors="hairS">
        <sprite>hairstyles/hairstyle03.xml</sprite>
    </item>
    <item id="-4" type="hairsprite" name="Emo" colors="hairS">
        <sprite>hairstyles/hairstyle04.xml</sprite>
    </item>
    <item id="-5" type="hairsprite" name="Mohawk" colors="hairS">
        <sprite>hairstyles/hairstyle05.xml</sprite>
    </item>
    <item id="-6" type="hairsprite" name="Pompadour" colors="hairS">
        <sprite>hairstyles/hairstyle06.xml</sprite>
    </item>
    <item id="-7" type="hairsprite" name="Center Parting" colors="hairS">
        <sprite>hairstyles/hairstyle07.xml</sprite>
    </item>
    <item id="-8" type="hairsprite" name="Long and Slick" colors="hair">
        <sprite>hairstyles/hairstyle08.xml</sprite>
    </item>
    <item id="-9" type="hairsprite" name="Short and Curly" colors="hair">
        <sprite>hairstyles/hairstyle09.xml</sprite>
    </item>
    <item id="-10" type="hairsprite" name="Pigtails" colors="hair">
        <sprite>hairstyles/hairstyle10.xml</sprite>
    </item>
    <item id="-11" type="hairsprite" name="Long and Curly" colors="hair">
        <sprite>hairstyles/hairstyle11.xml</sprite>
    </item>
    <item id="-12" type="hairsprite" name="Parted" colors="hair">
        <sprite>hairstyles/hairstyle12.xml</sprite>
    </item>
    <item id="-13" type="hairsprite" name="Perky Ponytail" colors="hairS">
        <sprite>hairstyles/hairstyle13.xml</sprite>
    </item>
    <item id="-14" type="hairsprite" name="Wave" colors="hairS">
        <sprite>hairstyles/hairstyle14.xml</sprite>
    </item>
    <item id="-15" type="hairsprite" name="Mane" colors="hairS">
        <sprite>hairstyles/hairstyle15.xml</sprite>
    </item>
    <item id="-16" type="hairsprite" name="Bun" colors="hairS">
        <sprite>hairstyles/hairstyle16.xml</sprite>
    </item>
    <item id="-17" type="hairsprite" name="Wavy" colors="hairS">
        <sprite>hairstyles/hairstyle17.xml</sprite>
    </item>
    <item id="-18" type="hairsprite" name="Bunches" colors="hairS">
        <sprite>hairstyles/hairstyle18.xml</sprite>
    </item>
    <item id="-19" type="hairsprite" name="Long Ponytail" colors="hairS">
        <sprite>hairstyles/hairstyle19.xml</sprite>
    </item>
    <item id="-20" type="hairsprite" name="Infinitely Long" colors="hair">
        <sprite>hairstyles/hairstyle20.xml</sprite>
    </item>
    <item id="-21" type="hairsprite" name="Choppy" colors="hair">
        <sprite>hairstyles/hairstyle21.xml</sprite>
    </item>
    <item id="-22" type="hairsprite" name="Wild" colors="hair">
        <sprite>hairstyles/hairstyle22.xml</sprite>
    </item>
    <item id="-23" type="hairsprite" name="Punk" colors="hairS">
        <sprite>hairstyles/hairstyle23.xml</sprite>
    </item>
    <item id="-24" type="hairsprite" name="Imperial" colors="hairS">
        <sprite>hairstyles/hairstyle24.xml</sprite>
    </item>
    <item id="-25" type="hairsprite" name="Side Strand" colors="hairS">
        <sprite>hairstyles/hairstyle25.xml</sprite>
    </item>
    <item id="-26" type="hairsprite" name="Messy" colors="hairS">
        <sprite>hairstyles/hairstyle26.xml</sprite>
    </item>
    <item id="-27" type="hairsprite" name="Flat Ponytail" colors="hairS">
        <sprite>hairstyles/hairstyle27.xml</sprite>
    </item>
    <item id="-28" type="hairsprite" name="Tapered Nape" colors="hairS">
        <sprite>hairstyles/hairstyle28.xml</sprite>
    </item>

    <!-- Races -->
    <item id="-100" type="racesprite" name="Human">
        <sprite gender="unisex">races/human-male.xml</sprite>
        <sprite gender="female">races/human-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-101" type="racesprite" name="Ukar">
        <sprite gender="unisex">races/ukar-male.xml</sprite>
        <sprite gender="female">races/ukar-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-102" type="racesprite" name="Demon">
        <sprite gender="unisex">races/demon-male.xml</sprite>
        <sprite gender="female">races/demon-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-103" type="racesprite" name="Elven">
        <sprite gender="unisex">races/elven-male.xml</sprite>
        <sprite gender="female">races/elven-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-104" type="racesprite" name="Orc">
        <sprite gender="unisex">races/orc-male.xml</sprite>
        <sprite gender="female">races/orc-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-105" type="racesprite" name="Raijin">
        <sprite gender="unisex">races/raijin-male.xml</sprite>
        <sprite gender="female">races/raijin-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>
    <item id="-106" type="racesprite" name="Tritan">
        <sprite gender="unisex">races/tritan-male.xml</sprite>
        <sprite gender="female">races/tritan-female.xml</sprite>
        <sound event="hit">weapons/barehands/hit1.ogg</sound>
        <sound event="miss">weapons/barehands/miss1.ogg</sound>
    </item>

    <!-- Special Races -->
    <item id="-150" type="racesprite" name="Piou">
        <sprite gender="unisex">races/piou-unisex.xml</sprite>
        <sound event="hit">monsters/piou/hit1.ogg</sound>
        <sound event="miss">monsters/piou/miss1.ogg</sound>
    </item>

    <!-- Usable Items -->
    <item id="501"
        image="usable/acorn.png"
        name="Acorn"
        description="A natural food, ingredient, bait or seed."
        useButton="Eat"
        effect="Heal 12-18 HP"
        type="usable"
        weight="3"
        maxFloorOffset="10">
        <inventory>
            <menu
                name1="Eat"
                command1="useinv 'INVINDEX'"
                name2="Eat"
            />
            <menu
                name1="Plant"
                command1="useinv 'INVINDEX' 1"
                name2="Plant"
            />
        </inventory>
    </item>
    <item id="502"
        image="usable/bread.png"
        name="Bread"
        description="A baked food, ingredient or bait."
        useButton="Eat"
        effect="Heal 25-40 HP"
        type="usable"
        weight="25"/>
    <item id="503"
        image="usable/fungus.png"
        name="Fungus"
        description="A peculiar food, ingredient or remedy against poison."
        useButton="Eat"
        effect="Damage -5%; Defense +5%; Heal 25-35 HP"
        type="usable"
        weight="8"
        maxFloorOffset="9"/>
    <item id="504"
        image="usable/cheese.png"
        name="Cheese"
        description="A yummy food, ingredient or bait."
        useButton="Eat"
        effect="Heal 30-50 HP"
        type="usable"
        weight="3"/>
    <item id="505"
        image="usable/pioulegs.png"
        name="Piou Legs"
        description="A tender food, ingredient or bait."
        useButton="Eat"
        effect="Heal 7-13 HP"
        type="usable"
        weight="4"/>
    <item id="506"
        image="usable/lettuceleaf.png"
        name="Lettuce Leaf"
        description="A healthy food, ingredient or bait."
        useButton="Eat"
        effect="Heal 15-25 HP"
        type="usable"
        weight="1"/>
    <item id="507"
        image="usable/piberries.png"
        name="Piberries"
        description="The famous staining fruit."
        useButton="Eat"
        effect="Heal 12-23 HP"
        type="usable"
        weight="2"/>
    <item id="508"
        image="usable/drops.png|S:#898989,7287a0,aeaeae,96abc6,cecece,bccce0,e5e5e5,dce4ee"
        name="Sea Drops"
        description="Yucky drops of salt water."
        useButton="Drink"
        effect="Headache; Heal 10-20 HP"
        type="usable"
        weight="4"/>
    <item id="509"
        image="usable/aquada.png"
        name="Aquada"
        description="A nutritious fruit of the sea."
        useButton="Eat"
        effect="Heal 75-100 HP"
        type="usable"
        weight="16"/>
    <item id="510"
        image="usable/blobime.png|S:#686868,695977,919191,9f79a9,bababa,d69ec0,dcdcdc,eccddf"
        name="Pink Blobime"
        description="Yucky pink mucus of little blub."
        useButton="Eat"
        effect="Headache; Heal 2-6 HP"
        type="usable"
        weight="10"/>
    <item id="511"
        image="usable/blobime.png|S:#686868,4e4e86,919191,7966b0,bababa,a384d5,dcdcdc,d7b9ea"
        name="Purple Blobime"
        description="Stinky purple mucus of blub."
        useButton="Eat"
        effect="Stomach ache; Heal 30-70 HP"
        type="usable"
        weight="10"/>
    <item id="512"
        image="usable/croconut-half.png"
        name="Half Croconut"
        description="Its inside seems delicious."
        useButton="Eat"
        effect="Heal 65-90 HP"
        type="usable"
        weight="38"
        maxFloorOffset="10"/>
    <item id="513"
        image="usable/croconut.png"
        name="Croconut"
        description="Fallen from a crocotree, this fruit could be opened."
        useButton="Open"
        type="usable"
        weight="80"/>
    <item id="514"
        image="usable/book-old.png"
        name="Old Book"
        description="A book that threatens to fall apart in your hands as you carefully browse the pages."
        useButton="Read"
        type="usable"
        weight="25"/>
    <item id="515"
        image="usable/plushroom.png"
        name="Plushroom"
        description="A strange remedy of many possible uses."
        useButton="Eat"
        effect="Damage +5%; Heal 20-30 HP"
        type="usable"
        weight="8"/>
    <item id="516"
        image="usable/pumpkinseeds.png"
        name="Pumpkin Seeds"
        description="Yucky seeds that threaten to grow out-of-control."
        useButton="Eat"
        hp="1"
        effect="Headache"
        type="usable"
        weight="1"/>
    <item id="517"
        image="usable/deliciouscookie.png"
        name="Delicious Cookie"
        description="This is a reward from the Cookie Master. Be careful before you eat it, its effects are unknown..."
        useButton="Eat"
        effect="Unknown"
        type="equip-torso">
        <replace />
        <replace sprite="race">
            <item from="-100" to="-150"/>
            <item from="-101" to="-150"/>
            <item from="-102" to="-150"/>
            <item from="-103" to="-150"/>
            <item from="-104" to="-150"/>
            <item from="-105" to="-150"/>
            <item from="-106" to="-150"/>
        </replace>
    </item>
    <item id="518"
        image="usable/urchinmeat.png"
        name="Urchin Meat"
        description="A seafood ingredient."
        useButton="Eat"
        effect="Heal 28-35 HP"
        type="usable"
        weight="1"/>
    <item id="519"
        image="usable/easteregg.png"
        name="Easter Egg"
        description="A chocolate shell covered in a very thin metal layer."
        useButton="Eat"
        effect="Heal 60-75 HP"
        type="usable"
        weight="10"/>
    <item id="520"
        image="usable/piberriesinfusion.png"
        name="Piberries Infusion"
        description="A potion made from piberries."
        effect="Heal 110-130 HP"
        useButton="Drink"
        type="usable"
        weight="15"/>
    <item id="521"
        image="usable/fatespotion.png"
        name="Fate's Potion"
        description="An effective blood-loss remedy."
        effect="Heal 240-260 HP"
        useButton="Drink"
        type="usable"
        weight="17"/>
    <item id="522"
        image="usable/clotholiquor.png"
        name="Clotho Liquor"
        description="Remedy used in feral warrior training sessions."
        effect="Heal 575-625 HP"
        useButton="Drink"
        type="usable"
        weight="16"/>
    <item id="523"
        image="usable/lachesisbrew.png"
        name="Lachesis Brew"
        description="Rare, powerful and restricted remedy."
        effect="Heal 1100-1300 HP"
        useButton="Drink"
        type="usable"
        weight="14"/>
    <item id="524"
        image="usable/atroposmixture.png"
        name="Atropos Mixture"
        description="The most advanced potion ever synthesized."
        effect="Heal 2300-2550 HP"
        useButton="Drink"
        type="usable"
        weight="15"/>
    <item id="525"
        image="usable/elixiroflife.png"
        name="Elixir Of Life"
        description="A potion able to restore even dead trees to life."
        effect="Heal 10000 HP"
        useButton="Eat"
        type="usable"
        weight="20"/>
    <item id="526"
        image="usable/shovel.png"
        name="Iron Shovel"
        useButton="Use"
        description="Discover treasures, dungeons and raw materials."
        type="usable"
        weight="210"
        maxFloorOffset="5"/>
    <item id="527"
        image="usable/pumpkinjuice.png"
        name="Pumpkin Juice"
        useButton="Use"
        description="Blood-colored juice from madly swarming pumpkin."
        effect="Heal 30-50 HP"
        type="usable"
        weight="5"
        maxFloorOffset="15"/>
    <item id="528"
        image="usable/manana.png"
        name="Manana"
        useButton="Use"
        description="A fast healing fruit."
        effect="Heal 70-80 HP"
        type="usable"
        weight="10"
        maxFloorOffset="6"/>
    <item id="529"
        image="usable/curshroom.png"
        name="Curshroom"
        description="A strange remedy of many possible uses, cures poison."
        useButton="Eat"
        effect="Damage per second +10; Heal 40-50 HP"
        type="usable"
        weight="10"
        maxFloorOffset="6"/>
    <item id="530"
        image="usable/carrot.png"
        name="Carrot"
        description="Good in various recipes."
        useButton="Eat"
        effect="Heal 20-30 HP"
        type="usable"
        weight="3"
        maxFloorOffset="6"/>
    <item id="531"
        image="usable/wine.png"
        name="Red Plush Wine"
        description="Wine produced from black grapes in the south-east of Aurora."
        effect="Heal 40-90 HP"
        useButton="Drink"
        type="usable"
        weight="10"/>
    <item id="532"
        image="usable/book-pioufluffy.png"
        name="Piou and The Fluffy"
        description="This story is a warning against listening to flattery."
        useButton="Read"
        type="usable"
        weight="25"/>
    <item id="533"
        image="usable/book-poem.png"
        name="Poem about Poems"
        description="A heart touching poem written by Nard."
        useButton="Read"
        type="usable"
        weight="20"/>
    <item id="534"
        image="usable/book-chorus.png"
        name="Chorus of the Woods"
        description="This poem was written centuries ago and is from the ancient city of Keshlam."
        useButton="Read"
        type="usable"
        weight="25"/>
    <item id="535"
        image="usable/book-comtheory.png"
        name="Communication Theory"
        description="Various meta explanations regarding the dialogue system."
        useButton="Read"
        type="usable"
        weight="20"/>
    <item id="536"
        image="usable/book-chorus.png"
        name="Fluffy Animals who Love Their Owners"
        description="A quick guide to introduce pet caring."
        useButton="Read"
        type="usable"
        weight="20"/>
    <item id="537"
        image="usable/book-laws.png"
        name="The Book of Laws"
        description="The basic laws respected and upheld in all parts of Gasaron."
        useButton="Read"
        type="usable"
        weight="10"/>
    <item id="538"
        image="usable/book-fishing.png"
        name="Fishing Guide Vol. I"
        description="A small book that covers the basics of fishing."
        useButton="Read"
        type="usable"
        weight="25"/>
    <item id="539"
        image="usable/book-cooking.png"
        name="Recipe Book"
        description="A small book with all the culinary wonders you have collected."
       useButton="Read"
        type="usable"
        weight="20"/>
    <item id="560"
        image="usable/sandwich-carp.png"
        name="Carp Sandwich"
        useButton="Eat"
        description="A yummy sandwich, made with a fresh carp."
        effect="Heal 200-300 HP"
        type="usable"
        weight="25"
        maxFloorOffset="6"/>
    <item id="561"
        image="usable/sandwich-pioulegs.png"
        name="Piouleg Sandwich"
        useButton="Eat"
        description="A typical Artis food. How can you just eat these little Pious?"
        effect="Heal 150-300 HP"
        type="usable"
        weight="25"
        maxFloorOffset="6"/>
    <item id="562"
        image="usable/sandwich-manana.png"
        name="Manana Sandwich"
        useButton="Eat"
        description="A vegetarian sandwich, for those who like it."
        effect="Heal 250-400 HP"
        type="usable"
        weight="25"
        maxFloorOffset="6"/>
    <item id="563"
        image="usable/beer.png"
        name="Beer"
        useButton="Eat"
        description="Just a beer, nothing else. Don`t drink and drive!"
        effect="Heal 400-500 HP"
        type="usable"
        weight="50"
        maxFloorOffset="6"/>
    <item id="564"
        image="usable/roastedmaggot.png"
        name="Roasted Maggot"
        useButton="Eat"
        description="a maggot, roasted on fire. Mmh, crunchy!"
        effect="Heal 100-250 HP"
        type="usable"
        weight="5"
        maxFloorOffset="6"/>
    <item id="565"
        image="usable/bottleofwater.png"
        name="Bottle of Water"
        useButton="Eat"
        description="Fresh springwater from Hurnscald area. Healthy!"
        effect="Heal 70-100 HP"
        type="usable"
        weight="25"
        maxFloorOffset="6"/>
    <item id="566"
        image="usable/cherrycake.png"
        name="Cherry Cake"
        useButton="Eat"
        description="If you like sweets, you will love this homemade cherry cake."
        effect="Heal 20-35 HP"
        type="usable"
        weight="10"
        maxFloorOffset="6"/>
    <item id="600"
        image="usable/potion1.png|W:#b6322c,fe8b70,f4d2be"
        name="Small Healing Potion"
        description="A small Healing Potion for little wounds."
        effect="Heal 250 HP"
        useButton="Drink"
        type="usable"
        weight="32"/>
    <item id="601"
        image="usable/potion2.png|W:#b6322c,fe8b70,f4d2be"
        name="Medium Healing Potion"
        description="A medium Healing Potion for painful wounds. Slightly addictive, handle with care."
        effect="Heal 500 HP"
        useButton="Drink"
        type="usable"
        weight="64"/>
    <item id="602"
        image="usable/potion3.png|W:#b6322c,fe8b70,f4d2be"
        name="Large Healing Potion"
        description="A large Healing Potion. To countermand involuntary amputations."
        effect="Heal 1000 HP"
        useButton="Drink"
        type="usable"
        weight="128"/>
    <item id="603"
        image="usable/potion1.png|W:#16486e,498ec5,e4f2fc"
        name="Small Mana Potion"
        description="A small Mana Potion for 'Not-at-all-a-Mage' players."
        effect="Heal 20 SP"
        useButton="Drink"
        type="usable"
        weight="32"/>
    <item id="604"
        image="usable/potion2.png|W:#16486e,498ec5,e4f2fc"
        name="Medium Mana Potion"
        description="A medium Mana Potion for the Sorcerer's Apprentice."
        effect="Heal 50 SP"
        useButton="Drink"
        type="usable"
        weight="64"/>
    <item id="605"
        image="usable/potion3.png|W:#16486e,498ec5,e4f2fc"
        name="Large Mana Potion"
        description="A large Mana Potion for the magic Ones.."
        effect="Heal 100 SP"
        useButton="Drink"
        type="usable"
        weight="128"/>
    <item id="606"
        image="usable/potion4.png|W:#da69e5,ffdaff"
        name="Concentration Potion"
        description="A Potion to make you faster, and to make your attacks hit with higher accuracy."
        effect="Higher Concentration."
        useButton="Drink"
        type="usable"
        weight="128"/>
    <item id="607"
        image="usable/potion4.png|W:#c05000,f0a000,f0f09f"
        name="Iron Potion"
        description="This potion contains powderized Iron. It makes you strong and resistant against physical attacks."
        effect="Higher Strength and Defense."
        useButton="Drink"
        type="usable"
        weight="128"/>
    <item id="608"
        image="usable/fertility-potion.png"
        name="Fertility Potion"
        description="A bottle containing some magical fertilizer, used for making soil fruitful again."
        effect="Better dont drink it, it could be toxic."
        useButton="Drink"
        type="usable"
        weight="128"/>
    <item id="609"
        image="usable/honey.png"
        name="Honey"
        description="A glass full of the finest honey. Enjoy it, and don't forget to thank the bees!"
        effect="Heals some HP and SP."
        useButton="Drink"
        type="usable"
        weight="250"/>

    <!-- Generic Items -->
    <item id="700"
        image="generic/smalltentacles.png"
        name="Small Tentacles"
        description="Colorful tentacles with poisonous barbs."
        type="generic"
        weight="5"
        maxFloorOffset="12"/>
     <item id="701"
        image="generic/pioufeathers.png"
        name="Piou Feathers"
        description="Small feathers of an innocent little piou."
        type="generic"
        weight="1"
        maxFloorOffset="8"/>
    <item id="702"
        image="generic/tortugashell-fragment.png"
        name="Tortuga Shell Fragment"
        description="Used to make tools and decorations."
        type="generic"
        weight="25"/>
    <item id="703"
        image="generic/eggshell-half.png"
        name="Half Eggshell"
        description="Maybe something hatched, or someone was cooked..."
        type="generic"
        weight="2"/>
    <item id="704"
        image="generic/rattotail.png"
        name="Ratto Tail"
        description="Hairless tail of a ratto."
        type="generic"
        weight="1"/>
    <item id="705"
        image="generic/teeth-ratto.png"
        name="Ratto Teeth"
        description="Sharp incisors of a ratto."
        type="generic"
        weight="1"/>
    <item id="706"
        image="generic/crocclaw.png"
        name="Croc Claw"
        description="It moves and pinches without its body."
        type="generic"
        weight="45"/>
    <item id="707"
        image="generic/squichyclaws.png"
        name="Squichy Claws"
        description="Claws from a wild Squichy."
        type="generic"
        weight="1"/>
    <item id="708"
        image="generic/tortugashell.png"
        name="Tortuga Shell"
        description="A symbol of shelter."
        type="generic"
        weight="95"/>
    <item id="709"
        image="generic/tongue.png"
        name="Tortuga Tongue"
        description="Adept to digesting blubs."
        type="generic"
        weight="2"
        maxFloorOffset="12"/>
    <item id="710"
        image="generic/pearl.png"
        name="Pearl"
        description="A beautiful round and shiny pearl."
        type="generic"
        weight="1"
        maxFloorOffset="11"/>
    <item id="711"
        image="generic/coral.png|S:#535353,693d41,808080,b44e4c,999999,da6858,b9b9b9,f1a082,d7d7d7,fbcbb3"
        name="Coral"
        description="Can indicate the health of oceanic ecosystems."
        type="generic"
        weight="10"
        maxFloorOffset="9"/>
    <item id="712"
        image="generic/coral.png|S:#535353,473746,808080,5b5a84,999999,6c7ec6,b9b9b9,7eb1e0,d7d7d7,c2f6fa"
        name="Blue Coral"
        description="A coral dyed in blue by a blub."
        type="generic"
        weight="10"
        maxFloorOffset="9"/>
    <item id="713"
        image="generic/box-fish.png"
        name="Fish Box"
        description="A wooden box full of fresh fish that Couwan gave you."
        type="generic"
        weight="1250"/>
    <item id="714"
        image="generic/box-aquada.png"
        name="Aquada Box"
        description="Contains 50 aquadas."
        type="generic"
        weight="850"/>
    <item id="715"
        image="generic/box-croconut.png"
        name="Croconut Box"
        description="Contains 17 croconuts."
        type="generic"
        weight="1400"/>
    <item id="716"
        image="generic/box-plushroom.png"
        name="Plushroom Box"
        description="Contains 87 plushrooms."
        type="generic"
        weight="720"/>
    <item id="717"
        image="generic/dish-poisoned.png"
        name="Poisoned Dish"
        description="A special dish made of strange ingredients."
        type="generic"
        weight="20"
        maxFloorOffset="12"/>
    <item id="718"
        image="generic/key-ship.png"
        name="La Johanne's Key"
        description="An iron key to open La Johanne's entrance door."
        type="generic"
        weight="1"
        maxFloorOffset="12"/>
    <item id="719"
        image="generic/wing-bat.png|S:#4d4d4d,3d2e37,686868,4f3c47,919191,664f4f,b6b6b6,948573"
        name="Left Crafty Wing"
        description="This wing is slight and soft unlike its former owner."
        type="generic"
        weight="35"
        maxFloorOffset="17"/>
    <item id="720"
        image="generic/teeth-bat.png"
        name="Bat Teeth"
        description="What sharp teeth! They seem to be more dangerous than a knife."
        type="generic"
        weight="3"
        maxFloorOffset="16"/>
    <item id="721"
        image="generic/wing-bat.png|S:#4d4d4d,4b3126,686868,624632,919191,af6b3b,b6b6b6,de8f40"
        name="Right Crafty Wing"
        description="This wing is slight and soft unlike its former owner."
        type="generic"
        weight="35"
        maxFloorOffset="17"/>
    <item id="722"
        image="generic/pumpkin.png"
        name="Pumpkin"
        description="An invasive species, sometimes carved during festivals."
        type="generic"
        weight="530"
        maxFloorOffset="10"/>
    <item id="723"
        image="generic/mushroom-spores.png"
        name="Mushroom Spores"
        description="Some colored spores that help mushrooms spread across the land."
        type="generic"
        weight="1"
        maxFloorOffset="12"/>
    <item id="724"
        image="generic/moss.png"
        name="Moss"
        description="Grows in moist, shady areas."
        type="generic"
        weight="2"
        maxFloorOffset="12"/>
    <item id="725"
        image="generic/tentacles.png"
        name="Tentacles"
        description="Boneless appendage of an invertebrate."
        type="generic"
        weight="8"
        maxFloorOffset="7"/>
    <item id="726"
        image="generic/carp.png"
        name="Common Carp"
        description="Freshwater is commonly inhabited by these pests."
        type="generic"
        weight="200"
        maxFloorOffset="9"/>
    <item id="727"
        image="generic/carp.png|S:#394f4d,3e4d58,607793,7b6093,6ba6a8,a47ba8,c9dec0,dec0cb,8dc7a2,dec0cb"
        name="Grass Carp"
        description="A smart fish, very difficult to catch."
        type="generic"
        weight="200"
        maxFloorOffset="9"/>
    <item id="728"
        image="generic/fishingrod.png"
        name="Fishing Rod"
        description="Designed for sports fishing."
        type="generic"
        weight="20"
        maxFloorOffset="4"/>
    <item id="729"
        image="generic/fur.png"
        name="Fluffy Fur"
        description="This soft fur is used to make warm clothing."
        type="generic"
        weight="2"
        maxFloorOffset="8"/>
    <item id="730"
        image="generic/letter-stamp.png"
        name="Clan Certification"
        description="This piece of paper grants you official permission to found a clan."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="731"
        image="generic/bottle-empty.png"
        name="Empty Bottle"
        description="An empty bottle, clean and ready to be filled."
        type="generic"
        weight="100"
        maxFloorOffset="4"/>
    <item id="732"
        image="generic/rawlog.png"
        name="Raw Log"
        description="A somehow strange piece of wood."
        type="generic"
        weight="200"
        maxFloorOffset="4"/>
    <item id="733"
        image="generic/pinkantennae.png"
        name="Pink Antennae"
        description="An Antennae, as Pinkies wear it on their heads."
        type="generic"
        weight="25"
        maxFloorOffset="4"/>
    <item id="734"
        image="generic/mug-empty.png|W:#743e66,955372,bd6f8c,e68e9a,f0b49c,efe1c7"
        name="Empty Mug"
        description="This Tea Mug is pretty empty."
        type="generic"
        weight="100"
        maxFloorOffset="4"/>
    <item id="735"
        image="generic/petal.png|S:#743e66,955372,bd6f8c,e68e9a,f0b49c,efe1c7"
        name="Pink Petal"
        description="A fragile Petal with an aromatic smell."
        type="generic"
        weight="5"
        maxFloorOffset="4"/>
    <item id="736"
        image="generic/powder.png"
        name="Pile of Ash"
        description="A handfull of Ash with unknown origin."
        type="generic"
        weight="5"
        maxFloorOffset="4"/>
    <item id="737"
        image="generic/herb-alizarin.png"
        name="Alizarin Herb"
        description="A few leaves."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="738"
        image="generic/herb-cobalt.png"
        name="Cobalt Herb"
        description="A few leaves."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="739"
        image="generic/herb-gamboge.png"
        name="Gamboge Herb"
        description="A few leaves."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="740"
        image="generic/herb-mauve.png"
        name="Mauve Herb"
        description="A few leaves."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="741"
        image="generic/gold-nuggets.png"
        name="Gold Nuggets"
        description="A few valuable pieces of gold."
        type="generic"
        weight="100"
        maxFloorOffset="4"/>
    <item id="742"
        image="generic/coal.png"
        name="Coal"
        description="Coal. Black and dirty."
        type="generic"
        weight="50"
        maxFloorOffset="4"/>
    <item id="743"
        image="generic/ironore.png"
        name="Iron Ore"
        description="Iron Ore. Hard and heavy."
        type="generic"
        weight="150"
        maxFloorOffset="4"/>
    <item id="744"
        image="generic/maggotslime.png"
        name="Maggot Slime"
        description="Slimy maggot slime."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="745"
        image="generic/bugleg.png"
        name="Bug Leg"
        description="You busted a gut for getting this, right?"
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="746"
        image="generic/hardspike.png"
        name="Hard Spike"
        description="Spiky Spine from a strange mushroom."
        type="generic"
        weight="20"
        maxFloorOffset="4"/>
    <item id="747"
        image="generic/silkcocoon.png"
        name="Silk Cocoon"
        description="Very thin and soft."
        type="generic"
        weight="1"
        maxFloorOffset="4"/>
    <item id="748"
        image="generic/rose.png|W:#580000,a40000,c02020,ff6060"
        name="Red Rose"
        description="A beautiful red rose. Be careful, it has thorns!"
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="749"
        image="generic/rose.png|W:#585858,aaaaaa,d0d0d0,ffffff"
        name="White Rose"
        description="A beautiful white rose. Be careful, it has thorns!"
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="750"
        image="generic/rose.png|W:#846211,dab333,fffb93,ffffff"
        name="Yellow Rose"
        description="A beautiful yellow rose. Be careful, it has thorns!"
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="751"
        image="generic/rose.png|W:#16486e,498ec5,e4f2fc"
        name="Blue Rose"
        description="A blue rose. You haven't seen blue roses before. Where might they grow?"
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="752"
        image="generic/tulip.png|W:#580000,a40000,c02020,ff6060"
        name="Red Tulip"
        description="A nice red tulip. It smells nice."
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="753"
        image="generic/tulip.png|W:#585858,aaaaaa,d0d0d0,ffffff"
        name="White Tulip"
        description="A beautiful white tulip. Whom could you present it?"
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="754"
        image="generic/tulip.png|W:#846211,dab333,fffb93,ffffff"
        name="Yellow Tulip"
        description="A yellow tulip. I seems to be not really fresh."
        type="generic"
        weight="10"
        maxFloorOffset="4"/>
    <item id="755"
        image="generic/tulip.png|W:#16486e,498ec5,e4f2fc"
        name="Blue Tulip"
        description="A shiny blue tulip. There must be a creative grower of flowers somewhere around."
        type="generic"
        weight="10"
        maxFloorOffset="4"/>

    <item id="800"
        image="generic/gem-shard.png|W:#315a67,a4a4ae,dce5d6,ffffff"
        name="Diamond Shard"
        description="A small diamond shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>
    <item id="801"
        image="generic/gem-shard.png|W:#581a1a,a41111,c03a3a,ff6060,ffffff"
        name="Ruby Shard"
        description="A small ruby shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>
    <item id="802"
        image="generic/gem-shard.png|W:#1f9c1f,89d689,ffffff"
        name="Emerald Shard"
        description="A small emerald shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>
    <item id="803"
        image="generic/gem-shard.png|W:#4b4bbd,888af4,ffffff"
        name="Sapphire Shard"
        description="A small sapphire shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>
    <item id="804"
        image="generic/gem-shard.png|W:#ccb534,f1ea8e,ffffaa,ffffff"
        name="Topaz Shard"
        description="A small topaz shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>
    <item id="805"
        image="generic/gem-shard.png|W:#530a7c,b362e1,ca87ef,ffffff"
        name="Amethyst Shard"
        description="A small amethyst shard."
        type="generic"
        weight="10"
        maxFloorOffset="15"/>

    <!-- Necklaces  -->
    <item id="1000"
        image="equipment/neck/copper-necklace.png|W"
        name="%Color% Necklace (Copper)"
        description="A %color% necklace, made of copper."
        level="10"
        type="equip-necklace"
        weight="50"
        colors="gem"
        iconColors="gem">
        <sprite gender="unisex">equipment/neck/copper-necklace.xml</sprite>
     </item>

    <!-- Chest Armors -->
    <item id="1300"
        image="equipment/chest/cottonshirt.png|S:#3c3c3c,3e3c38,4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e4dfca"
        name="Creased Shirt"
        description="A spare shirt from the crew of La Johanne."
        defense="50"
        level="1"
        type="equip-torso"
        weight="17">
        <sprite gender="unisex">equipment/chest/cottonshirt-male.xml|#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf</sprite>
        <sprite gender="female">equipment/chest/cottonshirt-female.xml|#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf</sprite>
    </item>
    <item id="1301"
        image="equipment/chest/vneckjumper.png|S"
        name="%Color% V-neck Jumper"
        description="A simple %color% jumper made from a lightweight cashmere."
        defense="140"
        level="10"
        type="equip-torso"
        weight="30"
        colors="vneck"
        iconColors="vneckS">
        <sprite gender="unisex">equipment/chest/vneckjumper-male.xml</sprite>
        <sprite gender="female">equipment/chest/vneckjumper-female.xml</sprite>
    </item>
    <item id="1302"
        image="equipment/chest/tanktop.png|W"
        name="%Color% Artis Tank Top"
        description="A %color% tank top made from cotton cloth."
        defense="100"
        level="5"
        type="equip-torso"
        weight="11"
        colors="simple"
        maxFloorOffset="10">
        <sprite gender="unisex">equipment/chest/tanktop-male.xml</sprite>
        <sprite gender="female">equipment/chest/tanktop-female.xml</sprite>
    </item>
    <item id="1303"
        image="equipment/chest/sailorshirt.png"
        name="Sailor Shirt"
        description="Proof that ye be in the crew, matey!"
        defense="180"
        level="10"
        type="equip-torso"
        weight="22">
        <sprite gender="unisex">equipment/chest/shirt-male.xml|#4e6059,6c8279;#72571e,836737,a5854d,b18f45</sprite>
        <sprite gender="female">equipment/chest/shirt-female.xml|#4e6059,6c8279;#72571e,836737,a5854d,b18f45</sprite>
    </item>
    <item id="1304"
        image="equipment/chest/trainingshirt.png"
        name="Legion's Training Shirt"
        description="Informal shirt worn during intense aerobic exercises."
        defense="200"
        level="10"
        type="equip-torso"
        weight="120">
        <sprite gender="unisex">equipment/chest/trainingshirt-male.xml</sprite>
        <sprite gender="female">equipment/chest/trainingshirt-female.xml</sprite>
    </item>
    <item id="1305"
        image="equipment/chest/copperarmor.png"
        name="Legion's Copper Armor"
        description="This armor provides great protection. It is worn by those with authority."
        defense="400"
        level="15"
        type="equip-torso"
        weight="340">
        <sprite gender="unisex">equipment/chest/copperarmor-male.xml</sprite>
        <sprite gender="female">equipment/chest/copperarmor-female.xml</sprite>
    </item>
    <item id="1306"
        image="equipment/chest/forestarmor.png"
        name="Forest Armor"
        description="An Armor made for hunting."
        defense="350"
        level="15"
        type="equip-torso"
        weight="170">
        <sprite gender="unisex">equipment/chest/forestarmor-male.xml</sprite>
        <sprite gender="female">equipment/chest/forestarmor-female.xml</sprite>
    </item>
    <item id="1307"
        image="equipment/chest/silkrobe.png"
        name="Silk Robe"
        description="A light robe out of silk. Does not provide much protection, though."
        defense="100"
        level="17"
        type="equip-torso"
        weight="70">
        <sprite gender="unisex">equipment/chest/silkrobe-male.xml</sprite>
        <sprite gender="female">equipment/chest/silkrobe-female.xml</sprite>
    </item>
    <item id="1308"
        image="equipment/chest/finedress.png|W"
        name="%Color% Fine Dress"
        description="A fine %Color% dress for the Lady or the Gentleman of today."
        defense="250"
        level="15"
        type="equip-torso"
        weight="240"
        colors="simple"
        iconColors="simple"
        maxFloorOffset="10">
        <sprite gender="unisex">equipment/chest/finedress-male.xml</sprite>
        <sprite gender="female">equipment/chest/finedress-female.xml</sprite>
    </item>
    <item id="1309"
        image="equipment/chest/warlordplate.png"
        name="Warlord Plate"
        description="Strong and decorative armor."
        defense="450"
        level="20"
        type="equip-torso"
        weight="1500">
        <sprite gender="unisex">equipment/chest/warlordplate-male.xml</sprite>
        <sprite gender="female">equipment/chest/warlordplate-female.xml</sprite>
    </item>
    <!-- Boots -->
    <item id="1800"
        image="equipment/feet/boots.png|S:#3c3c3c,40332d,4d4d4d,5e4a3d,686868,705740,919191,a1825d,b6b6b6,b59767,dfdfdf,dbbf88"
        name="Lousy Moccasins"
        description="Crudely assembled footwear not for comfort nor fashion."
        defense="100"
        level="4"
        type="equip-feet"
        weight="18"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/feet/boots-male.xml|#40332d,5e4a3d,705740,a1825d,b59767,dbbf88</sprite>
        <sprite gender="female">equipment/feet/boots-female.xml|#40332d,5e4a3d,705740,a1825d,b59767,dbbf88</sprite>
    </item>
    <item id="1801"
        image="equipment/feet/cottonboots.png|W"
        name="%Color% Cotton Boots"
        description="A pair of %color% quality cotton boots."
        defense="1202"
        level="14"
        type="equip-feet"
        weight="35"
        colors="simple"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/feet/boots-male.xml</sprite>
        <sprite gender="female">equipment/feet/boots-female.xml</sprite>
    </item>

    <!-- Gloves -->
    <item id="2000"
        image="equipment/hands/armbands.png"
        name="Armbands"
        description="Small armbands made of wood and iron."
        defense="80"
        level="3"
        type="equip-arms"
        weight="10"
        maxFloorOffset="16">
        <sprite gender="unisex">equipment/hands/armbands-male.xml</sprite>
        <sprite gender="female">equipment/hands/armbands-female.xml</sprite>
    </item>
    <item id="2001"
        image="equipment/hands/copperarmbands.png"
        name="Copper Armbands"
        description="Sturdy, combat-issue armbands."
        defense="120"
        level="8"
        type="equip-arms"
        weight="20"
        maxFloorOffset="16">
        <sprite gender="unisex">equipment/hands/armbands-male.xml|#663d38,5e3434,8f5c52,a46349,ad7c65,ce8b5b,d9c9b2,ce8b5b</sprite>
        <sprite gender="female">equipment/hands/armbands-female.xml|#663d38,5e3434,8f5c52,a46349,ad7c65,ce8b5b,d9c9b2,ce8b5b</sprite>
    </item>
    <item id="2002"
        image="equipment/hands/ironarmbands.png"
        name="Iron Armbands"
        description="Heavy armbands that slow down all but experienced warriors."
        defense="180"
        level="12"
        type="equip-arms"
        weight="30"
        maxFloorOffset="16">
        <sprite gender="unisex">equipment/hands/armbands-male.xml|#663d38,4b6167,8f5c52,708892,ad7c65,a5bebf,d9c9b2,a5bebf</sprite>
        <sprite gender="female">equipment/hands/armbands-female.xml|#663d38,4b6167,8f5c52,708892,ad7c65,a5bebf,d9c9b2,a5bebf</sprite>
    </item>
    <item id="2003"
        image="equipment/hands/cottongloves.png|W"
        name="%Color% Cotton Gloves"
        description="A pair of comfy, %color% cotton gloves."
        defense="10"
        level="10"
        type="equip-arms"
        weight="60"
        colors="simple"
        maxFloorOffset="16">
        <sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
        <sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
    </item>
    <item id="2004"
        image="equipment/hands/leathergloves.png"
        name="Leather Gloves"
        description="Gloves made of hardened leather."
        defense="20"
        level="20"
        type="equip-arms"
        weight="140"
        maxFloorOffset="16">
        <sprite gender="unisex">equipment/hands/cottongloves-male.xml|#4e2e18,c8752f</sprite>
        <sprite gender="female">equipment/hands/cottongloves-female.xml|#4e2e18,c8752f</sprite>
    </item>

    <!-- Pants -->
    <item id="2200"
        image="equipment/legs/shorts.png|S:#4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e4dfca"
        name="Creased Shorts"
        description="Spare shorts from the crew of La Johanne."
        defense="60"
        level="1"
        type="equip-legs"
        weight="20"
        maxFloorOffset="9">
        <sprite gender="unisex">equipment/legs/shorts-male.xml|#4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e0d5bf</sprite>
        <sprite gender="female">equipment/legs/shorts-female.xml|#4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e0d5bf</sprite>
    </item>
    <item id="2201"
        image="equipment/legs/trousers.png"
        name="Brown Trousers"
        description="Classic trousers ornated with some fluffy fur."
        defense="80"
        level="5"
        type="equip-legs"
        weight="35"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/legs/trousers-male.xml</sprite>
        <sprite gender="female">equipment/legs/trousers-female.xml</sprite>
    </item>
    <item id="2202"
        image="equipment/legs/jeanschaps.png"
        name="Jeans Chaps"
        description="Jeans with snake skin chaps."
        defense="240"
        level="12"
        type="equip-legs"
        weight="360"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/legs/jeanschaps-male.xml</sprite>
        <sprite gender="female">equipment/legs/jeanschaps-female.xml</sprite>
    </item>
    <item id="2203"
        image="equipment/legs/silkpants.png|W"
        name="%Color% Cashmere Pants"
        description="A very light fancy pair of %Color% cashmere trousers."
        defense="80"
        level="17"
        type="equip-legs"
        weight="20"
        colors="vneck"
        iconColors="vneckS"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/legs/silkpants-male.xml</sprite>
    </item>
    <item id="2204"
        image="equipment/legs/cottonskirt.png|W"
        name="%Color% Cotton Skirt"
        description="A %color% skirt made of simple cotton."
        defense="20"
        level="5"
        type="equip-legs"
        weight="15"
        colors="simple"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/legs/cottonskirt-male.xml</sprite>
    </item>
    <item id="2205"
        image="equipment/legs/leathertrousers.png"
        name="Leather Trousers"
        description="A common pair of pants made from leather."
        defense="160"
        level="15"
        type="equip-legs"
        weight="280"
        maxFloorOffset="8">
        <sprite gender="unisex">equipment/legs/cottontrousers-male.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
        <sprite gender="female">equipment/legs/cottontrousers-female.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    </item>

    <!-- Wings
    <item id="2500"
        image="equipment/wings/.png"
        name=""
        description="."
        effect="."
        level=""
        type="equip-charm"
        weight="">
        <sprite>equipment/wings/</sprite>
    </item> -->

    <!-- Shields -->
    <item id="2700"
        image="equipment/shields/barrel.png"
        name="Barrel"
        description="It smells as if somebody used to live inside this barrel..."
        defense="100"
        level="5"
        type="equip-shield"
        weight="400">
        <sprite>equipment/shields/barrel.xml</sprite>
    </item>
    <item id="2701"
        image="equipment/shields/leather.png"
        name="Leather Shield"
        description="Small and round leather shield with iron reinforcement."
        defense="50"
        level="5"
        type="equip-shield"
        weight="1000">
        <sprite>equipment/shields/leathershield.xml</sprite>
    </item>
    <item id="2702"
        image="equipment/shields/woodenshield.png"
        name="Wooden Shield"
        description="A shield made of wood."
        defense="72"
        level="12"
        type="equip-shield"
        weight="2450">
    </item>
    <item id="2703"
        image="equipment/shields/steelshield.png"
        name="Steel Shield"
        description="A shield made of steel."
        defense="200"
        level="20"
        type="equip-shield"
        weight="5500">
    </item>

    <!-- Head Gears -->
    <item id="2900"
        image="equipment/head/bandana.png"
        name="Bandana"
        description="A striped bandana worn by some sailors."
        defense="40"
        level="5"
        type="equip-head"
        weight="4">
        <sprite gender="unisex">equipment/head/bandana-male.xml</sprite>
        <sprite gender="female">equipment/head/bandana-female.xml</sprite>
        <replace sprite="hair">
            <item from="-3" to="-7"/>
            <item from="-4" to="-7"/>
            <item from="-5" to="-27"/>
            <item from="-6" to="-7"/>
            <item from="-13" to="-1"/>
            <item from="-14" to="-7"/>
            <item from="-15" to="-7"/>
            <item from="-16" to="-10"/>
            <item from="-21" to="-7"/>
            <item from="-23" to="-1"/>
            <item from="-25" to="-7"/>
            <item from="-26" to="-21"/>
        </replace>
    </item>
    <item id="2901"
        image="equipment/head/pumpkinhat.png"
        name="Pumpkin Hat"
        description="A carved pumpkin. Its face might scare your enemy off!"
        defense="20"
        level="4"
        type="equip-head"
        weight="50">
        <sprite>equipment/head/pumpkinhat.xml</sprite>
        <replace sprite="hair"/>
    </item>
    <item id="2902"
        image="equipment/head/fancyhat.png"
        name="Fancy Hat"
        description="Worn when living away from cities."
        defense="20"
        level="4"
        type="equip-head"
        weight="11">
        <sprite>equipment/head/fancyhat.xml</sprite>
        <replace sprite="hair">
            <item from="-5" to="-4"/>
            <item from="-13" to="-27"/>
            <item from="-23" to="-27"/>
        </replace>
    </item>
    <item id="2903"
        image="equipment/head/brimmedhat.png"
        name="Brimmed Hat"
        description="Unequip when indoors, please."
        defense="100"
        level="8"
        type="equip-head"
        weight="20">
        <sprite>equipment/head/brimmedhat.xml</sprite>
        <replace sprite="hair">
            <item from="-5" to="-4"/>
            <item from="-14" to="-9"/>
            <item from="-15" to="-19"/>
        </replace>
    </item>
    <item id="2904"
        image="equipment/head/brimmedfeatherhat.png"
        name="Brimmed Feather Hat"
        description="Distinguishes someone who is traveling."
        defense="110"
        level="8"
        type="equip-head"
        weight="23">
        <sprite>equipment/head/brimmedfeatherhat.xml</sprite>
        <replace sprite="hair">
            <item from="-5" to="-4"/>
            <item from="-14" to="-9"/>
            <item from="-15" to="-19"/>
        </replace>
    </item>
    <item id="2905"
        image="equipment/head/brimmedflowerhat.png"
        name="Brimmed Flower Hat"
        description="To wear at festivals and certain events."
        defense="110"
        level="8"
        type="equip-head"
        weight="22">
        <sprite>equipment/head/brimmedflowerhat.xml</sprite>
        <replace sprite="hair">
            <item from="-5" to="-4"/>
            <item from="-14" to="-9"/>
            <item from="-15" to="-19"/>
        </replace>
    </item>
    <item id="2906"
        image="equipment/head/infantryhelmet.png"
        name="infantry Helmet"
        description="A helmet for soldiers and guards."
        defense="160"
        level="12"
        type="equip-head"
        weight="400">
        <sprite>equipment/head/infantryhelmet.xml</sprite>
        <replace sprite="hair">
            <item from="-3" to="-7"/>
            <item from="-4" to="-7"/>
            <item from="-5" to="-27"/>
            <item from="-6" to="-7"/>
            <item from="-13" to="-1"/>
            <item from="-14" to="-7"/>
            <item from="-15" to="-7"/>
            <item from="-16" to="-10"/>
            <item from="-21" to="-7"/>
            <item from="-23" to="-1"/>
            <item from="-25" to="-7"/>
            <item from="-26" to="-21"/>
        </replace>
    </item>
    <item id="2907"
        image="equipment/head/candlehelmet.png"
        name="Candle Helmet"
        description="Worn by spelunkers."
        defense="180"
        level="16"
        type="equip-head"
        weight="500">
        <sprite>equipment/head/candlehelmet.xml</sprite>
        <replace sprite="hair"/>
    </item>
    <item id="2908"
        image="equipment/head/warlordhelmet.png"
        name="Warlord Helmet"
        description="Worn by great warriors!"
        defense="340"
        level="24"
        type="equip-head"
        weight="1000">
        <sprite>equipment/head/warlordhelmet.xml</sprite>
        <replace sprite="hair"/>
    </item>
    <item id="2909"
        image="equipment/head/axehat.png"
        name="Axe Hat"
        description="A really cool joke, but not very helpful."
        defense="12"
        level="5"
        type="equip-head"
        weight="50">
        <sprite>equipment/head/axehat.xml</sprite>
    </item>
    <item id="2910"
        image="equipment/head/pinkiehat.png"
        name="Pinkie Hat"
        description="With this, you'll fit right in with those strange pinkies."
        defense="7"
        level="10"
        type="equip-head"
        weight="5">
        <sprite>equipment/head/pinkiehat.xml</sprite>
    </item>
    <item id="2911"
        image="equipment/head/tophat.png"
        name="Top Hat"
        description="For the gentry of The Mana World, and other worlds."
        defense="50"
        level="17"
        type="equip-head"
        weight="40">
        <sprite>equipment/head/tophat.xml</sprite>
        <replace sprite="hair">
    <item from="-5" to="-4"/>
    <item from="-14" to="-9"/>
    <item from="-15" to="-19"/>
        </replace>
    </item>
    <item id="2912"
        image="equipment/head/bowlerhat.png"
        name="Bowler Hat"
        description="A hat for those with a bit of class."
        defense="40"
        level="15"
        type="equip-head"
        weight="30">
        <sprite>equipment/head/bowlerhat.xml</sprite>
        <replace sprite="hair">
    <item from="-5" to="-4"/>
    <item from="-14" to="-9"/>
    <item from="-15" to="-19"/>
        </replace>
    </item>
    <item id="2913"
        image="equipment/head/fairyhat.png"
        name="Fairy Hat"
        description="Worn by people that are living and hunting in the woods."
        defense="25"
        level="10"
        type="equip-head"
        weight="5">
        <sprite>equipment/head/fairyhat.xml</sprite>
        <replace sprite="hair">
    <item from="-5" to="-4"/>
    <item from="-14" to="-9"/>
    <item from="-15" to="-19"/>
        </replace>
    </item>    
    <item id="2914"
        image="equipment/head/nohmask.png"
        name="Noh Mask"
        description="A traditional chinese Noh Mask."
        defense="0"
        level="15"
        type="equip-head"
        weight="50">
        <sprite>equipment/head/nohmask.xml</sprite>
    </item>   
    <item id="2915"
        image="equipment/head/rosehat.png"
        name="Rosehat"
        description="A hat made out of a rose. You cant be sure whether this is the proper usage for a rose."
        defense="10"
        level="10"
        type="equip-head"
        weight="50">
        <sprite>equipment/head/rosehat.xml</sprite>
    </item>

    <!-- Neck Armors -->
    <item id="3200"
        image="equipment/neck/shemagh.png"
        name="Shemagh"
        description="An improved scarf used by mercenaries in tough environments."
        defense="50"
        level="3"
        type="equip-neck"
        weight="22"
        drawAfter="torso">
        <sprite gender="unisex">equipment/neck/shemagh.xml</sprite>
        <sprite gender="female">equipment/neck/shemagh.xml</sprite>
    </item>

    <!-- Weapons -->
    <item id="3500"
        image="equipment/weapons/knife.png"
        name="Knife"
        description="A simple, but sharp knife."
        attack="50"
        attack-range="1"
        level=""
        type="equip-1hand"
        attack-action="attack"
        weight="6">
        <sprite>equipment/weapons/knife.xml</sprite>
        <sound event="hit">weapons/knife/hit1.ogg</sound>
        <sound event="miss">weapons/knife/miss1.ogg</sound>
    </item>
    <item id="3501"
        image="equipment/weapons/piouslayer.png"
        name="Piou Slayer"
        description="A short sword for amateurs."
        attack="150"
        attack-range="1"
        level="3"
        type="equip-1hand"
        attack-action="attack"
        weight="26">
        <sprite>equipment/weapons/piouslayer.xml</sprite>
        <sound event="hit">weapons/piouslayer/hit1.ogg</sound>
        <sound event="miss">weapons/piouslayer/miss1.ogg</sound>
    </item>
    <item id="3502"
        image="equipment/weapons/traininggladius.png"
        name="Training Gladius"
        description="A short sword made for close combat."
        attack="300"
        attack-range="1"
        level="5"
        type="equip-1hand"
        attack-action="attack"
        weight="58">
        <sprite>equipment/weapons/traininggladius.xml</sprite>
        <sound event="hit">weapons/piouslayer/hit1.ogg</sound>
        <sound event="miss">weapons/piouslayer/miss1.ogg</sound>
    </item>
    <item id="3503"
        image="equipment/weapons/woodensword.png"
        name="Wooden Sword"
        description="For sword training. Do not show-off with it."
        attack="75"
        attack-range="1"
        level="5"
        type="equip-1hand"
        attack-action="attack"
        weight="25">
        <sprite>equipment/weapons/woodensword.xml</sprite>
        <sound event="hit">weapons/piouslayer/hit1.ogg</sound>
        <sound event="miss">weapons/piouslayer/miss1.ogg</sound>
    </item>
    <item id="3504"
        image="equipment/weapons/backsword.png"
        name="Artis Backsword"
        description="An engraved backsword with the symbole of Artis on its brass hilt."
        attack="500"
        attack-range="1"
        level="15"
        type="equip-1hand"
        attack-action="attack"
        weight="86">
        <sprite>equipment/weapons/backsword.xml</sprite>
        <sound event="hit">weapons/piouslayer/hit1.ogg</sound>
        <sound event="miss">weapons/piouslayer/miss1.ogg</sound>
    </item>
    <item id="3505"
        image="equipment/weapons/wand.png"
        name="Training Wand"
        description="A simple wand for your first steps in handling magic."
        attack="50"
        attack-range="2"
        level="8"
        type="equip-1hand"
        attack-action="attack_wand"
        weight="67">
        <sprite>equipment/weapons/trainingwand.xml</sprite>
    </item>
    <item id="3506"
        image="equipment/weapons/wand.png|W:#ece96e"
        name="Mana Torch"
        description="A simple wand imbued with a fire spell, it can provide lighting and will never run out on you!"
        attack="60"
        attack-range="2"
        level="8"
        type="equip-1hand"
        attack-action="attack_wand"
        weight="67">
        <sprite>equipment/weapons/trainingwand.xml|#ece96e</sprite>
    </item>
    <item id="3507"
        image="equipment/weapons/scythe.png"
        name="Scythe"
        description="A farmer's scythe, not new but still deadly."
        attack="500"
        attack-range="2"
        level="15"
        type="equip-2hand"
        attack-action="attack_scythe"
        weight="1200">
        <sprite>equipment/weapons/scythe.xml</sprite>
        <sound event="hit">weapons/scythe/hit1.ogg</sound>
        <sound event="miss">weapons/scythe/miss1.ogg</sound>
    </item>
    <item id="3508"
        image="equipment/weapons/dagger.png"
        name="Dagger"
        description="Use to stab."
        attack="350"
        attack-range="1"
        level="12"
        type="equip-1hand"
        attack-action="attack"
        weight="350">
        <sprite>equipment/weapons/knife.xml</sprite>
        <sound event="hit">weapons/knife/hit1.ogg</sound>
        <sound event="miss">weapons/knife/miss1.ogg</sound>
    </item>
     <item id="3509"
        image="equipment/weapons/setzer.png"
        name="Setzer"
        description="A knife named after a famous gambler."
        attack="600"
        attack-range="1"
        level="20"
        type="equip-1hand"
        attack-action="attack"
        weight="250">
        <sprite>equipment/weapons/piouslayer.xml</sprite>
        <sound event="hit">weapons/piouslayer/hit1.ogg</sound>
        <sound event="miss">weapons/piouslayer/miss1.ogg</sound>
    </item>
    <item id="3510"
        image="equipment/weapons/pickaxe.png"
        name="Pickaxe"
        description="A common pickaxe, not so good for battle but suitable for mining."
        attack="200"
        attack-range="1"
        level="15"
        type="equip-2hand"
        attack-action="attack_chop"
        weight="250">
        <sprite>equipment/weapons/pickaxe.xml</sprite>
    </item>
    <item id="3511"
        image="equipment/weapons/torch.png"
        name="Torch"
        description="A burning Torch. Handle with care."
        attack="150"
        attack-range="1"
        level="15"
        type="equip-2hand"
        attack-action="attack_wand"
        weight="100">
        <sprite>equipment/weapons/torch.xml</sprite>
    </item>
    <item id="3512"
        image="equipment/weapons/axe.png"
        name="Axe"
        description="A rusty axe, made for chopping trees rather than battle."
        attack="300"
        attack-range="1"
        level="10"
        type="equip-1hand"
        attack-action="attack_chop"
        weight="500">
        <sprite>equipment/weapons/axe.xml</sprite>
    </item>
    <item id="3513"
        image="equipment/weapons/chopstick.png"
        name="Chopstick"
        description="A long chopstick, simple but effective for smashing."
        attack="400"
        attack-range="2"
        level="10"
        type="equip-2hand"
        attack-action="attack_chop_long"
        weight="800">
        <sprite>equipment/weapons/chopstick.xml</sprite>
    </item>


    <!-- Pets -->
    <item id="4000"
        image="usable/piouegg.png"
        name="Piou egg"
        description="Piou egg. Not for omelettes!"
        type="generic"
        useButton="Hatch"
    />

    <!-- Cards -->
    <item id="5000"
        image="usable/dye.png|S:#3c3c3c,3e1e28,4d4d4d,6f2630,686868,a6313f,919191,d15b5b,b6b6b6,e59b77,dfdfdf,efe0c1"
        name="Crimson Cashmere Dye"
        useButton="Dye"
        description="Color dye that can be used on cashemere clothing."
        type="card"
        weight="1"
        cardColor="2"
        maxFloorOffset="15"/>
    <item id="5001"
        image="usable/dye.png|S:#3c3c3c,302525,4d4d4d,4a3430,686868,69453a,919191,96664c,b6b6b6,bf8d67,dfdfdf,e6c19c"
        name="Chocolate Cashmere Dye"
        useButton="Dye"
        description="Color dye that can be used on cashemere clothing."
        type="card"
        weight="1"
        cardColor="3"
        maxFloorOffset="15"/>
    <item id="5002"
        image="usable/dye.png|S:#3c3c3c,35313d,4d4d4d,443f4f,686868,485c6b,919191,50918f,b6b6b6,75c7a8,dfdfdf,c3e8c4"
        name="Mint Cashmere Dye"
        useButton="Dye"
        description="Color dye that can be used on cashemere clothing."
        type="card"
        weight="1"
        cardColor="4"
        maxFloorOffset="15"/>
    <item id="5003"
        image="usable/dye.png|W:#111111,222222,333333,444444,555555,aaaaaa"
        name="Black Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="2"
        maxFloorOffset="15"/>
    <item id="5004"
        image="usable/dye.png|W:#44494b,797a7e,b9bbc1"
        name="Silver Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="3"
        maxFloorOffset="15"/>
    <item id="5005"
        image="usable/dye.png|W:#594d36,b49b6c,f4d293"
        name="Camel Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="4"
        maxFloorOffset="15"/>
    <item id="5006"
        image="usable/dye.png|W:#3f221d,754d23,f5cea4"
        name="Brown Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="5"
        maxFloorOffset="15"/>
    <item id="5007"
        image="usable/dye.png|W:#831f2d,f07401,f8cc8b"
        name="Orange Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="6"
        maxFloorOffset="15"/>
    <item id="5008"
        image="usable/dye.png|W:#6a0022,7c151a,c60022"
        name="Dark Red Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="7"
        maxFloorOffset="15"/>
    <item id="5009"
        image="usable/dye.png|W:#580000,a40000,c02020,ff6060"
        name="Red Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="8"
        maxFloorOffset="15"/>
    <item id="5010"
        image="usable/dye.png|W:#620e48,bf1b8b,e32bcf,ffb6f7"
        name="Fuchsia Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="9"
        maxFloorOffset="15"/>
    <item id="5011"
        image="usable/dye.png|W:#a92d42,f67189,ffbac7"
        name="Pink Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="10"
        maxFloorOffset="15"/>
    <item id="5012"
        image="usable/dye.png|W:#640088,b350e0,ecb7ff"
        name="Mauve Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="11"
        maxFloorOffset="15"/>
    <item id="5013"
        image="usable/dye.png|W:#3c1554,6d3195,c987d1"
        name="Purple Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="12"
        maxFloorOffset="15"/>
    <item id="5014"
        image="usable/dye.png|W:#0d1430,21337c,4363e5"
        name="Navy Blue Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="13"
        maxFloorOffset="15"/>
    <item id="5015"
        image="usable/dye.png|W:#2d2d41,4c4d9a,7b7b99"
        name="Blue Gray Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="14"
        maxFloorOffset="15"/>
    <item id="5016"
        image="usable/dye.png|W:#16486e,498ec5,e4f2fc"
        name="Blue Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="15"
        maxFloorOffset="15"/>
    <item id="5017"
        image="usable/dye.png|W:#196253,18986c,37cf7d"
        name="Teal Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="16"
        maxFloorOffset="15"/>
    <item id="5018"
        image="usable/dye.png|W:#115511,22aa22,99dd99"
        name="Green Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="17"
        maxFloorOffset="15"/>
    <item id="5019"
        image="usable/dye.png|W:#547000,a5dc00,d1ff46"
        name="Lime Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="18"
        maxFloorOffset="15"/>
    <item id="5020"
        image="usable/dye.png|W:#002504,2d551b,07871d"
        name="Khaki Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="19"
        maxFloorOffset="15"/>
    <item id="5021"
        image="usable/dye.png|W:#846211,dab333,fffb93,ffffff"
        name="Yellow Cotton Dye"
        useButton="Dye"
        description="Color dye that can be used on cotton clothing."
        type="card"
        weight="1"
        cardColor="20"
        maxFloorOffset="15"/>
    <item id="5022"
        image="usable/gem3-polished.png|W:#315a67,a4a4ae,dce5d6,ffffff"
        name="Diamond"
        useButton="Gem"
        description="A diamond, polished and shining."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5023"
        image="usable/gem1-polished.png|W:#581a1a,a41111,c03a3a,ff6060,ffffff"
        name="Ruby"
        useButton="Gem"
        description="A polished ruby, blinking in bright red color."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5024"
        image="usable/gem2-polished.png|W:#1f9c1f,89d689,ffffff"
        name="Emerald"
        useButton="Gem"
        description="A polished Emerald, beautiful and green."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5025"
        image="usable/gem2-polished.png|W:#4b4bbd,888af4,ffffff"
        name="Sapphire"
        useButton="Gem"
        description="A polished sapphire, blinking in dark blue."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5026"
        image="usable/gem1-polished.png|W:#ccb534,f1ea8e,ffffaa,ffffff"
        name="Topaz"
        useButton="Gem"
        description="A Topaz, polished and beautiful."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5027"
        image="usable/gem3-polished.png|W:#530a7c,b362e1,ca87ef,ffffff"
        name="Amethyst"
        useButton="Gem"
        description="A polished Amethyst. Some say it has the power to heal."
        type="card"
        weight="50"
        maxFloorOffset="15"/>
    <item id="5028"
        image="usable/gem-crude.png|W:#315a67,a4a4ae,dce5d6,ffffff"
        name="Crude Diamond"
        useButton="Gem"
        description="A crude diamond, fresh from the mines."
        type="card"
        cardColor="2"
        weight="80"
        maxFloorOffset="15"/>
    <item id="5029"
        image="usable/gem-crude.png|W:#581a1a,a41111,c03a3a,ff6060"
        name="Crude Ruby"
        useButton="Gem"
        description="A crude ruby, fresh from the mines."
        type="card"
        cardColor="3"
        weight="80"
        maxFloorOffset="15"/>
    <item id="5030"
        image="usable/gem-crude.png|W:#1f9c1f,89d689"
        name="Crude Emerald"
        useButton="Gem"
        description="A crude emerald, fresh from the mines."
        type="card"
        cardColor="4"
        weight="80"
        maxFloorOffset="15"/>
    <item id="5031"
        image="usable/gem-crude.png|W:#4b4bbd,888af4"
        name="Crude Sapphire"
        useButton="Gem"
        description="A crude sapphire, fresh from the mines."
        type="card"
        cardColor="5"
        weight="80"
        maxFloorOffset="15"/>
    <item id="5032"
        image="usable/gem-crude.png|W:#ccb534,f1ea8e,ffffaa"
        name="Crude Topaz"
        useButton="Gem"
        description="A crude topaz, fresh from the mines."
        type="card"
        cardColor="6"
        weight="80"
        maxFloorOffset="15"/>
    <item id="5033"
        image="usable/gem-crude.png|W:#530a7c,b362e1,ca87ef"
        name="Crude Amethyst"
        useButton="Gem"
        description="A crude amethyst, fresh from the mines."
        type="card"
        cardColor="7"
        weight="80"
        maxFloorOffset="15"/>
    <!-- Bows -->
    <item id="6000"
        image="equipment/weapons/woodenbow.png"
        name="Training Bow"
        description="For bow training. Does not seem much reliable."
        attack="70"
        attack-range="4"
        missile-particle="graphics/particles/training-arrow.xml"
        missile-z="32"
        missile-lifetime="500"
        missile-speed="5"
        missile-diedistance="3"
        level="5"
        type="equip-2hand"
        attack-action="attack_bow"
        weight="120">
        <sprite>equipment/weapons/woodenbow.xml</sprite>
    </item>
    <item id="6001"
        image="equipment/weapons/shortbow.png"
        name="Short Bow"
        description="The shortest of them all, and almost a knife, but the only which hits at point-blank range."
        attack="100"
        attack-range="5"
        missile-particle="graphics/particles/training-arrow.xml"
        missile-z="32"
        missile-lifetime="500"
        missile-speed="6"
        missile-diedistance="3"
        level="15"
        type="equip-2hand"
        attack-action="attack_bow"
        weight="260">
        <sprite>equipment/weapons/woodenbow.xml</sprite>
    </item>
    <item id="6002"
        image="equipment/weapons/forestbow.png"
        name="Forest Bow"
        description="A big bow, to hunt monsters in the forest."
        attack="150"
        attack-range="6"
        missile-particle="graphics/particles/training-arrow.xml"
        missile-z="32"
        missile-lifetime="500"
        missile-speed="6"
        missile-diedistance="3"
        level="20"
        type="equip-2hand"
        attack-action="attack_bow"
        weight="480">
        <sprite>equipment/weapons/woodenbow.xml</sprite>
    </item>

    <!-- Arrows -->
    <item id="6500"
        image="equipment/ammo/trainingarrow.png"
        name="Training Arrow"
        description="For bow training. Does not seem much reliable."
        type="equip-ammo"
        attack="100"
        weight="1"/>

</items>