summaryrefslogblamecommitdiff
path: root/items.xml
blob: dc1ecfcce578708d62e799178e927232c69f694f (plain) (tree)
1
2
3
4
5
6
7
8
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
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
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
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147

                                                   
                                                                  
                                   
                                           
   
 
    



















                                                     
                                                                    


       




















































































                                                                              
 










































                                                                        
 





                                                                      
 







































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                             
 































































































































































                                                                                                                        
 
 





































































































































































                                                                                                             
 






















































































































































































                                                                                                                           

 












































































































































































































































































































































































                                                                                                                                              
 

















































































































































                                                                                                                                                       
 

























































































































































































                                                                                                                                             
   











                                                                                          
 




































































































































































                                                                                                                                                        
                                                      













































                                                                                       
 





































































                                                                                                     
 
























































































































                                                                                         
 














































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                   


                                           
                          
               














































































































                                                                                                     
 





































































































































































































































































































































                                                                                                                                                  
 




























































































































































































































































































































                                                                                                                                 
 
























































































































                                                                                                                         
 







                                                                            
                  





                                                      
                  





                                                       
                  





                                                      
                  





                                                     
                  





                                                            
                  





                                                                                
                  



























                                                                             
        
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="items.xsl"?>
<!-- Authors: 4144, Alige, Piman, Reid, Saulc, Rakinorf, Jesusalva
Copyright (C) 2010-2015 Evol Online
Copyright (C) 2018 TMW2: Moubootaur Legends
-->

<!--
-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	6499	  = Bows
6500	6999	  = Arrows
7000	7499	  = Rings
Colors for dyeable equipments or items are 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 15-45 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 50-180 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 35-70 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 60-100 HP"
		type="usable"
		weight="3"/>
	<item id="505"
		image="usable/pioulegs.png"
		name="Piou Legs"
		description="A tender food or ingredient."
		useButton="Eat"
		effect="Heal 15-40 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 35-65 HP"
		type="usable"
		weight="1"/>
	<item id="507"
		image="usable/piberries.png"
		name="Piberries"
		description="The famous staining fruit."
		useButton="Eat"
		effect="Heal 60-140 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 20-40 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 180-320 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 10-26 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 60-130 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 120-180 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"
		effect="Inedible"
		type="usable"
		weight="80"/>
	<!-- ID 514 is free -->
	<item id="515"
		image="usable/plushroom.png"
		name="Plushroom"
		description="A strange remedy of many possible uses."
		useButton="Eat"
		effect="Attack Speed +5%; Heal 30-60 HP"
		type="usable"
		weight="8"/>
	<item id="516"
		image="usable/pumpkinseed.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"
		defense="0"
		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 40-65 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 100-225 HP"
		type="usable"
		weight="10"/>
	<item id="520"
		image="usable/piberriesinfusion.png"
		name="Piberries Infusion"
		description="A potion made from piberries."
		effect="Heal 120-240 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 synthesised."
		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="Complete Healing"
		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."
		effect="Dig holes"
		type="usable"
		weight="210"
		maxFloorOffset="5"/>
	<item id="527"
		image="usable/pumpkinjuice.png"
		name="Pumpkin Juice"
		useButton="Use"
		description="Blood-coloured 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 66-99 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, and found with bunnies. During Easter, heals 10x more."
		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 50-110 HP"
		useButton="Drink"
		type="usable"
		weight="10"/>
	<!-- ID 532 ~ 535 are free. -->
	<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 laws respected and upheld in the World Of Mana, and enforced by the Alliance."
		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/roastedmaggot.png"
		name="Roasted Maggot"
		description="Tasty crunchy snack!"
		useButton="Eat"
		effect="Heal 65-175 HP"
		type="usable"
		weight="5"/>
	<item id="540"
		image="usable/redapple.png"
		name="Red Apple"
		description="A healthy apple"
		useButton="Eat"
		effect="Heal 95-225 HP"
		type="usable"
		weight="5"/>
	<item id="541"
		image="usable/cactuspotion.png"
		name="Cactus Potion"
		description="A special potion for the desert places."
		useButton="Drink"
		effect="Heal 85-230 HP"
		type="usable"
		weight="4"/>
	<item id="542"
		image="usable/apotion.png"
		name="Cactus Drink"
		description="A small drink for the desert places."
		useButton="Drink"
		effect="Heal 65-145 HP"
		type="usable"
		weight="4"/>
	<item id="543"
		image="usable/apanacake.png"
		name="Apana Cake"
		description="A very tiny cake!"
		useButton="Eat"
		effect="Heal 1-100 HP"
		type="usable"
		weight="1"/>
	<item id="544"
		image="usable/beer.png"
		name="Beer"
		description="A fresh beer."
		useButton="Drink"
		effect="Heal 210-444 HP"
		type="usable"
		weight="10"/>
	<item id="545"
		image="usable/blueberries.png"
		name="BlueBerries"
		description="Near to bursting with sweet juice."
		useButton="Drink"
		effect="Heal 4-5 HP"
		type="usable"
		weight="6"/>
	<item id="546"
		image="usable/candy.png"
		name="Candy"
		description="A sweet for you."
		useButton="Eat"
		effect="Heal 12-64 HP"
		type="usable"
		weight="1"/>
	<item id="547"
		image="usable/bottleofseawater.png"
		name="Bottle Of Sea Water"
		description="Very salty. Drink with caution."
		useButton="Drink"
		effect="Heal 10-200 HP"
		type="usable"
		weight="300"/>
	<item id="548"
		image="usable/candycane.png"
		name="Candy Cane"
		description="Tasty candy cane."
		useButton="Drink"
		effect="Heal 4-5 HP"
		type="usable"
		weight="1"/>
	<item id="549"
		image="usable/cherry.png"
		name="Cherry"
		description="Natural treat."
		useButton="Drink"
		effect="Heal 4-5 HP"
		type="usable"
		weight="5"/>
	<item id="550"
		image="usable/cherrycake.png"
		name="Cherry Cake"
		description="A nice cherry cake."
		useButton="Eat"
		effect="Heal 60-130 HP"
		type="usable"
		weight="1"/>
	<item id="551"
		image="usable/chickenleg.png"
		name="Chicken Leg"
		description="A big chunk of meat."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="10"/>
	<item id="552"
		image="usable/chocolatemouboo.png"
		name="Chocolate Mouboo"
		description="Chocolate!"
		useButton="Eat"
		effect="Heal 100-800 HP"
		type="usable"
		weight="4"/>
	<item id="553"
		image="usable/gingerbreadman.png"
		name="Ginger Bread Man"
		description="A tasty ginger bread man."
		useButton="Eat"
		effect="Heal 4-240 HP"
		type="usable"
		weight="4"/>
	<item id="554"
		image="usable/goldenapple.png"
		name="Golden Apple"
		description="A golden apple. Taken from a tree of many fruits from a distant world."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="30"/>
	<item id="555"
		image="usable/jarofblood.png"
		name="Jar Of Blood"
		description="Disgusting jar of blood...for all your bloody needs."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="375"/>
	<item id="556"
		image="usable/jellybeans.png"
		name="Jelly Beans"
		description="Chocolate!"
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="2"/>
	<item id="557"
		image="usable/lollipop.png"
		name="Lollipop"
		description="A tasty variety of lollipops."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="1"/>
	<item id="558"
		image="usable/marshmallow.png"
		name="Marshmallow"
		description="Sweet drop."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="1"/>
	<item id="559"
		image="usable/milk.png"
		name="Milk"
		description="A refreshing drink from the monsters of TMW."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="5"/>
	<item id="560"
		image="usable/orange.png"
		name="Orange"
		description="A juicy orange."
		useButton="Drink"
		effect="Heal 75-120 HP"
		type="usable"
		weight="7"/>
	<item id="561"
		image="usable/orangecupcake.png"
		name="Orange Cupcake"
		description="A tangy orange cupcake. Made from real oranges."
		useButton="Eat"
		effect="Heal 200-400 HP"
		type="usable"
		weight="5"/>
	<item id="562"
		image="usable/pear.png"
		name="Pear"
		description="A healthy pear."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="7"/>
	<item id="563"
		image="usable/plum.png"
		name="Plum"
		description="A Fresh healthy plum."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="10"/>
	<item id="564"
		image="usable/pumpkinjuice.png"
		name="Pumpkin Juice"
		description="Fresh pumpkin juice."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="2"/>
	<item id="565"
		image="usable/pumpkinseed.png"
		name="Pumpkin Seed"
		description="Seeds from pumpkins."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="1"/>
	<item id="566"
		image="usable/bigpumpkinseed.png"
		name="Big Pumpkin Seed"
		description="Seeds from big pumpkins."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="2"/>
	<item id="567"
		image="usable/skullbloodymug.png"
		name="Skull Bloody Mug"
		description="I wouldn't drink from that."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="40"/>
	<item id="568"
		image="usable/skullpotion.png"
		name="Skull Potion"
		description="A bottle in th shape of a skull."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="25"/>
	<item id="569"
		image="usable/smallmushroom.png"
		name="Small Mushroom"
		description="A mushroom."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="10"/>
	<item id="570"
		image="usable/steak.png"
		name="Mouboo Steak"
		description="A tasty piece of steak."
		useButton="Eat"
		effect="Heal 400-500 HP"
		type="usable"
		weight="250"/>
	<item id="571"
		image="usable/tonoridelight.png"
		name="Tonori Delight"
		description="A treat exquisite."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="2"/>
	<item id="572"
		image="usable/xmascake.png"
		name="Xmas Cake"
		description="A sweet Xmas cake."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="1"/>
	<item id="573"
		image="usable/xmascandycane.png"
		name="Xmas Candy Cane"
		description="A special Xmas candy cane."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="1"/>
	<item id="574"
		image="usable/zombienachos.png"
		name="Zombie Nachos"
		description="Zombies love this dish."
		useButton="Drink"
		effect="Heal 1000-5000 HP"
		type="usable"
		weight="5"/>
	<item id="583"
		image="usable/chocolatebiscuit.png"
		name="Chocolate Biscuit"
		description="A chocolate biscuit."
		useButton="Yummy!"
		effect="Heal 500-700 HP"
		type="usable"
		weight="5"/>
	<item id="584"
		image="usable/chocolatebar.png"
		name="Chocolate Bar"
		description="A chocolate bar."
		useButton="Eat"
		effect="Heal 130-210 HP"
		type="usable"
		weight="5"/>
	<item id="585"
		image="usable/cavesnakeegg.png"
		name="Cave Snake Egg"
		description="For omelettes."
		useButton="Eat"
		effect="Heal 4-400 HP"
		type="usable"
		weight="5"/>
	<item id="586"
		image="usable/cactuspotion.png"
		name="Smoke Grenade"
		description="Explodes and could cause splash damage... If it didn't missed every single time."
		useButton="Explode"
		effect="Splash damage"
		type="usable"
		weight="40"/>
	<item id="587"
		image="usable/bugleg.png"
		name="Bug Leg"
		description="Small but strong! ...Are you really gonna eat that?"
		useButton="Eat"
		effect="Heal 8-14 HP"
		type="usable"
		weight="4"/>
	<item id="588"
		image="usable/toothbrush.png"
		name="Toothbrush"
		description="To keep that beautiful smile going."
		type="usable"
		useButton="Break"
		weight="1"
		maxFloorOffset="20"/>
	<item id="589"
		image="usable/gift-bronze.png"
		name="Bronze Gift"
		description="Wow! A Gift Box! What wonders are inside?"
		type="usable"
		useButton="Unwrap"
		weight="25"
		maxFloorOffset="20"/>
	<item id="590"
		image="usable/gift-silver.png"
		name="Silver Gift"
		description="Wow! A Gift Box! What wonders are inside?"
		type="usable"
		useButton="Unwrap"
		weight="45"
		maxFloorOffset="20"/>
	<item id="591"
		image="usable/gift-golden.png"
		name="Golden Gift"
		description="Wow! A Gift Box! What wonders are inside?"
		type="usable"
		useButton="Unwrap"
		weight="65"
		maxFloorOffset="20"/>
	<item id="592"
		image="usable/gift-prism.png"
		name="Prism Gift"
		description="Wow! A Gift Box! What wonders are inside?"
		type="usable"
		useButton="Unwrap"
		weight="85"
		maxFloorOffset="20"/>
	<item id="593"
		image="usable/gift-supreme.png"
		name="Supreme Gift"
		description="Wow! A Gift Box! What wonders are inside?"
		type="usable"
		useButton="Unwrap"
		weight="115"
		maxFloorOffset="20"/>
	<item id="594"
		image="generic/deserttablet.png"
		name="Desert Tablet"
		description="A tablet found in the sand ocean."
		useButton="Read"
		type="usable"
		weight="860"/>
	<item id="595"
		image="usable/bottleofseawater.png"
		name="Bottle Of Divine Water"
		description="Very tasty water."
		useButton="Drink"
		effect="Heal 400-1400 HP"
		type="usable"
		weight="290"/>
	<item id="596"
		image="usable/bottleoftonoriwater.png"
		name="Bottle Of Tonori Water"
		description="A basic tonori water."
		useButton="Drink"
		effect="Heal 180-800 HP"
		type="usable"
		weight="300"/>
	<item id="597"
		image="usable/chocolatebunny.png"
		name="Chocolate Bunny"
		description="A delicious chocolate bunny"
		useButton="Eat"
		effect="Heal 1300-1800 HP"
		type="usable"
		weight="350"/>
	<item id="598"
		image="usable/goldenapple.png"
		name="Divine Apple"
		description="A Divine Apple"
		useButton="Eat"
		effect="Heal 5000-10000 HP"
		type="usable"
		weight="1"/>
	<item id="599"
		image="usable/snakeeggmodel.png|W:#c0c0a0;R:#b09070;G:#b8a888"
		name="Snake Egg"
		description="An edible snake egg"
		useButton="Eat"
		effect="Heal 100-200 HP"
		type="usable"
		weight="8"/>
	<item id="600"
		image="usable/snakeeggmodel.png|W:#806020;R:#604010;G:#705018"
		name="Mountain Snake Egg"
		description="An edible mountain snake egg."
		useButton="Eat"
		effect="Heal 150-250 HP"
		type="usable"
		weight="9"/>
	<item id="601"
		image="usable/chagashroom.png"
		name="Chagashroom"
		description="A strange remedy of many possible uses."
		useButton="Eat"
		effect="Damage +5%; Heal 30-60 HP"
		type="usable"
		weight="9"/>
	<item id="602"
		image="usable/pioulegs.png"
		name="Pinkie Leg"
		description="A tender food or ingredient."
		useButton="Eat"
		effect="Heal 45-75 HP"
		type="usable"
		weight="12"/>
	<item id="603"
		image="usable/bpotion.png|G:#da69e5,ffdaff"
		name="Haste Potion"
		description="Formely known as Concentration Potion, this is made of plushrooms."
		useButton="Drink"
		effect="Attack Speed +30%"
		type="usable"
		weight="12"/>
	<item id="604"
		image="usable/bpotion.png|G:#c05000,f0a000,f0f09f"
		name="Strength Potion"
		description="Formely known as Iron Potion, this is made of chagashrooms."
		useButton="Drink"
		effect="Attack Power +30%"
		type="usable"
		weight="12"/>
	<item id="605"
		image="usable/bottleofsewerwater.png"
		name="Bottle Of Sewer Water"
		description="Want to be sick?"
		useButton="Drink"
		effect="Heal 18-40 HP"
		type="usable"
		weight="350"/>
	<!-- Saulc FIXXX -->
	<item id="606"
		image="usable/book-fishing.png" 
		name="Pirate Treasure Map"
		description="It's time to become rich!"
		useButton="Read"
		type="usable"
		weight="14"/>
	<item id="607"
		image="generic/bottleofsand.png" 
		name="Mysterious Bottle"
		description="What's inside! maybe a Treasure Map"
		useButton="Broke"
		type="usable"
		weight="25"/>
	<!-- 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."
		type="generic"
		weight="1250"/>
	<item id="714"
		image="generic/letter-stamp.png"
		name="Guild Certification"
		description="This piece of paper grants you official permission to found a Guild."
		type="generic"
		weight="5"/>
	<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="Ship Key"
		description="An iron key to open a ship. Don't ask. Just use it!"
		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"/>
	<!-- id 730 is free -->
	<item id="731"
		image="generic/diamond.png"
		name="Diamond"
		description="A raw diamond gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="732"
		image="generic/ruby.png"
		name="Ruby"
		description="A raw ruby gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="733"
		image="generic/emerald.png"
		name="Emerald"
		description="A raw emerald gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="734"
		image="generic/sapphire.png"
		name="Sapphire"
		description="A raw sapphire gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="735"
		image="generic/topaz.png"
		name="Topaz"
		description="A raw topaz gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="736"
		image="generic/amethyst.png"
		name="Amethyst"
		description="A raw amethyst gemstone."
		type="generic"
		weight="20"
		maxFloorOffset="20"/>
	<item id="737"
		image="generic/blackpearl.png"
		name="Black Pearl"
		description="A pearl. Round, shiny and black!"
		type="generic"
		weight="200"
		maxFloorOffset="20"/>
	<item id="738"
		image="generic/bloodstone.png"
		name="Bloodstone"
		description="A stone as red as blood that emits a strange aura."
		type="generic"
		weight="25"
		maxFloorOffset="20"/>
	<item id="739"
		image="generic/coinbag.png"
		name="Coin Bag"
		description="A bag used to hold coins."
		type="generic"
		weight="50"
		maxFloorOffset="20"/>
	<item id="740"
		image="generic/wolverntooth.png"
		name="Wolvern Tooth"
		description="A tooth from a wolvern."
		type="generic"
		weight="30"
		maxFloorOffset="20"/>
	<item id="741"
		image="generic/powder.png|W:#405060"
		name="Iron Powder"
		description="A pile of powdered iron"
		type="generic"
		weight="7"
		maxFloorOffset="20"/>
	<item id="742"
		image="generic/pinkantenna.png"
		name="Pink Antenna"
		description="No-one knows why pinkies have these antennas on their heads."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="743"
		image="generic/animalbones.png"
		name="Animal Bones"
		description="Bones from an animal."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="744"
		image="generic/antlers.png"
		name="Antlers"
		description="The antlers of a Reinboo."
		type="generic"
		weight="3000"
		maxFloorOffset="20"/>
	<item id="745"
		image="generic/bandithood.png"
		name="Bandit Hood"
		description="A bandit hood crawling with lice."
		type="generic"
		weight="50"
		maxFloorOffset="20"/>
	<item id="746"
		image="generic/batwing.png"
		name="Bat Wing"
		description="The wing from a bat."
		type="generic"
		weight="3"
		maxFloorOffset="20"/>
	<item id="747"
		image="generic/bentneedle.png"
		name="Bent Needle"
		description="A twisted needle. It would be difficult to find one in a haystack, for example."
		type="generic"
		weight="3"
		maxFloorOffset="20"/>
	<item id="748"
		image="generic/blanket.png"
		name="Blanket"
		description="A blanket big enough to cover a reinboo's back, but not very warm."
		type="generic"
		weight="50"
		maxFloorOffset="20"/>
	<item id="749"
		image="generic/bone.png"
		name="Bone"
		description="A bone."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="750"
		image="generic/bottleofsand.png"
		name="Bottle Of Sand"
		description="A bottle with sand in it."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="751"
		image="generic/brainstem.png"
		name="Brainstem"
		description="The cortex pulses with enegry."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="752"
		image="generic/casinocoins.png"
		name="Casino Coins"
		description="Just some casino coins."
		type="generic"
		weight="2"
		maxFloorOffset="20"/>
	<item id="753"
		image="generic/cavesnakelamp.png"
		name="Cave Snake Lamp"
		description="The feeler of a cave snake that glows in the dark."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="754"
		image="generic/closedchristmasbox.png"
		name="Closed Christmas Box"
		description="A closed, but yet unwrapped box that should contain some Christmas present."
		type="generic"
		weight="200"
		maxFloorOffset="20"/>
	<item id="755"
		image="generic/coal.png"
		name="Coal"
		description="A lump of coal."
		type="generic"
		weight="40"
		maxFloorOffset="20"/>
	<item id="756"
		image="generic/cryptkey.png"
		name="Crypt Key"
		description="You feel as if the Skeleton Key is staring at you."
		type="generic"
		weight="2"
		maxFloorOffset="20"/>
	<item id="757"
		image="generic/darkpetal.png"
		name="Dark Petal"
		description="A single, dark, petal, oddly heavy. The edges of the petal are unusually hard, and have a slightly reflective shine to them. But looking into the gleam, you can only see fire."
		type="generic"
		weight="250"
		maxFloorOffset="20"/>
	<item id="758"
		image="generic/zombieear.png"
		name="Zombie Ear"
		description="An ear from a zombie."
		type="generic"
		weight="5"
		maxFloorOffset="20"/>
	<item id="759"
		image="generic/ectoplasm.png"
		name="Ectoplasm"
		description="Someone blows their nose and you want to keep it?"
		type="generic"
		weight="4"
		maxFloorOffset="20"/>
	<item id="760"
		image="generic/frozenyetitear.png"
		name="Frozen Yeti Tear"
		description="A tear from a yeti, frozen."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="761"
		image="generic/cobaltherb.png"
		name="Cobalt Herb"
		description="An ingredient for brewing healing potions."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="762"
		image="generic/snakeskin.png"
		name="Snake Skin"
		description="The skin of a slain snake."
		type="generic"
		weight="17"
		maxFloorOffset="20"/>
	<item id="763"
		image="generic/undeadeye.png"
		name="Undead Eye"
		description="An eye from a zombie."
		type="generic"
		weight="3"
		maxFloorOffset="20"/>
	<item id="764"
		image="generic/cottoncloth.png"
		name="Cotton Cloth"
		description="A piece of cotton cloth."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="765"
		image="generic/grassseeds.png"
		name="Grass Seeds"
		description="Some grass seeds."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="766"
		image="generic/hardspike.png"
		name="Hard Spike"
		description="The hard spike of a slain monster."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="767"
		image="generic/diseasedheart.png"
		name="Diseasd Heart"
		description="A diseased heart. Likely from a zombie."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="768"
		image="generic/gambogeherb.png"
		name="Gamboge Herb"
		description="An ingredient for brewing healing potions."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="769"
		image="generic/mauveherb.png"
		name="Mauve Herb"
		description="An ingredient for brewing healing potions."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="770"
		image="generic/ironingot.png"
		name="Iron Ingot"
		description="An ingot of iron."
		type="generic"
		weight="260"
		maxFloorOffset="20"/>
	<item id="771"
		image="generic/ironore.png"
		name="Iron Ore"
		description="A lump of iron ore."
		type="generic"
		weight="40"
		maxFloorOffset="20"/>
	<item id="772"
		image="generic/maggotslime.png"
		name="Maggot Slime"
		description="Slimy maggot slime."
		type="generic"
		weight="2"
		maxFloorOffset="20"/>
	<item id="773"
		image="generic/rottenrags.png"
		name="Rotten Rags"
		description="Rotten rags from an undead creature."
		type="generic"
		weight="15"
		maxFloorOffset="20"/>
	<item id="774"
		image="generic/rawlog.png"
		name="Raw Log"
		description="A raw log."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="775"
		image="generic/brain.png"
		name="Brain"
		description="One thing you lack."
		type="generic"
		weight="50"
		maxFloorOffset="20"/>
	<item id="776"
		image="generic/reedbundle.png"
		name="Reed Bundle"
		description="A bundle of reeds."
		type="generic"
		weight="7"
		maxFloorOffset="20"/>
	<item id="777"
		image="generic/root.png"
		name="Root"
		description="A root from a plant."
		type="generic"
		weight="5"
		maxFloorOffset="20"/>
	<item id="778"
		image="generic/scorpionstinger.png"
		name="Scorpion Stinger"
		description="A poisoned scorpion stinger."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="779"
		image="generic/silkcocoon.png"
		name="Silk Cocoon"
		description="A silkworm's cocoon."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="780"
		image="generic/snaketongue.png"
		name="Snake Tongue"
		description="The forked tongue of a snake."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="781"
		image="generic/treasurekey.png"
		name="Treasure Key"
		description="A rusty key."
		type="generic"
		weight="2"
		maxFloorOffset="20"/>
	<item id="782"
		image="generic/vampirebatwing.png"
		name="Vampire Bat Wing"
		description="The wing of a bloodsucking Vampire Bat."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="783"
		image="generic/yeticlaw.png"
		name="Yeti Claw"
		description="A stolen claw from a Yeti."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="784"
		image="generic/wolvernpelt.png"
		name="Wolvern Pelt"
		description="The pelt of a Wolvern. In some lands, this can be used to make clothes, blankets, or tents."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="785"
		image="generic/pearl.png|W:#581a1a,a41111,c03a3a,ff6060"
		name="Lava Mana Pearl"
		description="A strange lava pearl that did not burn you."
		type="generic"
		weight="0"
		maxFloorOffset="20"/>
	<item id="786"
		image="generic/tulip.png"
		name="Tulip"
		description="A flower picked in the fields."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="787"
		image="generic/spellbookpage.png"
		name="Spell Book Page"
		description="A page torn from a magic book."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<!-- ID 788 is free -->
	<item id="789"
		image="generic/skull.png"
		name="Skull"
		description="don't hope to find a brain in it."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="790"
		image="generic/silverbell.png"
		name="Silver Bell"
		description="A bell made from pure silver."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="791"
		image="generic/brokenfourleafamulet.png"
		name="Broken-Four-Leaf-Amulet "
		description="Unlucky."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="792"
		image="generic/gempowder.png"
		name="Gem Powder"
		description="Crushed from valuable crystals."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="793"
		image="generic/goldpieces.png"
		name="Gold Coins"
		description="Used for buying stuff."
		type="generic"
		weight="6"
		maxFloorOffset="20"/>
	<item id="794"
		image="generic/grassliner.png"
		name="Grass Liner"
		description="Perfect to feed moobous."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="795"
		image="generic/icecube.png"
		name="Ice Cube"
		description="Dont bring it to Tulimshar."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="796"
		image="generic/iten.png"
		name="Iten"
		description="Small but heavy."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="797"
		image="generic/jackolantern.png"
		name="Jacko Lantern"
		description="A pumkin with a face on it."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="798"
		image="generic/lazuriteshard.png"
		name="Lazurite Shard"
		description="A small shard of Lazurite, with little magic catalysis properties."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="799"
		image="generic/lazuritecrystal.png"
		name="Lazurite Crystal"
		description="A crystal of Lazurite, with magic catalysis properties."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="800"
		image="generic/lazuriteheart.png"
		name="Lazurite Heart"
		description="A large crystal of Lazurite, with powerful magic catalysis properties."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="801"
		image="generic/leathersuitcase.png"
		name="Leather Suitcase"
		description="A tyipical suitcase."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="802"
		image="generic/lockpicks.png"
		name="Lock Picks"
		description="You probably will find these useful when in jail."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="803"
		image="generic/loveletter.png"
		name="Love Letter"
		description="A letter to confess to that special someone."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="804"
		image="generic/mylarindust.png"
		name="Mylarin Dust"
		description="A bottle of mylarin particles."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="805"
		image="generic/openedchristmasbox.png"
		name="Opened Christmas Box"
		description="What was inside?"
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="806"
		image="generic/leatherpatch.png"
		name="Leather Patch"
		description="Leather Patch."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="807"
		image="generic/petal.png"
		name="Petal"
		description="This lovely petal was picked from a flower."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="808"
		image="generic/powder.png|W:#606030,b0b090,e0e0a0,ffffe0"
		name="SulfurPowder"
		description="A small pile of dangerous sulphur."
		type="generic"
		weight="4"
		maxFloorOffset="20"/>
	<item id="809"
		image="generic/presentbox.png"
		name="Present Box"
		description="What does it contain."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="810"
		image="generic/quill.png"
		name="Quill"
		description="Used to write letters."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="811"
		image="generic/rose.png"
		name="Rose"
		description="can come in a variety of colors."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="812"
		image="generic/sealedsoul.png"
		name="Sealed Soul"
		description="A soul, sealed in a mystical vial."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="813"
		image="generic/silvermirror.png"
		name="Silver Mirror"
		description="This mirror has some mysterious aura around it."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="814"
		image="generic/terraniteore.png"
		name="Terranite Ore"
		description="Some ore collected from the Terranite."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="815"
		image="generic/tuber.png"
		name="Tuber"
		description="A seed that can be replanted."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="816"
		image="generic/icebottle.png"
		name="Iced Bottle"
		description="Frozen solid."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="817"
		image="generic/key-ship.png"
		name="Saxso Key"
		description="Used to unlock something."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="818"
		image="generic/bluemanapearl.png"
		name="Blue Mana Pearl"
		description="A pure pearl of Mana."
		type="generic"
		weight="0"
		maxFloorOffset="20"/>
	<item id="819"
		image="generic/crystallizedmaggot.png"
		name="Crystallized Maggot"
		description="Hard as a rock."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="820"
		image="generic/darkcrystal.png"
		name="Dark Crystal"
		description="Dark as the night."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="821"
		image="generic/sunnycrystal.png"
		name="Sunny Crystal"
		description="Shines as bright as the sun."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="822"
		image="generic/druidtreebranch.png"
		name="Druid Tree Branch"
		description="A branch from a druid tree."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="823"
		image="generic/dragonscales.png"
		name="Dragon Scales"
		description="Taken from a dead dragon."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="824"
		image="generic/lightgreendiamond.png"
		name="Light Green Diamond"
		description="A light green diamond."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="825"
		image="generic/powder.png|W:#9E0000"
		name="Demonic Earth Powder"
		description="let's make The Mana World 2 darker !"
		type="generic"
		weight="18"
		maxFloorOffset="20"/>
	<item id="826"
		image="generic/fluopowder.png"
		name="Fluo Powder"
		description="Fluoresent powder."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="827"
		image="generic/brokenmedal.png"
		name="Broken Medal"
		description="Unlucky."
		type="generic"
		weight="10"
		maxFloorOffset="20"/>
	<item id="828"
		image="generic/strangecoin.png"
		name="Strange Coin"
		description="Doesn't look like the others. I wonder if you can shop with this."
		type="generic"
		weight="0"
		maxFloorOffset="20"/>
	<item id="829"
		image="generic/butterfly.png"
		name="Butterfly"
		description="It's made of butter! It flies! It is a BUTTERFLY!"
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="830"
		image="generic/cavesnaketongue.png"
		name="Cave Snake Tongue"
		description="It is not kind to show tongues to people, you know."
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="831"
		image="generic/redscorpionstinger.png"
		name="Red Scorpion Stinger"
		description="It stings!"
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="832"
		image="generic/blackscorpionstinger.png"
		name="Black Scorpion Stinger"
		description="It stings!"
		type="generic"
		weight="1"
		maxFloorOffset="20"/>
	<item id="833"
		image="generic/emptybottle.png"
		name="Empty Bottle"
		description="If you are thirsty, this won't solve your problems."
		type="generic"
		weight="5"
		maxFloorOffset="20"/>
	<item id="834"
		image="generic/easteregg-gold.png"
		name="Golden Easter Egg"
		description="A rare golden egg which can only be used during Easter."
		type="generic"
		weight="5"
		maxFloorOffset="20"/>
	<item id="835"
		image="generic/easteregg-silver.png"
		name="Silver Easter Egg"
		description="A silver egg which can only be used during Easter."
		type="generic"
		weight="5"
		maxFloorOffset="20"/>
	<item id="836"
		image="generic/powder.png"
		name="Pile Of Ash"
		description="A pile of ash similar to volcanic ash."
		type="generic"
		weight="6"
		maxFloorOffset="20"/>
	 <item id="837"
		image="generic/duckfeather.png"
		name="Duck Feathers"
		description="Small feathers of an angry Duck."
		type="generic"
		weight="1"
		maxFloorOffset="8"/>
	 <item id="838"
		image="generic/tulimsharguardcard.png"
		name="Tulimshar Guard Card"
		description="Go anywhere you want! Well, not really. But grants you access to restricted areas in Tulimshar."
		type="generic"
		weight="1"/>
	 <item id="839"
		image="generic/roach.png"
		name="Roach"
		description="A small fish."
		type="generic"
		weight="80"/>
	 <item id="840"
		image="generic/tench.png"
		name="Tench"
		description="A tench found in pond."
		type="generic"
		weight="120"/>
	 <item id="841"
		image="generic/gemstone.png|W:#a0a010,ffffa0"
		name="Lifestone"
		description="A small stone with some life power on it. Not very useful."
		type="generic"
		weight="80"/>
	<item id="842"
		image="generic/ore.png|W:#334422,556644,778866"
		name="Copper Ore"
		description="Copper in its brute form."
		type="generic"
		weight="1000"/>
	<item id="843"
		image="generic/ore.png|W:#111111,333333,555555"
		name="Lead Ore"
		description="Lead in its brute form."
		type="generic"
		weight="1000"/>
	<!-- BR: Estanho, FR: Étain -->
	<item id="844"
		image="generic/ore.png|W:#555555,777777,999999"
		name="Tin Ore"
		description="Tin in its brute form."
		type="generic"
		weight="1000"/>
	<item id="845"
		image="generic/ore.png|W:#AAAAAA,CCCCCC,EEEEEE"
		name="Silver Ore"
		description="Silver in its brute form."
		type="generic"
		weight="1000"/>
	<item id="846"
		image="generic/ore.png|W:#888844,CCCC66,FFFF88"
		name="Gold Ore"
		description="Gold in its brute form."
		type="generic"
		weight="1000"/>
	<item id="847"
		image="generic/ore.png|W:#888888,AAAAAA,CCCCCC"
		name="Platinum Ore"
		description="Platinum in its brute form."
		type="generic"
		weight="1000"/>
	<item id="848"
		image="generic/ore.png|W:#884444,CC6666,FF8888"
		name="Iridium Ore"
		description="Iridium in its brute form."
		type="generic"
		weight="1000"/>
	<item id="849"
		image="generic/ore.png|W:#9999BB,BBBBDD,DDDDFF"
		name="Titanium Ore"
		description="Titanium in its brute form."
		type="generic"
		weight="1000"/>

	<item id="850"
		image="generic/ingot.png|W:#334422,556644,778866"
		name="Copper Ingot"
		description="Used to craft copper objects."
		type="generic"
		weight="2000"/>
	<item id="851"
		image="generic/ingot.png|W:#111111,333333,555555"
		name="Lead Ingot"
		description="Used to craft lead objects."
		type="generic"
		weight="2000"/>
	<item id="852"
		image="generic/ingot.png|W:#555555,777777,999999"
		name="Tin Ingot"
		description="Used to craft tin objects."
		type="generic"
		weight="2000"/>
	<item id="853"
		image="generic/ingot.png"
		name="Silver Ingot"
		description="Used to craft silver objects."
		type="generic"
		weight="2000"/>
	<item id="854"
		image="generic/ingot.png|W:#888844,CCCC66,FFFF88"
		name="Gold Ingot"
		description="Used to craft gold objects."
		type="generic"
		weight="2000"/>
	<!-- Note: Can we rename it to “Platyna Ingot”? :> -->
	<item id="855"
		image="generic/ingot.png|W:#888888,AAAAAA,CCCCCC"
		name="Platinum Ingot"
		description="Used to craft platinum objects."
		type="generic"
		weight="2000"/>
	<item id="856"
		image="generic/ingot.png|W:#884444,CC6666,FF8888"
		name="Iridum Ingot"
		description="Used to craft iridium objects."
		type="generic"
		weight="2000"/>
	<item id="857"
		image="generic/ingot.png|W:#9999BB,BBBBDD,DDDDFF"
		name="Titanium Ingot"
		description="Used to craft titanium objects."
		type="generic"
		weight="2000"/>
	<item id="858"
		image="generic/gempowder.png|W:#5e7480,f1ffff,ffffff"
		name="Diamond Powder"
		description="A white powder made out of a diamond."
		type="generic"
		weight="12"/>
	<item id="859"
		image="generic/gempowder.png|W:#581a1a,a41111,c03a3a,ff6060"
		name="Ruby Powder"
		description="A red powder made out of a ruby."
		type="generic"
		weight="12"/>
	<item id="860"
		image="generic/gempowder.png|W:#1f9c1f,89d689"
		name="Emerald Powder"
		description="A green powder made out of an emerald."
		type="generic"
		weight="12"/>
	<item id="861"
		image="generic/gempowder.png|W:#4b4bbd,888af4"
		name="Sapphire Powder"
		description="A blue powder made out of a sapphire."
		type="generic"
		weight="12"/>
	<item id="862"
		image="generic/gempowder.png|W:#ccb534,f1ea8e,ffffaa"
		name="Topaz Powder"
		description="A yellow powder made out of a topaz."
		type="generic"
		weight="12"/>
	<item id="863"
		image="generic/gempowder.png|W:#530a7c,b362e1,ca87ef"
		name="Amethyst Powder"
		description="A purple powder made out of an amethyst."
		type="generic"
		weight="12"/>
	<item id="864"
		image="generic/box-aquada.png"
		name="Aquada Box"
		description="Contains 50 aquadas."
		type="generic"
		weight="850"/>
	<item id="865"
		image="generic/snaketongue.png|W:#706060"
		name="Mountain Snake Tongue"
		description="The forked tongue of a mountain snake."
		type="generic"
		weight="2"/>
		<!-- Saulc FIXXX -->	
	<item id="866"
		image="generic/snakeskin.png|W:#706060"
		name="Mountain Snake Skin"
		description="A rare skin of a mountain snake."
		type="generic"
		weight="22"
		maxFloorOffset="20"/>
	<item id="867"
		image="generic/snakeskin.png|W:#3c1554,6d3195,c987d1"
		name="Cave Snake Skin"
		description="A cave snake skin."
		type="generic"
		weight="13"
		maxFloorOffset="20"/>
	<item id="868"
		image="generic/crocclaw.png"
		name="Scorpion claw"
		description="One scorpion was out of harm's way."
		type="generic"
		weight="15"/>
	<item id="869"
		image="generic/crocclaw.png"
		name="Red Scorpion claw"
		description="Not appetizing."
		type="generic"
		weight="20"/>
	<item id="870"
		image="generic/crocclaw.png"
		name="Black Scorpion claw"
		description="It moves and pinches without its body."
		type="generic"
		weight="25"/>
	<item id="871"
		image="generic/crocclaw.png"
		name="Golden Scorpion claw"
		description="A dangerous golden scropion claw."
		type="generic"
		weight="65"/>
	<item id="872"
		image="generic/oceancrocclaw.png"
		name="Ocean Croc Claw"
		description="A claw of a rare species of croc."
		type="generic"
		weight="61"/>
	 <item id="873"
		image="generic/whitefur.png"
		name="White Fur"
		description="White fleecy fur, useful for making garments."
		 type="generic"
		weight="1"/>
	<item id="874"
		image="generic/powder.png|W:#A05000"
		name="Everburn Powder"
		description="Infinite Burning Powder. 100% magic. Extremely rare reagent."
		type="generic"
		weight="100"/>
	<item id="875"
		image="generic/darkdesertmushroom.png"
		name="Dark Desert Mushroom"
		description="Extremely rare, only found on the deepest part of the Hard Desert. Useful for all potions."
		type="generic"
		weight="40"/>


	<!-- Necklaces -->
	<item id="1000"
		image="equipment/amulet/bromenalfourleafamulet.png"
		name="Bromenal Four-Leaf Amulet"
		description="An amulet that brings the wearer good luck where ever they go."
		effect="VIT Defence +10%"
		level="45"
		type="equip-necklace"
		weight="10">
	</item>
	<item id="1001"
		image="equipment/amulet/ironfourleafamulet.png"
		name="Iron Four-Leaf Amulet"
		description="An amulet that brings the wearer great luck where ever they go."
		effect="VIT Defence +5%"
		level="35"
		type="equip-necklace"
		weight="25">
	</item>
	<item id="1002"
		image="equipment/amulet/goldenfourleafamulet.png"
		name="Golden Four-Leaf Amulet"
		description="An amulet that brings the wearer excellent luck where ever they go."
		effect="VIT Defence +7%"
		level="45"
		type="equip-necklace"
		weight="35">
	</item>
	<item id="1003"
		image="equipment/amulet/crozenitefourleafamulet.png"
		name="Crozenite Four-Leaf Amulet"
		description="An amulet that brings the wearer luck where ever they go."
		effect="VIT Defence +3%"
		level="45"
		type="equip-necklace"
		weight="55">
	</item>
	<item id="1004"
		image="equipment/amulet/heartnecklace.png"
		name="Heart Necklace"
		description="A gold and ruby heart necklace."
		effect="NYI"
		level="90"
		type="equip-necklace"
		weight="100">
	</item>
	<item id="1005"
		image="equipment/amulet/jacksskeletoncharm.png"
		name="Jack's Skeleton Charm"
		description="A mysterious charm said to only work at a special time of year."
		level="60"
		type="equip-necklace"
		weight="10">
	</item>
	<item id="1006"
		image="equipment/amulet/lifestonependant.png"
		name="Lifestone Pendant"
		description="A mystical pendant."
		effect="SP Regen +1%, HP Regen +5%"
		level="10"
		defense="-2"
		type="equip-necklace"
		weight="60">
	</item>
	<item id="1007"
		image="equipment/amulet/bloodstonependant.png"
		name="Bloodstone Pendant"
		description="A demoniac pendant."
		effect=" HP +5%"
		level="45"
		type="equip-necklace"
		weight="100">
	</item>
	<item id="1008"
		image="equipment/amulet/rawtalisman.png"
		name="Raw Talisman"
		description="Raw form of a talisman, can be enchanted with ancient magic."
		effect=" HP +15%"
		level="65"
		type="equip-necklace"
		weight="100">
	</item>
	<item id="1009"
		image="equipment/amulet/darktalisman.png"
		name="Dark Talisman"
		description="A small cube. It radiates unimaginable power, and is quite dizzying to look at."
		effect=" HP +15%"
		level="85"
		type="equip-necklace"
		weight="1000">
	</item>
	<item id="1010"
		image="equipment/amulet/flighttalisman.png"
		name="Flight Talisman"
		description="A talisman created using ancient magic to keep you safe during flights."
		effect=" HP +15%"
		level="75"
		type="equip-necklace"
		weight="500">
	</item>
	<item id="1011"
		image="equipment/amulet/toothnecklace.png"
		name="Tooth Necklace"
		description="A basic tooth necklace."
		level="8"
		effect="STR +2, HP -250"
		type="equip-necklace"
		weight="50">
	</item>
	<item id="1012"
		image="equipment/amulet/wolvernteethnecklace.png"
		name="Wolvern Teeth Necklace"
		description="A poacher necklace."
		level="20"
		type="equip-necklace"
		weight="150">
	</item>
	<item id="1013"
		image="equipment/amulet/clawpendant.png"
		name="Claw Pendant"
		description="A pendant made for hermit"
		level="34"
		type="equip-necklace"
		weight="250">
	</item>
	<item id="1014"
		image="equipment/amulet/barbarianamulet.png"
		name="Barbarian Amulet"
		description="A typical amulet for adult barbarian."
		level="44"
		type="equip-necklace"
		weight="350">
	</item>
	<item id="1015"
		image="equipment/amulet/barbarianmasteramulet.png"
		name="Barbarian Master Amulet"
		description="An unique amulet in a tribe."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1016"
		image="equipment/amulet/monkpendant.png"
		name="Monk Pendant"
		description="An unique amulet in a tribe."
		level="25"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1017"
		image="equipment/amulet/angelamulet.png"
		name="Angel Amulet"
		description="An unique amulet in a tribe."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1018"
		image="equipment/amulet/heartnecklace.png"
		name="Sponsor Necklace"
		description="A necklace which only senior sponsors are allowed to use."
		effect="Makes you look cool!"
		type="equip-necklace"
		weight="1">
		<particlefx>graphics/particles/circle-magic.xml</particlefx>
	</item>

	<!-- Charms -->
	<item id="1150"
		image="equipment/charms/fourleafclover.png"
		name="Four Leaf Clover"
		description="A lucky and extremely rare drop."
		level="30"
		luck="1"
		effect="Receive 10% less Critical hits"
		type="equip-necklace"
		weight="15">
	</item>
	<item id="1151"
		image="equipment/charms/demonashurn.png"
		name="Ash Urn"
		description="An ash urn. Contains something burnt, but you can't quite find out what."
		defense="15"
		level="40"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1152"
		image="equipment/charms/astralcube.png"
		name="Astral Cube"
		description="The key component to shift worlds will grant you etheral defense."
		level="85"
		defense="25"
		int="1"
		type="equip-necklace"
		weight="800">
	</item>
	<item id="1153"
		image="equipment/charms/brokendoll.png"
		name="Broken Doll"
		description="An ancient doll taken from a fallen Fey Element that used it as a lure for its young victims."
		level="5"
		type="equip-necklace"
		weight="27">
	</item>
	<item id="1154"
		image="equipment/charms/doll.png"
		name="Doll"
		description="A doll. Monsters will understimate you, allowing to crit more often."
		effect="Critical +15%"
		level="30"
		type="equip-necklace"
		weight="60">
	</item>
	<item id="1155"
		image="equipment/charms/firescroll.png"
		name="Fire Scroll"
		description="This scroll should burn!"
		level="54"
		type="equip-necklace"
		weight="10">
	</item>
	<item id="1156"
		image="equipment/charms/heartofisis.png"
		name="Heart Of Isis"
		description="Life emanates through the natural warmth of this jewel."
		level="54"
		type="equip-necklace"
		weight="40">
	</item>
	<item id="1157"
		image="equipment/charms/leatherball.png"
		name="Leather Ball"
		description="A leather ball handmade by Santa's helpers."
		level="15"
		type="equip-necklace"
		weight="50">
	</item>
	<item id="1158"
		image="equipment/charms/mechamedallion.png"
		name="Mecha Medallion"
		description="This one is a powerful medallion."
		level="54"
		type="equip-necklace"
		weight="40">
	</item>
	<item id="1159"
		image="equipment/charms/oldtowel.png"
		name="Old Towel"
		description="You can dry yourself off with it if it still seems to be clean enough. - Douglas Adams"
		level="54"
		type="equip-necklace"
		weight="30">
	</item>
	<item id="1160"
		image="equipment/charms/plushmouboo.png"
		name="Plush Mouboo"
		description="A Mouboo plush."
		level="54"
		type="equip-necklace"
		weight="30">
	</item>
	<item id="1161"
		image="equipment/charms/redstocking.png"
		name="Red Stocking"
		description="Eww, it's smelly!"
		level="25"
		type="equip-necklace"
		weight="10">
	</item>
	<item id="1162"
		image="equipment/charms/santaglobe.png"
		name="Santa Globe"
		description="An snow globe featuring Santa."
		level="54"
		type="equip-necklace"
		weight="1">
	</item>
	<item id="1163"
		image="equipment/charms/snowmanglobe.png"
		name="Snowman Globe"
		description="An snow globe featuring a snowman."
		level="54"
		type="equip-necklace"
		weight="1">
	</item>
	<item id="1164"
		image="equipment/charms/spectralorb.png"
		name="Spectral Orb"
		description="Test."
		level="20"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1165"
		image="equipment/charms/thetabook.png"
		name="Theta Book"
		description="Test."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1166"
		image="equipment/charms/treasuremap.png"
		name="Treasure Map"
		description="Test."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1167"
		image="equipment/charms/earthscroll.png"
		name="Earth Scroll"
		description="Test."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1168"
		image="equipment/charms/demonicskull.png"
		name="Demonic Skull"
		description="Test."
		level="54"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1169"
		image="equipment/charms/goldmedal.png"
		name="goldmedal"
		description="Test."
		level="3"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1170"
		image="equipment/charms/silvermedal.png"
		name="silvermedal"
		description="Test."
		level="2"
		type="equip-necklace"
		weight="450">
	</item>
	<item id="1171"
		image="equipment/charms/bronzemedal.png"
		name="bronzemedal"
		description="Test."
		level="1"
		type="equip-necklace"
		weight="450">
	</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="12"
		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="55"
		str="1"
		level="25"
		type="equip-torso"
		weight="110">
		<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/warlordplate.png"
		name="Warlord Plate"
		description="Strong and decorative armor."
		defense="270"
		level="15"
		type="equip-torso"
		weight="2600">
		<sprite gender="unisex">equipment/chest/warlordplate-male.xml</sprite>
		<sprite gender="female">equipment/chest/warlordplate-female.xml</sprite>
	</item>
	<item id="1307"
		image="equipment/chest/bromenalchest.png"
		name="Bromenal Chest"
		description="A bromenal chest armor."
		defense="250"
		level="15"
		type="equip-torso"
		weight="2000">
		<sprite gender="unisex">equipment/chest/bromenalchest-male.xml</sprite>
		<sprite gender="female">equipment/chest/bromenalchest-female.xml</sprite>
	</item>
	<item id="1308"
		image="equipment/chest/forestarmor.png"
		name="Forest Armor"
		description="A clean and comfortable mantle with dags, made for the finest stalkers."
		defense="250"
		level="15"
		type="equip-torso"
		weight="40">
		<sprite gender="unisex">equipment/chest/forestarmor-male.xml</sprite>
		<sprite gender="female">equipment/chest/forestarmor-female.xml</sprite>
	</item>
	<item id="1309"
		image="equipment/chest/contributorsweater.png|W"
		name="%Color% Contributor Sweater"
		description="This %color% sweater belongs to someone who helped making TMW2 as awesome as it is now!."
		defense="20"
		level="5"
		type="equip-torso"
		weight="25"
		colors="simple"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/contributorsweater-male.xml</sprite>
		<sprite gender="female">equipment/chest/contributorsweater-female.xml</sprite>
	</item>
	<item id="1310"
		image="equipment/chest/chainmail.png"
		name="Chainmail"
		description="A shirt made of chains. It weighs a lot but offers excellent protection."
		defense="250"
		level="15"
		type="equip-torso"
		weight="800">
		<sprite gender="unisex">equipment/chest/chainmail-male.xml</sprite>
		<sprite gender="female">equipment/chest/chainmail-female.xml</sprite>
	</item>
	<item id="1311"
		image="equipment/chest/terranitearmor.png"
		name="Terranite Chest"
		description="A nice piece of armor made out of terranite ore."
		defense="250"
		level="15"
		type="equip-torso"
		weight="800">
		<sprite gender="unisex">equipment/chest/terranitearmor-male.xml</sprite>
		<sprite gender="female">equipment/chest/terranitearmor-female.xml</sprite>
	</item>
	<item id="1312"
		image="equipment/chest/lightplatemail.png"
		name="Light Platemail"
		description="A light cuirass with shoulder pads made of iron, usually worn by foot soldiers."
		defense="250"
		level="15"
		type="equip-torso"
		weight="1200">
		<sprite gender="unisex">equipment/chest/lightplatemail-male.xml</sprite>
		<sprite gender="female">equipment/chest/lightplatemail-female.xml</sprite>
	</item>
	<item id="1313"
		image="equipment/chest/shorttanktop.png|W"
		name="%Color% Short tank top"
		description="A %color% short tank top."
		defense="30"
		level="4"
		type="equip-torso"
		weight="5"
		colors="simple">
		<sprite gender="unisex">equipment/chest/shorttanktop-male.xml</sprite>
		<sprite gender="female">equipment/chest/shorttanktop-female.xml</sprite>
	</item>
	<item id="1314"
		image="equipment/chest/leathershirt.png"
		name="Leather Shirt"
		description="A shirt made of hardened leather."
		defense="58"
		level="21"
		type="equip-torso"
		weight="340">
		<sprite gender="unisex">equipment/chest/leathershirt-male.xml|#573a26,9e7654,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
		<sprite gender="female">equipment/chest/leathershirt-female.xml|#573a26,9e7654,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
	</item>
	<item id="1315"
		image="equipment/chest/tnecksweater.png|W"
		name="%Color% Turtleneck Sweater"
		description="A thick, soft and warm sweater."
		defense="100"
		level="23"
		type="equip-torso"
		weight="30"
		colors="simple">
		<sprite gender="unisex">equipment/chest/tnecksweater-male.xml</sprite>
		<sprite gender="female">equipment/chest/tnecksweater-female.xml</sprite>
	</item>
	<item id="1316"
		image="equipment/chest/silkrobe.png|W"
		name="%Color% Silk Robe"
		description="A light and shimmering %Color% silk robe."
		effect="SP +30"
		defense="40"
		level="20"
		type="equip-torso"
		weight="25"
		colors="simple"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/silkrobe-male.xml</sprite>
		<sprite gender="female">equipment/chest/silkrobe-female.xml</sprite>
	</item>
	<item id="1317"
		image="equipment/chest/sorcererrobe.png|W"
		name="%Color% Sorcerer Robe"
		description="A red lined sorcerer robe."
		effect="SP +50"
		defense="250"
		level="15"
		type="equip-torso"
		weight="5"
		colors="simple">
		<sprite gender="unisex">equipment/chest/sorcererrobe-male.xml</sprite>
		<sprite gender="female">equipment/chest/sorcererrobe-female.xml</sprite>
	</item>
	<item id="1318"
		image="equipment/chest/uglychristmassweater.png"
		name="Ugly Christmas Sweater"
		description="An ugly %Color% Christmas sweater."
		defense="60"
		level="14"
		type="equip-torso"
		weight="35"
		colors="simple">
		<sprite gender="unisex">equipment/chest/uglychristmassweater-male.xml</sprite>
		<sprite gender="female">equipment/chest/uglychristmassweater-female.xml</sprite>
	</item>
	<item id="1319"
		image="equipment/chest/valentinedress.png|W"
		name="%Color% Valentine Dress"
		description="A %Color% dress made for your Valentin's day. Could be red, though."
		defense="250"
		level="15"
		type="equip-torso"
		weight="35"
		colors="simple"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/valentinedress-male.xml</sprite>
		<sprite gender="female">equipment/chest/valentinedress-female.xml</sprite>
	</item>
	<item id="1320"
		image="equipment/chest/vnecksweater.png|W"
		name="%Color% V-neck Sweater"
		description="A thin, soft and warm sweater."
		defense="70"
		level="15"
		type="equip-torso"
		weight="35"
		colors="simple">
		<sprite gender="unisex">equipment/chest/vnecksweater-male.xml</sprite>
		<sprite gender="female">equipment/chest/vnecksweater-female.xml</sprite>
	</item>
	<item id="1321"
		image="equipment/chest/candorshirt.png"
		name="Candor Shirt"
		description="A classical Candor shirt"
		defense="20"
		level="4"
		type="equip-torso"
		weight="35">
		<sprite gender="unisex">equipment/chest/candorshirt-male.xml</sprite>
		<sprite gender="female">equipment/chest/candorshirt-female.xml</sprite>
	</item>
	<item id="1322"
		image="equipment/chest/gmrobe.png"
		name="GM Robe"
		description="A GM robe."
		defense="50"
		type="equip-torso"
		colors="simple"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/gmrobe-male.xml</sprite>
		<sprite gender="female">equipment/chest/gmrobe-female.xml</sprite>
	</item>
	<item id="1323"
		image="equipment/chest/redknight.png"
		name="Red Knight Armor ★★"
		description="An armor, said to belong to the Red Queen's minions, back in the end of the First Era."
		defense="100"
		level="20"
		type="equip-torso"
		weight="500"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/redknightarmor-male.xml</sprite>
		<sprite gender="female">equipment/chest/redknightarmor-female.xml</sprite>
	</item>
	<item id="1324"
		image="equipment/chest/desertshirt.png"
		name="Desert Shirt"
		description="A strong shirt suitable for desert trips. Made of leather and snake skin's."
		defense="75"
		level="37"
		type="equip-torso"
		weight="610"
		maxFloorOffset="10">
		<sprite gender="unisex">equipment/chest/leathershirt-male.xml|#443c21,85794a,beb590,ffffff;#824035,d6a19a</sprite>
		<sprite gender="female">equipment/chest/leathershirt-female.xml|#443c21,85794a,beb590,ffffff;#824035,d6a19a</sprite>
	</item>
	<item id="1327"
		image="equipment/chest/chainmail.png|W:#573f10,9c8226,d3c04b,ffffff"
		name="Golden Chainmail"
		description="A shirt made of golden chains. It weighs a lot but offers excellent protection."
		defense="1"
		level="1"
		type="equip-torso"
		weight="1">
		<sprite gender="unisex">equipment/chest/chainmail-male.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
		<sprite gender="female">equipment/chest/chainmail-female.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
	</item>
	<item id="1328"
		image="equipment/chest/lightplatemail.png|W:#573f10,9c8226,d3c04b,ffffff"
		name="Golden Light Platemail"
		description="A light platemail with shoulder pads made of gold."
		defense="21"
		level="1"
		type="equip-torso"
		weight="1">
		<sprite gender="unisex">equipment/chest/lightplatemail-male.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
		<sprite gender="female">equipment/chest/lightplatemail-female.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
	</item>
	<item id="1329"
		image="equipment/chest/warlordplate.png|W:#573f10,9c8226,d3c04b,ffffff"
		name="Golden Warlord Plate"
		description="1"
		defense="2"
		level="1"
		type="equip-torso"
		weight="1">
		<sprite gender="unisex">equipment/chest/warlordplate-male.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
		<sprite gender="female">equipment/chest/warlordplate-female.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
	</item>
	<!-- @Saulc you need itemColors (or colors) attribute to dye icon, not an empty dye command -->
	<item id="1332"
		image="equipment/chest/cottonshirt.png|W"
		name="%Color% Cotton Shirt"
		description="Shirt made of 100% cotton"
		defense="30"
		level="15"
		type="equip-torso"
		colors="simple"
		weight="90">
		<sprite gender="unisex">equipment/chest/cottonshirt-male.xml</sprite>
		<sprite gender="female">equipment/chest/cottonshirt-female.xml</sprite>
	</item>
	<item id="1334"
		image="equipment/chest/candorshirt.png"
		name="Crusade Armor"
		description="Are you a crusader?"
		defense="100"
		level="30"
		effect="TODO"
		type="equip-torso"
		weight="1200">
		<sprite gender="unisex">equipment/chest/crusadearmor-male.xml</sprite>
		<sprite gender="female">equipment/chest/crusadearmor-female.xml</sprite>
	</item>
	<item id="1335"
		image="equipment/chest/communityshirt.png"
		name="%Color% Community Shirt"
		description="You are now part of TMW2 history."
		defense="40"
		level="25"
		type="equip-torso"
		weight="120">
		<sprite gender="unisex">equipment/chest/communityshirt-male.xml</sprite>
		<sprite gender="female">equipment/chest/communityshirt-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="10"
		level="10"
		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/assassinboots.png"
		name="Assassin Boots"
		description="Crudely assembled footwear not for comfort nor fashion."
		defense="500"
		level="4"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/assassinboots-male.xml</sprite>
		<sprite gender="female">equipment/feet/assassinboots-female.xml</sprite>
	</item>
	<item id="1802"
		image="equipment/feet/boots.png|W:#212121"
		name="Deep Black Boots"
		description="Some robust black boots, ideal for travelling."
		defense="100"
		level="4"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml|#212121</sprite>
		<sprite gender="female">equipment/feet/boots-female.xml|#212121</sprite>
	</item>
	<item id="1803"
		image="equipment/feet/candorboots.png"
		name="Candor Boots"
		description="A Candor favorite"
		defense="6"
		level="7"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/candorboots-male.xml</sprite>
		<sprite gender="female">equipment/feet/candorboots-female.xml</sprite>
	</item>
	<item id="1804"
		image="equipment/feet/fursboots.png"
		name="Furs Boots"
		description="A pair of warm winter boots."
		defense="10"
		level="3"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/fursboots-male.xml</sprite>
		<sprite gender="female">equipment/feet/fursboots-female.xml</sprite>
	</item>
	<item id="1805"
		image="equipment/feet/cottonboots.png|W"
		name="Cotton Boots"
		description="A pair of quality %Color% cotton boots."
		defense="12"
		level="14"
		type="equip-feet"
		weight="18"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml</sprite>
		<sprite gender="female">equipment/feet/cottonboots-female.xml</sprite>
	</item>
	<item id="1806"
		image="equipment/feet/boots.png|W:#4f2d29,c89078"
		name="Boots"
		description="Some robust, probably used, boots."
		defense="10"
		level="3"
		type="equip-feet"
		weight="80"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml|#40332d,5e4a3d,705740,a1825d,b59767,dbbf88</sprite>
		<sprite gender="female">equipment/feet/cottonboots-female.xml|#623a34,f0c2b4</sprite>
	</item>
	<item id="1807"
		image="equipment/feet/cottonboots.png"
		name="Leather Boots"
		description="Leather boots are resistant, comfortable, and looks cool. Or at least, that's what was on the ad."
		defense="10"
		level="3"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml</sprite>
		<sprite gender="female">equipment/feet/cottonboots-female.xml</sprite>
	</item>
	<item id="1808"
		image="equipment/feet/assassinboots.png|W:#b80f0f,580000,a40000,b80f0f,c02020,ff6060"
		name="Red Stockings"
		description="Someone thought of you at Christmas Eve."
		defense="10"
		level="3"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/assassinboots-male.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060</sprite>
		<sprite gender="female">equipment/feet/assassinboots-female.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060</sprite>
	</item>
	<item id="1809"
		image="equipment/feet/bromenalboots.png"
		name="Bromenal Boots"
		description="A pair of bromenal boots."
		defense="10"
		level="3"
		type="equip-feet"
		weight="18"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/bromenalboots-male.xml</sprite>
		<sprite gender="female">equipment/feet/bromenalboots-female.xml</sprite>
	</item>
	<item id="1816"
		image="equipment/feet/boots.png|W:#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf"
		name="Creased Boots"
		description="Beark !"
		defense="4"
		level="3"
		type="equip-feet"
		weight="14"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml|#4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e0d5bf</sprite>
		<sprite gender="female">equipment/feet/boots-female.xml|#4d4d4d,514d47,686868,706662,919191,99917b,b6b6b6,c0b698,dfdfdf,e0d5bf</sprite>
	</item>
	<item id="1817"
		image="equipment/feet/tulimsharguardboots.png"
		name="Tulimshar Guard Boots"
		description="These boots are made from dock skins! Whatever that means."
		defense="16"
		level="18"
		type="equip-feet"
		weight="35"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/feet/boots-male.xml|#d58e5f</sprite>
		<sprite gender="female">equipment/feet/boots-female.xml|#d58e5f</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/scarabarmlet.png"
		name="Scarab Armlet"
		description="A scarab armlet."
		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="2004"
		image="equipment/hands/cottongloves.png|W:#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf"
		name="Creased Gloves"
		description="These gloves were used before..."
		defense="5"
		level="2"
		type="equip-arms"
		weight="40"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml|#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml|#43413d,59544f,7a706c,8a8176,a69e88,d1c7a7,e0d5bf</sprite>
	</item>
	<!-- |W:#a4b2b2,ffffff -->
	<item id="2005"
		image="equipment/hands/cottongloves.png|W"
		name="Cotton Gloves"
		description="A pair of comfy %Color% cotton gloves."
		defense="10"
		level="6"
		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="2006"
		image="equipment/hands/minergloves.png"
		name="Miner Gloves"
		description="Gloves used by miners, very useful."
		defense="25"
		level="16"
		type="equip-arms"
		weight="180"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml|#202020,505050</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml|#202020,505050</sprite>
	</item>
	<item id="2007"
		image="equipment/hands/cottongloves.png|W:#87876c,bbc39c,edf4e1,ffffff"
		name="Silk Gloves"
		description="Soft and graceful silk gloves which doesn't restrain magic."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml|#87876c,bbc39c,edf4e1,ffffff</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml|#87876c,bbc39c,edf4e1,ffffff</sprite>
	</item>
	<item id="2008"
		image="equipment/hands/leathergloves.png"
		name="Leather Gloves"
		description="Gloves made of hardened leather."
		defense="40"
		level="40"
		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>
	<!-- FIXME dye todo
	<item id="2009"
		image="equipment/hands/forestgloves.png"
		name="Forest Gloves"
		description="Protect your hands from the dirty objects found in nature."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
	</item>
	-->
	<item id="2010"
		image="equipment/hands/bromenalgloves.png"
		name="Bromenal Gloves"
		description="A pair of bromenal gloves"
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/bromenalgloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/bromenalgloves-female.xml</sprite>
	</item>
	<!-- FIXME ITEMS WITH MISSING IMAGES (or missing XML)
	<item id="2011"
		image="equipment/hands/armband.png"
		name="Golden Armband"
		description="This armband has some gold in it, so it totally must be better than the others."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
	</item>
	<item id="2012"
		image="equipment/hands/warlordgloves.png"
		name="Warlord Gloves"
		description="Steel gloves that will make you feel like a knight."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
	</item>
	<item id="2013"
		image="equipment/hands/managloves.png"
		name="Mana Gloves"
		description="These gloves are used by powerful mages."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
	</item>
	<item id="2014"
		image="equipment/hands/terranitegloves.png"
		name="Terranite Gloves"
		description="A nice pair of gloves made from terranite ore."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/cottongloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/cottongloves-female.xml</sprite>
	</item>
-->
	<item id="2015"
		image="equipment/hands/assassingloves.png"
		name="Assassin Gloves"
		description="Gloves for a master assassin."
		defense="1"
		level="1"
		type="equip-arms"
		weight="1"
		maxFloorOffset="16">
		<sprite gender="unisex">equipment/hands/assassingloves-male.xml</sprite>
		<sprite gender="female">equipment/hands/assassingloves-female.xml</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="10"
		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="Raid Trousers"
		description="Classic trousers ornated with some fluffy fur."
		defense="80"
		level="30"
		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/assassinpants.png"
		name="Assassin Pants"
		description="Pants for a master assassin.."
		defense="300"
		level="85"
		type="equip-legs"
		weight="35"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/assassinpants-male.xml</sprite>
	</item>
	<item id="2203"
		image="equipment/legs/bromenalpants.png"
		name="Bromenal Pants"
		description="A bromenal leg armor."
		defense="210"
		level="70"
		type="equip-legs"
		weight="435"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/bromenalpants-male.xml</sprite>
	</item>
	<item id="2204"
		image="equipment/legs/jeanschaps.png"
		name="Jeans Chaps"
		description="Jeans with snake skin chaps."
		defense="120"
		level="55"
		type="equip-legs"
		weight="65"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/jeanschaps-male.xml</sprite>
		<sprite gender="female">equipment/legs/jeanschaps-female.xml</sprite>
	</item>
	<item id="2205"
		image="equipment/legs/cottonshorts.png|W"
		name="Cotton Shorts"
		description="Shorts made of 100% %Color% cotton."
		defense="25"
		level="13"
		type="equip-legs"
		weight="55"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/cottonshorts-male.xml</sprite>
	</item>
	<item id="2206"
		image="equipment/legs/miniskirt.png|W"
		name="Mini Skirt"
		description="A short %Color% skirt for hot summer days."
		defense="15"
		level="2"
		type="equip-legs"
		weight="14"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/miniskirt-male.xml</sprite>
	</item>
	<item id="2207"
		image="equipment/legs/cottontrousers.png|W"
		name="Cotton Trousers"
		description="Ankle-length %Color% trousers made of cotton."
		defense="70"
		level="20"
		type="equip-legs"
		weight="25"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/cottontrousers-male.xml</sprite>
		<sprite gender="female">equipment/legs/cottontrousers-female.xml</sprite>
	</item>
	<item id="2208"
		image="equipment/legs/silkpants.png|W"
		name="%Color% Silk Pants"
		description="A very light fancy pair of %Color% silk trousers."
		defense="80"
		level="60"
		type="equip-legs"
		weight="16"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/silkpants-male.xml</sprite>
	</item>
	<item id="2209"
		image="equipment/legs/cottonskirt.png|W"
		name="Cotton Skirt"
		description="A %Color% cotton skirt made of linen cloth."
		defense="20"
		level="5"
		type="equip-legs"
		weight="19"
		colors="simple"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/cottonskirt-male.xml</sprite>
	</item>
	<item id="2210"
		image="equipment/legs/terranitepants.png"
		name="Terranite Pants"
		description="Leggings made out of terranite."
		defense="350"
		level="80"
		type="equip-legs"
		weight="80"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/terranitepants-male.xml</sprite>
	</item>
	<item id="2211"
		image="equipment/legs/chainmailskirt.png"
		name="Chainmail Skirt"
		description="The perfect medieval style."
		defense="190"
		level="65"
		type="equip-legs"
		weight="280"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/chainmailskirt-male.xml</sprite>
	</item>
	<item id="2212"
		image="equipment/legs/jeansshorts.png"
		name="Jeans Shorts"
		description="Perfect for the beach."
		defense="49"
		level="25"
		type="equip-legs"
		weight="280"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/jeansshorts-male.xml</sprite>
	</item>
	<item id="2213"
		image="equipment/legs/leathertrousers.png"
		name="Leather Trousers"
		description="A normal pair of pants made from leather."
		defense="100"
		level="50"
		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>
 <!-- FIXME ITEMS WITH MISSING IMAGES (or missing XML)
	<item id="2214"
		image="equipment/legs/banditpants.png"
		name="Bandit Pants"
		description="The Bandits favorite pair of pants."
		defense="90"
		level="45"
		type="equip-legs"
		weight="280"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/banditpants-male.xml</sprite>
	</item>
	<item id="2215"
		image="equipment/legs/warlordpants.png"
		name="Warlord Pants"
		description="Usually worn by the best warriors."
		defense="390"
		level="75"
		type="equip-legs"
		weight="280"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/warlord-male.xml</sprite>
	</item>
	<item id="2216"
		image="equipment/legs/saviorpants.png"
		name="Savior Pants"
		description="Worn by the best of the best."
		defense="420"
		level="90"
		type="equip-legs"
		weight="280"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/savior-male.xml</sprite>
	</item>
	-->
	<item id="2217"
		image="equipment/legs/candorshorts.png"
		name="Candor Shorts"
		description="Not a classic pair of shorts."
		defense="18"
		level="3"
		type="equip-legs"
		weight="32"
		maxFloorOffset="8">
		<sprite gender="unisex">equipment/legs/candorshorts-male.xml</sprite>
		<sprite gender="female">equipment/legs/candorshorts-female.xml</sprite>
	</item>

	<!-- Rings -->
	<item id="2500"
		image="equipment/rings/weddingring.png"
		name="Wedding Ring"
		description="Your wedding ring."
		defense="1"
		effect="HP +5"
		type="equip-charm"
		weight="1">
	</item>
	<item id="2501"
		image="equipment/rings/goldendiamondring.png|W"
		name="Golden %Color% Ring"
		description="A golden simple ring. Not very useful, unless you add a gemstone to it."
		defense="4"
		level="15"
		type="equip-charm"
		colors="rings"
		iconColors="rings"
		weight="80">
	</item>
	<item id="2508"
		image="equipment/rings/goldenpearlring.png"
		name="Golden Pearl Ring"
		description="A golden pearl ring."
		level="15"
		agi="1"
		int="1"
		dex="1"
		type="equip-charm"
		weight="1">
	</item>
	<item id="2509"
		image="equipment/rings/goldenblackpearlring.png"
		name="Golden Black Pearl Ring"
		description="A golden black pearl ring."
		level="25"
		str="1"
		vit="1"
		luck="1"
		type="equip-charm"
		weight="1">
	</item>
	<item id="2510"
		image="equipment/rings/thetaring.png"
		name="Theta Ring"
		description="...Don't make questions. You're better without them."
		level="25"
		type="equip-charm"
		weight="1">
	</item>
	<item id="2511"
		image="equipment/rings/lightring.png"
		name="Light Ring"
		description="A golden ring made of pure light?"
		level="25"
		type="equip-charm"
		weight="1">
	</item>
	<item id="2512"
		image="equipment/rings/goldensimplering.png|S"
		name="Silver %Color% Ring"
		description="A silver simple ring. Not so good as the golden one."
		defense="2"
		level="40"
		type="equip-charm"
		colors="rings"
		iconColors="rings"
		weight="260">
	</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/leathershield.png"
		name="Leather Shield"
		description="A shield with iron reinforcement."
		effect="Critical DEF +10%"
		defense="50"
		level="15"
		type="equip-shield"
		weight="410">
	</item>
	<item id="2702"
		image="equipment/shields/bladeshield.png"
		name="Blade Shield"
		description="Small and round shield with iron reinforcement."
		defense="85"
		level="31"
		type="equip-shield"
		weight="1980">
	</item>
	<item id="2703"
		image="equipment/shields/blueknightshield.png"
		name="Blue Knight Shield"
		description="A shield perfect with prsm helmet."
		defense="172"
		level="66"
		type="equip-shield"
		weight="2400">
	</item>
	<item id="2704"
		image="equipment/shields/britshield.png"
		name="Brit Shield"
		description="A wooden shield from nowhere."
		defense="120"
		level="45"
		type="equip-shield"
		weight="2240">
	</item>
	<item id="2705"
		image="equipment/shields/saviorshield.png"
		name="Savior Shield"
		description="The magic savior shield."
		defense="250"
		level="92"
		type="equip-shield"
		weight="2710">
	</item>
	<item id="2706"
		image="equipment/shields/bromenalshield.png"
		name="Bromenal Shield"
		description="A strong bromenal shield."
		defense="160"
		level="60"
		type="equip-shield"
		weight="2900">
	</item>
	<item id="2707"
		image="equipment/shields/roundleathershield.png"
		name="Round Leather Shield"
		description="Small and round leather shield with iron reinforcement."
		effect="Critical DEF +5%"
		defense="35"
		level="5"
		type="equip-shield"
		weight="90">
	</item>
	<item id="2708"
		image="equipment/shields/ancientshield.png"
		name="Ancient Shield"
		description="No one knows its origins."
		defense="190"
		level="50"
		type="equip-shield"
		weight="6500">
	</item>
	<item id="2709"
		image="equipment/shields/braknarshield.png"
		name="Braknar Shield"
		description="A sturdy shield."
		defense="105"
		level="39"
		type="equip-shield"
		weight="2360">
	</item>
	<item id="2710"
		image="equipment/shields/woodenshield.png"
		name="Wooden Shield"
		description="A shield made of wood."
		defense="72"
		level="24"
		type="equip-shield"
		weight="1650">
	</item>
	<item id="2711"
		image="equipment/shields/steelshield.png"
		name="Steel Shield"
		description="A shield made of steel."
		defense="200"
		level="76"
		type="equip-shield"
		weight="2500">
	</item>
	<item id="2712"
		image="equipment/shields/dragonshield.png"
		name="Dragon Shield"
		description="A mighty shield from the dragons."
		defense="200"
		level="76"
		type="equip-shield"
		weight="2500">
	</item>

	<!-- Head Gears -->
	<item id="2900"
		image="equipment/head/bandana.png|W"
		name="Bandana"
		description="A striped %Color% bandana worn by some sailors."
		defense="26"
		level="12"
		type="equip-head"
		colors="simple"
		weight="35">
		<sprite gender="unisex">equipment/head/bandana.xml</sprite>
		<sprite gender="female">equipment/head/bandana.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="42"
		level="19"
		type="equip-head"
		weight="85">
		<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="55"
		level="33"
		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 travelling."
		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/bull.png"
		name="Bull"
		description="It causes a lot of carnage!"
		defense="200"
		level="90"
		type="equip-head"
		weight="50">
		<sprite>equipment/head/bull.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2907"
		image="equipment/head/darkhelm.png"
		name="Darkhelm"
		description="A black steel helmet worn by the most ferocious warrior."
		defense="190"
		level="90"
		type="equip-head"
		weight="1300">
		<sprite>equipment/head/darkhelm.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2908"
		image="equipment/head/funkyhat.png|W"
		name="%Color% Funky Hat"
		description="Yawn."
		defense="130"
		level="30"
		type="equip-head"
		weight="20"
		colors="simple"
		maxFloorOffset="10">
		<sprite>equipment/head/funkyhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2909"
		image="equipment/head/crusadehelmet.png|W"
		name="Crusade Helmet"
		description="Start your own crusade with this %Color% helmet!"
		defense="175"
		level="55"
		type="equip-head"
		colors="simple"
		weight="1450">
		<sprite>equipment/head/crusadehelmet.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2910"
		image="equipment/head/bucket.png"
		name="Bucket"
		description="A bucket for your head!"
		defense="50"
		level="36"
		type="equip-head"
		weight="880">
		<sprite>equipment/head/bucket.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2911"
		image="equipment/head/infantryhelmet.png"
		name="infantry Helmet"
		description="A helmet for soldiers and guards."
		defense="145"
		level="30"
		type="equip-head"
		weight="400">
		<sprite>equipment/head/infantryhelmet.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/bunnyears.png|W"
		name="%Color% Bunny Ears"
		description="A headband with plush %color% bunny ears."
		defense="5"
		level="2"
		type="equip-head"
		colors="simple"
		weight="10">
		<sprite>equipment/head/bunnyears.xml</sprite>
	</item>
	<item id="2913"
		image="equipment/head/mouboohat.png"
		name="Mouboo Hat"
		description="A tightly fitting mouboo head."
		defense="58"
		level="30"
		type="equip-head"
		weight="280">
		<sprite>equipment/head/mouboohat.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2914"
		image="equipment/head/bromenalhelmet.png"
		name="Bromenal Helmet"
		description="A hard bromenal helmet."
		defense="166"
		level="45"
		type="equip-head"
		weight="400">
		<sprite>equipment/head/bromenalhelmet.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2915"
		image="equipment/head/candlehelmet.png"
		name="Candle Helmet"
		description="Worn by spelunkers."
		defense="135"
		level="20"
		type="equip-head"
		weight="450">
		<sprite>equipment/head/candlehelmet.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2916"
		image="equipment/head/deserthelmet.png"
		name="Desert Helmet"
		description="This item is now unvailable."
		defense="100"
		level="40"
		type="equip-head"
		weight="450">
		<sprite>equipment/head/deserthelmet.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2917"
		image="equipment/head/deserthat.png|W"
		name="%Color% Desert Hat"
		description="While the desert hat is perfect for sand storms, it won't help you much against a blow to the head."
		defense="40"
		level="25"
		type="equip-head"
		weight="20"
		colors="simple"
		maxFloorOffset="10">
		<sprite>equipment/head/deserthat.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2918"
		image="equipment/head/eggshellhat.png"
		name="Eggshell Hat"
		description="A novelty hat shaped like an eggshell half."
		defense="135"
		level="20"
		type="equip-head"
		weight="15">
		<sprite>equipment/head/eggshellhat.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2919"
		image="equipment/head/prsmhelmet.png|W"
		name="Prsm Helmet"
		description="A %Color% helmet with two small wings on it. By the way, thanks to Saulc, Prsm was promoted to Santa!"
		defense="135"
		level="20"
		type="equip-head"
		colors="simple"
		weight="600">
		<sprite>equipment/head/santabeardhat.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2920"
		image="equipment/head/warlordhelmet.png"
		name="Warlord Helmet"
		description="Worn by great warriors!"
		defense="135"
		level="20"
		type="equip-head"
		weight="900">
		<sprite>equipment/head/warlordhelmet.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2921"
		image="equipment/head/trapperhat.png"
		name="Trapper Hat"
		description="A hat made of forain fur"
		defense="135"
		level="20"
		type="equip-head"
		weight="1350">
		<sprite>equipment/head/trapperhat.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2922"
		image="equipment/head/yetimask.png"
		name="Yeti Mask"
		description="A mask made from the yeti's head."
		defense="135"
		level="20"
		type="equip-head"
		weight="10">
		<sprite>equipment/head/yetimask.xml</sprite>
		<replace sprite="hair"/>
	</item>
	<item id="2923"
		image="equipment/head/antlerhat.png"
		name="Antlers Hat"
		description="Ready for antlers fight."
		defense="32"
		level="13"
		effect="STR +2"
		type="equip-head"
		weight="835">
		<sprite>equipment/head/antlershat.xml</sprite>
	</item>
	<item id="2924"
		image="equipment/head/dragoneggshell.png"
		name="Dragon Eggshell"
		description="A dragon once lived in there."
		defense="135"
		level="20"
		type="equip-head"
		weight="1350">
		<sprite>equipment/head/dragoneggshell.xml</sprite>
	</item>
	<item id="2925"
		image="equipment/head/operamask.png"
		name="Opera Mask"
		description="Pale and broken. There is surely a story to be told here."
		defense="135"
		level="20"
		type="equip-head"
		weight="50">
		<sprite>equipment/head/operamask.xml</sprite>
	</item>
	<item id="2926"
		image="equipment/head/axehat.png"
		name="Axe Hat"
		description="A really cool joke."
		defense="8"
		level="5"
		type="equip-head"
		weight="50">
		<sprite>equipment/head/axehat.xml</sprite>
	</item>
	<item id="2927"
		image="equipment/head/darkknighthelmet.png"
		name="Dark Knight Helmet"
		description="Worn by the dark knight himself."
		defense="135"
		level="20"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/darkknighthelmet.xml</sprite>
	</item>
	<item id="2928"
		image="equipment/head/earmuffs.png"
		name="Earmuffs"
		description="These earmuffs can keep your ears enjoyably warm, even in Nivalis."
		defense="135"
		level="20"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/earmuffs.xml</sprite>
	</item>
	<item id="2929"
		image="equipment/head/samuraihelmet.png"
		name="Samurai Helmet"
		description="A common wear found in samurai tradition."
		defense="135"
		level="20"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/samuraihelmet.xml</sprite>
	</item>
	<item id="2930"
		image="equipment/head/pinkiehat.png"
		name="Pinkie Hat"
		description="With this, you'll fit right in with those strange pinkies."
		defense="25"
		level="16"
		type="equip-head"
		weight="5">
		<sprite>equipment/head/pinkiehat.xml</sprite>
	</item>
	<item id="2931"
		image="equipment/head/skullmask.png"
		name="Skull Mask"
		description="A mask made out of bones."
		defense="135"
		level="20"
		type="equip-head"
		weight="150">
		<sprite>equipment/head/skullmask.xml</sprite>
	</item>
	<item id="2932"
		image="equipment/head/imperialcrown.png"
		name="Imperial Crown"
		description="Usually worn by a monarch."
		defense="135"
		level="20"
		type="equip-head"
		weight="4">
		<sprite>equipment/head/imperialcrown.xml</sprite>
	</item>
	<item id="2933"
		image="equipment/head/gmcap.png"
		name="GM Cap"
		description="A cap which identifies you as a GM. Only Game Master's can wear this."
		defense="50"
		type="equip-head"
		weight="1">
		<sprite>equipment/head/gmcap.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2934"
		image="equipment/head/cap.png"
		name="Cap"
		description="A hat with a peak to shield your eyes from the sun."
		defense="35"
		level="17"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/cap.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2935"
		image="equipment/head/tophat.png"
		name="Top Hat"
		description="For the gentry of Mana Worlds."
		defense="50"
		level="23"
		type="equip-head"
		weight="30">
		<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="2936"
		image="equipment/head/bowlerhat.png|W"
		name="Bowler Hat"
		description="A %Color% hat for those with a bit of class."
		defense="40"
		level="20"
		type="equip-head"
		colors="simple"
		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="2937"
		image="equipment/head/chefhat.png"
		name="Chef Hat"
		description="A tall hat designed for the person in charge of a kitchen. It smells like onions."
		defense="110"
		level="8"
		type="equip-head"
		weight="30">
		<sprite>equipment/head/chefhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2938"
		image="equipment/head/captaincap.png"
		name="Captain Cap"
		description="A hat worn by the bravest captains."
		defense="110"
		level="8"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/captaincap.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2939"
		image="equipment/head/candorheadband.png"
		name="Candor Head Band"
		description="Classical Candor head band."
		defense="18"
		level="9"
		type="equip-head"
		weight="23">
		<sprite>equipment/head/candorheadband.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2940"
		image="equipment/head/graduationcap.png"
		name="Graduation Cap"
		description="A nice graduation cap."
		effect="SP Regen +5%"
		defense="27"
		level="50"
		type="equip-head"
		weight="35">
		<sprite>equipment/head/graduationcap.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2941"
		image="equipment/head/vikinghelmet.png"
		name="Viking Helmet"
		description="Every good viking has one."
		defense="1"
		level="1"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/vikinghelmet.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2942"
		image="equipment/head/centurionhelmet.png"
		name="Centurion Helmet"
		description="Worn primarily by centurions."
		defense="1"
		level="1"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/centurionhelmet.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2943"
		image="equipment/head/alphamouboohead.png"
		name="Alpha Mouboo Head"
		description="You murderer!"
		defense="1"
		level="1"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/alphamouboohead.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2944"
		image="equipment/head/sailorhat.png"
		name="Sailor Hat"
		description="A very common wear amongst sailors."
		defense="1"
		level="1"
		type="equip-head"
		weight="22">
		<sprite gender="unisex">equipment/head/sailorhat.xml</sprite>
		<sprite gender="female">equipment/head/sailorhat-female.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2945"
		image="equipment/head/corsairhat.png"
		name="Corsair Hat"
		description="Watch out, there is a sniper nearby!"
		defense="1"
		level="1"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/corsairhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2946"
		image="equipment/neck/eyepatch.png"
		name="Right Eye Patch"
		description="A cool eye patch! You'll see 50% less with this!"
		defense="3"
		level="16"
		type="equip-head"
		weight="22">
		<sprite>equipment/head/righteyepatch.xml</sprite>
	</item>
	<item id="2983"
		image="equipment/head/serfhat.png"
		name="Serf Hat"
		description="A very comfortable serf hat."
		defense="38"
		level="15"
		type="equip-head"
		weight="420">
		<sprite>equipment/head/serfhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2984"
		image="error.png"
		name="NPC Eyes"
		description="A set of blinking eyes which NPCs use. Perfect for sleeping in class without anyone noticing."
		defense="-100"
		level="150"
		type="equip-head"
		weight="200">
		<sprite>equipment/head/human-eye-blink.xml</sprite>
	</item>
	<item id="2985"
		image="equipment/head/eggshellhat.png|W:#2A9409,70BA59,ACF696"
		name="Green Eggshell Hat"
		description="A novelty hat shaped like an eggshell half."
		defense="55"
		level="23"
		type="equip-head"
		weight="460">
		<sprite>equipment/head/eggshellhat.xml|#2A9409,70BA59,ACF696</sprite>
	</item>
	<item id="2986"
		image="equipment/head/eggshellhat.png|W:#9B5D00,E17828,F7B37E"
		name="Orange Eggshell Hat"
		description="A novelty hat shaped like an eggshell half."
		defense="55"
		level="20"
		type="equip-head"
		weight="460">
		<sprite>equipment/head/eggshellhat.xml|#9B5D00,E17828,F7B37E</sprite>
	</item>
	<item id="2987"
		image="equipment/head/eggshellhat.png|W:#111111,222222,333333,444444,555555,666666"
		name="Dark Eggshell Hat"
		description="A novelty dark hat shaped like an eggshell half."
		defense="60"
		level="30"
		effect="Defense +15 during Easter"
		type="equip-head"
		weight="460">
		<sprite>equipment/head/eggshellhat.xml|#111111,222222,333333,444444,555555,666666</sprite>
	</item>
	<item id="2988"
		image="equipment/head/admcap.png"
		name="Admin Cap"
		description="A cap which identifies you as an ADMIN. Only administrator's can wear this."
		defense="100"
		type="equip-head">
		<sprite>equipment/head/admcap.xml</sprite>
		<replace sprite="hair">
			<item from="-5" to="-4"/>
			<item from="-14" to="-9"/>
			<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2989"
		image="equipment/head/devcap.png"
		name="DEV Cap"
		description="A cap which identifies you as a DEV. Only developer's can wear this."
		defense="40"
		type="equip-head">
		<sprite>equipment/head/devcap.xml|#22ff22,ffffff;#9999ff</sprite>
		<replace sprite="hair">
			<item from="-5" to="-4"/>
			<item from="-14" to="-9"/>
			<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2990"
		image="equipment/head/magictophat.png"
		name="Magic Top Hat"
		description="Probably not the best way to stay hidden."
		defense="25"
		effect="flee -80%; Defense -50%; HP 30000"
		type="equip-head"
		weight="800">
		<sprite>equipment/head/magictophat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2991"
		image="equipment/head/minerhat.png"
		name="Miner Hat"
		description="A hat used by miners."
		defense="44"
		level="29"
		type="equip-head"
		weight="245">
		<sprite>equipment/head/minerhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
	<item id="2992"
		image="equipment/head/murderercrown.png|W:#343434,ababab;R:#003300,00FF00;G:#29758A,9BDBEC"
		name="Murderer Crown"
		description="Royal blood has been shed for the ownership of this crown."
		defense="35"
		level="10"
		type="equip-head"
		weight="250">
		<sprite>equipment/head/murderercrown.xml|#343434,ababab;#003300,00FF00;#29758A,9BDBEC</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-14" to="-9"/>
	<item from="-15" to="-19"/>
		</replace>
	</item>
		<item id="2993"
		image="equipment/head/fluffyhat.png"
		name="Fluffy Hat"
		description="How many fluffy did you kill for that!!!"
		defense="39"
		level="22"
		type="equip-head"
		weight="410">
		<sprite>equipment/head/fluffyhat.xml</sprite>
		<replace sprite="hair">
	<item from="-5" to="-4"/>
	<item from="-13" to="-27"/>
	<item from="-23" to="-27"/>
		</replace>
	</item>
	<item id="2994"
		image="equipment/head/piratebandana.png"
		name="Pirate Bandana"
		description="A rare bandana worn by some dangerous pirates."
		defense="36"
		level="28"
		type="equip-head"
		weight="38">
		<sprite gender="unisex">equipment/head/piratebandana.xml</sprite>
		<sprite gender="female">equipment/head/piratebandana.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="2995"
		image="equipment/head/papaerbag.png"
		name="Paper Bag"
		description="You looks totally crazy!"
		defense="40"
		type="equip-head"
		weight="12">
		<sprite>equipment/head/paperbag.xml</sprite>
		<replace sprite="hair">
		<item from="-5" to="-4"/>
		<item from="-14" to="-9"/>
		<item from="-15" to="-19"/>
		</replace>
	</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>
	<item id="3201"
		image="equipment/neck/monocle.png"
		name="Monocle"
		description="A handy perception tool, even when not at the opera."
		defense="50"
		level="3"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/monocle.xml</sprite>
		<sprite gender="female">equipment/neck/monocle.xml</sprite>
	</item>
	<!-- FIXME incorrect XML/PNG files
	<item id="3202"
		image="equipment/neck/mustache.png"
		name="Moustache"
		description="Nobody will recognise you with this! It comes without warranty, though."
		defense="1"
		level="3"
		type="equip-neck"
		weight="1">
		<sprite gender="unisex">equipment/neck/mustache.xml</sprite>
		<sprite gender="female">equipment/neck/mustache.xml</sprite>
	</item>
	<item id="3203"
		image="equipment/neck/beard.png"
		name="Beard"
		description="Only real men have one."
		level="3"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/beard.xml</sprite>
		<sprite gender="female">equipment/neck/beard.xml</sprite>
	</item>
	-->
	<item id="3204"
		image="equipment/neck/eyepatch.png"
		name="Left Eye Patch"
		description="Arr! What's a pirate with two eyes? A not-pirate! Ar Arr!"
		defense="3"
		level="16"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/eyepatch.xml</sprite>
		<sprite gender="female">equipment/neck/eyepatch.xml</sprite>
	</item>
	<item id="3205"
		image="equipment/neck/goggles.png"
		name="Googles"
		description="Goggles designed to take care of your eyes."
		defense="6"
		level="40"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/goggles.xml</sprite>
		<sprite gender="female">equipment/neck/goggles.xml</sprite>
	</item>
	<item id="3206"
		image="equipment/neck/heartglasses.png"
		name="Heart Glasses"
		description="Heart Glasses from another universe. Decisions were different there."
		defense="50"
		level="3"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/heartglasses.xml</sprite>
		<sprite gender="female">equipment/neck/heartglasses.xml</sprite>
	</item>
	<!-- FIXME incorrect XML/PNG files
	<item id="3207"
		image="equipment/neck/rednose.png"
		name="Red Nose"
		description="A funny red nose. You look like a Christmas reinboo with it!"
		defense="50"
		level="3"
		type="equip-neck"
		weight="22"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/rednose.xml</sprite>
		<sprite gender="female">equipment/neck/rednose.xml</sprite>
	</item>
	-->
	<item id="3208"
		image="equipment/neck/burglarmask.png"
		name="Burglar Mask"
		description="Marry very well with a crowbar."
		defense="4"
		level="40"
		type="equip-neck"
		weight="26"
		drawAfter="torso">
		<sprite gender="unisex">equipment/neck/burglarmask.xml</sprite>
		<sprite gender="female">equipment/neck/burglarmask.xml</sprite>
	</item>

	<!-- Weapons -->
	<item id="3500"
		image="equipment/weapons/knife.png"
		name="Knife"
		description="A simple, but efficient knife."
		attack="50"
		attack-range="1"
		level="5"
		type="equip-1hand"
		attack-action="attack"
		weight="120">
		<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="Bug Slayer"
		description="Jesusalva introduced another bug!! We must slay it!"
		attack="150"
		attack-range="1"
		level="25"
		type="equip-1hand"
		attack-action="attack"
		weight="1600">
		<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="Short Gladius"
		description="A short sword made for close combat."
		attack="175"
		attack-range="1"
		level="30"
		type="equip-1hand"
		attack-action="attack"
		weight="1058">
		<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="132"
		attack-range="1"
		level="20"
		type="equip-1hand"
		attack-action="attack"
		weight="450">
		<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 symbol of Artis on its brass hilt."
		attack="800"
		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/sharpknife.png"
		name="Sharp Knife"
		description="a sharp knife perfect for cut meat."
		attack="75"
		attack-range="1"
		level="10"
		type="equip-1hand"
		attack-action="attack"
		weight="130">
		<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="3506"
		image="equipment/weapons/rustyknife.png"
		name="Rusty Knife"
		description="A lost knife."
		attack="25"
		attack-range="1"
		type="equip-1hand"
		attack-action="attack"
		weight="50">
		<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="3507"
		image="equipment/weapons/dagger.png"
		name="Dagger"
		description="Use to stab."
		attack="100"
		attack-range="1"
		level="15"
		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="3508"
		image="equipment/weapons/boneknife.png"
		name="Bone Knife"
		description="A knife made from bones. Quite effective."
		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="3509"
		image="equipment/weapons/rockknife.png"
		name="Rock Knife"
		description="A rock solid 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="3510"
		image="equipment/weapons/smallknife.png"
		name="Small Knife"
		description="A tiny knife."
		attack="35"
		attack-range="1"
		level="3"
		type="equip-1hand"
		attack-action="attack"
		weight="70">
		<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="3511"
		image="equipment/weapons/divinesword.png"
		name="Divine Sword"
		description="As the name suggests, it is divine."
		attack="200"
		attack-range="1"
		level="25"
		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="3512"
		image="equipment/weapons/butcherknife.png"
		name="Butcher Knife"
		description="Usually found in a butchery, yet it can also be found at murderer's hands."
		attack="200"
		attack-range="1"
		level="25"
		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="3513"
		image="equipment/weapons/ancientsword.png"
		name="Ancient Sword"
		description="Its so old that no one knows when it was created."
		attack="200"
		attack-range="1"
		level="25"
		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="3514"
		image="equipment/weapons/icegladius.png"
		name="Ice Gladius"
		description="A sword with a shimmering blue blade."
		attack="200"
		attack-range="1"
		level="25"
		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="3515"
		image="equipment/weapons/setzer.png"
		name="Setzer"
		description="A knife named after a famous gambler."
		attack="200"
		attack-range="1"
		level="25"
		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="3516"
		image="equipment/weapons/longsword.png"
		name="Long Sword"
		description="It has a very long blade."
		attack="200"
		attack-range="1"
		level="25"
		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>
	<!-- Note: Could use critical-hit-effect-id -->
	<item id="3517"
		image="equipment/weapons/staffoflife.png"
		name="Thunder Staff ★★★"
		description="Jesusalva's courtesy, impairs holy lightning over your foes!"
		attack="100"
		mattack="25"
		attack-range="2"
		effect="Secret Item"
		level="40"
		hit-effect-id="312"
		miss-effect-id="50"
		type="equip-2hand"
		weight="1000">
		<sprite>equipment/weapons/piouslayer.xml</sprite>
		<sound event="hit">weapons/piouslayer/hit1.ogg</sound>
		<sound event="miss">weapons/piouslayer/miss1.ogg</sound>
	</item>
	<!-- cast Magnum Break on attack. "to Saves" is not a typo, but an Easter Egg -->
	<item id="3518"
		image="equipment/weapons/divinesword.png|W:#ff0000"
		name="Judgement ★★★"
		description="Sometimes, to Saves the ones you like, you must judge the ones you don't."
		attack="100"
		effect="Splash damage and knockback effect"
		level="24"
		critical-hit-effect-id="312"
		hit-effect-id="312"
		miss-effect-id="50"
		type="equip-1hand"
		weight="1000">
		<sprite>equipment/weapons/lidersword.xml</sprite>
		<sound event="hit">weapons/piouslayer/hit1.ogg</sound>
		<sound event="miss">weapons/piouslayer/miss1.ogg</sound>
	</item>
	<item id="3519"
		image="equipment/weapons/staffoflife.png"
		name="Dark Pulsar ★★★"
		description="This awful blade will seep your enemies life force like a knife cuts butter. Or at least, this is what they told me."
		attack="100"
		mattack="25"
		effect="Work In Progress"
		level="60"
		type="equip-1hand"
		weight="1000">
		<sprite>equipment/weapons/kurogane.xml</sprite>
		<sound event="hit">weapons/piouslayer/hit1.ogg</sound>
		<sound event="miss">weapons/piouslayer/miss1.ogg</sound>
	</item>
	<item id="3520"
		image="equipment/weapons/bronzegladius.png"
		name="Bronze Gladius"
		description="A short sword made of bronze for lucky adventurer."
		attack="125"
		attack-range="1"
		level="22"
		type="equip-1hand"
		attack-action="attack"
		weight="840">
		<sprite>equipment/weapons/traininggladius.xml</sprite>
		<sound event="hit">weapons/piouslayer/hit1.ogg</sound>
		<sound event="miss">weapons/piouslayer/miss1.ogg</sound>
	</item>
	<!-- Pets -->
	<item id="4000"
		image="usable/piouegg.png"
		name="Piou egg"
		description="Piou egg. Not for omelettes!"
		type="generic"
		useButton="Hatch"
		weight="300"
	/>
	<item id="4001"
		image="usable/bhopegg.png"
		name="Bhopper egg"
		description="Whaaaaaat, it is a lucky Bhopper Egg! With proper care, this pet will increase your luck!"
		type="generic"
		useButton="Hatch"
		weight="1000"
	/>
	<item id="4002"
		image="usable/maggotcocoon.png"
		name="Maggot Cocoon"
		description="Hey, this cocoon is really rare!"
		type="generic"
		useButton="Hatch"
		weight="520"
	/>

	<!-- Cards -->
	<item id="5000"
		image="usable/dye.png|S:#3c3c3c,3e1e28,4d4d4d,6f2630,686868,a6313f,919191,d15b5b,b6b6b6,e59b77,dfdfdf,efe0c1"
		name="Crimson Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="21"
		maxFloorOffset="15"/>
	<item id="5001"
		image="usable/dye.png|S:#3c3c3c,302525,4d4d4d,4a3430,686868,69453a,919191,96664c,b6b6b6,bf8d67,dfdfdf,e6c19c"
		name="Chocolate Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="22"
		maxFloorOffset="15"/>
	<item id="5002"
		image="usable/dye.png|S:#3c3c3c,35313d,4d4d4d,443f4f,686868,485c6b,919191,50918f,b6b6b6,75c7a8,dfdfdf,c3e8c4"
		name="Mint Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="23"
		maxFloorOffset="15"/>
	<item id="5003"
		image="usable/dye.png|W:#111111,222222,333333,444444,555555,aaaaaa"
		name="Black Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="2"
		maxFloorOffset="15"/>
	<item id="5004"
		image="usable/dye.png|W:#44494b,797a7e,b9bbc1"
		name="Silver Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="3"
		maxFloorOffset="15"/>
	<item id="5005"
		image="usable/dye.png|W:#594d36,b49b6c,f4d293"
		name="Camel Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="4"
		maxFloorOffset="15"/>
	<item id="5006"
		image="usable/dye.png|W:#3f221d,754d23,f5cea4"
		name="Brown Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="5"
		maxFloorOffset="15"/>
	<item id="5007"
		image="usable/dye.png|W:#831f2d,f07401,f8cc8b"
		name="Orange Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="6"
		maxFloorOffset="15"/>
	<item id="5008"
		image="usable/dye.png|W:#6a0022,7c151a,c60022"
		name="Dark Red Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="7"
		maxFloorOffset="15"/>
	<item id="5009"
		image="usable/dye.png|W:#580000,a40000,c02020,ff6060"
		name="Red Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="8"
		maxFloorOffset="15"/>
	<item id="5010"
		image="usable/dye.png|W:#620e48,bf1b8b,e32bcf,ffb6f7"
		name="Fuchsia Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="9"
		maxFloorOffset="15"/>
	<item id="5011"
		image="usable/dye.png|W:#a92d42,f67189,ffbac7"
		name="Pink Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="10"
		maxFloorOffset="15"/>
	<item id="5012"
		image="usable/dye.png|W:#640088,b350e0,ecb7ff"
		name="Mauve Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="11"
		maxFloorOffset="15"/>
	<item id="5013"
		image="usable/dye.png|W:#3c1554,6d3195,c987d1"
		name="Purple Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="12"
		maxFloorOffset="15"/>
	<item id="5014"
		image="usable/dye.png|W:#0d1430,21337c,4363e5"
		name="Navy Blue Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="13"
		maxFloorOffset="15"/>
	<item id="5015"
		image="usable/dye.png|W:#2d2d41,4c4d9a,7b7b99"
		name="Blue Gray Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="14"
		maxFloorOffset="15"/>
	<item id="5016"
		image="usable/dye.png|W:#16486e,498ec5,e4f2fc"
		name="Blue Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="15"
		maxFloorOffset="15"/>
	<item id="5017"
		image="usable/dye.png|W:#196253,18986c,37cf7d"
		name="Teal Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="16"
		maxFloorOffset="15"/>
	<item id="5018"
		image="usable/dye.png|W:#115511,22aa22,99dd99"
		name="Green Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="17"
		maxFloorOffset="15"/>
	<item id="5019"
		image="usable/dye.png|W:#547000,a5dc00,d1ff46"
		name="Lime Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="18"
		maxFloorOffset="15"/>
	<item id="5020"
		image="usable/dye.png|W:#002504,2d551b,07871d"
		name="Khaki Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="19"
		maxFloorOffset="15"/>
	<item id="5021"
		image="usable/dye.png|W:#846211,dab333,fffb93,ffffff"
		name="Yellow Dye"
		useButton="Dye"
		description="Color dye that can be used on clothing."
		type="card"
		weight="1"
		cardColor="20"
		maxFloorOffset="15"/>
	<item id="5022"
		image="usable/necromancercard.png"
		name="Necromancer Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5023"
		image="usable/herocard.png"
		name="Hero Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5024"
		image="usable/crusadercard.png"
		name="Crusader Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5025"
		image="usable/paladincard.png"
		name="Paladin Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5026"
		image="usable/forestcard.png"
		name="Forest Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5027"
		image="usable/oldurcard.png"
		name="Oldur Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5028"
		image="usable/slidecard.png"
		name="Slide Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5029"
		image="usable/naturalcard.png"
		name="Natural Card"
		description="A powerful card."
		effect="Prints an error"
		type="card"
		weight="5"/>
	<item id="5030"
		image="usable/oldurcard.png"
		name="Desert Thief Card"
		description="This magic card made of dried sand can be placed in certain type of glove to bring you some powers."
		effect="Attack Speed +1%"
		type="card"
		weight="4"/>
	<!-- TEST RING CARD -->
	<item id="5031"
		image="generic/diamond.png"
		name="Polished Diamond"
		useButton="Insert"
		description="A polished gemstone."
		vit="2"
		type="card"
		cardColor="2"
		weight="4"/>
	<item id="5032"
		image="generic/ruby.png"
		name="Polished Ruby"
		useButton="Insert"
		description="A polished gemstone."
		str="2"
		type="card"
		cardColor="3"
		weight="4"/>
	<item id="5033"
		image="generic/amethyst.png"
		name="Polished Amethyst"
		useButton="Insert"
		description="A polished gemstone."
		dex="2"
		type="card"
		cardColor="4"
		weight="4"/>
	<item id="5034"
		image="generic/sapphire.png"
		name="Polished Sapphire"
		useButton="Insert"
		description="A polished gemstone."
		int="2"
		type="card"
		cardColor="5"
		weight="4"/>
	<item id="5035"
		image="generic/topaz.png"
		name="Polished Topaz"
		useButton="Insert"
		description="A polished gemstone."
		agi="2"
		type="card"
		cardColor="6"
		weight="4"/>
	<item id="5036"
		image="generic/emerald.png"
		name="Polished Emerald"
		useButton="Insert"
		description="A polished gemstone."
		luck="2"
		type="card"
		cardColor="7"
		weight="4"/>

	<!-- Bows -->
	<item id="6000"
		image="equipment/weapons/woodenbow.png"
		name="Wooden Bow"
		description="For the unexperienced bowman."
		attack="70"
		attack-range="5"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="15"
		type="equip-2hand"
		attack-action="attack_bow"
		weight="260">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6001"
		image="equipment/weapons/trainingbow.png"
		name="Training Bow"
		description="For bow training. Does not seem much reliable."
		attack="20"
		attack-range="5"
		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="160">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6002"
		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="4"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="25"
		type="equip-2hand"
		attack-action="attack_bow"
		weight="260">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6003"
		image="equipment/weapons/forestbow.png"
		name="Forest Bow"
		description="A big bow, to hunt monsters in the forest."
		attack="140"
		attack-range="5"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="40"
		type="equip-2hand"
		attack-action="attack_bow"
		weight="480">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6004"
		image="equipment/weapons/championshipbow.png"
		name="Championship Bow"
		description="A great bow which only champions are allowed to use."
		attack="180"
		attack-range="6"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="80"
		type="equip-2hand"
		attack-action="attack_bow"
		weight="520">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6005"
		image="equipment/weapons/desertbow.png"
		name="Desert Bow"
		description="The best bow of Toonori. Light, yet powerful."
		attack="160"
		attack-range="6"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="60"
		type="equip-2hand"
		attack-action="attack_bow"
		weight="400">
		<sprite>equipment/weapons/woodenbow.xml</sprite>
	</item>
	<item id="6006"
		image="equipment/weapons/bansheebow.png"
		name="Banshee Bow"
		description="Need to banish something? Do not fret, use the Banshee Bow!"
		attack="210"
		attack-range="7"
		missile-particle="graphics/particles/training-arrow.xml"
		missile-z="32"
		missile-lifetime="500"
		missile-speed="5"
		missile-diedistance="3"
		level="100"
		type="equip-2hand"
		attack-action="attack_bow"
		effect="None"
		weight="890">
		<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="20"
		weight="1"/>
   <item id="6501"
		image="equipment/ammo/tolchiarrow.png"
		name="Tolchi Arrow"
		description="a basic arrow."
		type="equip-ammo"
		attack="10"
		weight="1"/>
   <item id="6502"
		image="equipment/ammo/arrow.png"
		name="Arrow"
		description="an arrow used at archery."
		type="equip-ammo"
		attack="30"
		weight="1"/>
   <item id="6503"
		image="equipment/ammo/cursedarrow.png"
		name="Cursed Arrow"
		description="A cursed arrow"
		type="equip-ammo"
		attack="60"
		weight="1"/>
   <item id="6504"
		image="equipment/ammo/ironarrow.png"
		name="Iron Arrow"
		description="An arrow made from iron"
		type="equip-ammo"
		attack="45"
		weight="1"/>
   <item id="6505"
		image="equipment/ammo/poisonarrow.png"
		name="Poison Arrow"
		description="A normal arrow diped in poison"
		type="equip-ammo"
		attack="90"
		weight="2"/>
   <item id="6506"
		image="equipment/ammo/thornarrow.png"
		name="Thorn Arrow"
		description="Take care when handling it to don't hurt yourself."
		type="equip-ammo"
		attack="160"
		weight="1"/>
   <item id="6507"
		image="equipment/ammo/bonearrow.png"
		name="Bone Arrow"
		description="A bone-breaker arrow."
		type="equip-ammo"
		attack="350"
		weight="5"/>
	<item id="7420"
		image="usable/acorn.png"
		name="Acorn Of Death"
		description="You died, and all you got was this nasty acorn!"
		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>
</items>