-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathitems.xml
4672 lines (4635 loc) · 163 KB
/
items.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="items.xsl"?>
<!-- Authors: 4144, Alige, Piman, Reid
Copyright (C) 2010-2015 Evol Online
Copyright (C) 2016-2017 The Mana World -->
<!--
New organization (04/12/11).
-0 -99 = Hairstyles
-100 -infinity = Races
30 500 = Weapon Animations
501 699 = Usable Items
700 999 = Generic Items
1000 1099 = Necklaces
1100 1199 = Rings
1200 1299 = Charms
1300 1799 = Chest Armors
1800 1999 = Boots
2000 2199 = Gloves
2200 2499 = Pants
2500 2699 = Wings
2700 2899 = Shields
2900 3199 = Head Gears
3200 3499 = Neck Armors
3500 3999 = Weapons
4000 4999 = Pets
5000 5999 = Cards
6000 6999 = Bows
7000 7999 = Arrows
8000 8499 = LEGACY merge items, generic or usable
Colors for dyeable equipments or items are now set up by itemcolors.xml.
-->
<items>
<!-- Hairstyles -->
<item id="-1" type="hairsprite" name="Bald">
<sprite>hairstyles/hairstyle01.xml</sprite>
</item>
<item id="-2" type="hairsprite" name="Bowl Cut" colors="hairS">
<sprite>hairstyles/hairstyle02.xml</sprite>
</item>
<item id="-3" type="hairsprite" name="Combed Back" colors="hairS">
<sprite>hairstyles/hairstyle03.xml</sprite>
</item>
<item id="-4" type="hairsprite" name="Emo" colors="hairS">
<sprite>hairstyles/hairstyle04.xml</sprite>
</item>
<item id="-5" type="hairsprite" name="Mohawk" colors="hairS">
<sprite>hairstyles/hairstyle05.xml</sprite>
</item>
<item id="-6" type="hairsprite" name="Pompadour" colors="hairS">
<sprite>hairstyles/hairstyle06.xml</sprite>
</item>
<item id="-7" type="hairsprite" name="Center Parting" colors="hairS">
<sprite>hairstyles/hairstyle07.xml</sprite>
</item>
<item id="-8" type="hairsprite" name="Long and Slick" colors="hair">
<sprite>hairstyles/hairstyle08.xml</sprite>
</item>
<item id="-9" type="hairsprite" name="Short and Curly" colors="hair">
<sprite>hairstyles/hairstyle09.xml</sprite>
</item>
<item id="-10" type="hairsprite" name="Pigtails" colors="hair">
<sprite>hairstyles/hairstyle10.xml</sprite>
</item>
<item id="-11" type="hairsprite" name="Long and Curly" colors="hair">
<sprite>hairstyles/hairstyle11.xml</sprite>
</item>
<item id="-12" type="hairsprite" name="Parted" colors="hair">
<sprite>hairstyles/hairstyle12.xml</sprite>
</item>
<item id="-13" type="hairsprite" name="Perky Ponytail" colors="hairS">
<sprite>hairstyles/hairstyle13.xml</sprite>
</item>
<item id="-14" type="hairsprite" name="Wave" colors="hairS">
<sprite>hairstyles/hairstyle14.xml</sprite>
</item>
<item id="-15" type="hairsprite" name="Mane" colors="hairS">
<sprite>hairstyles/hairstyle15.xml</sprite>
</item>
<item id="-16" type="hairsprite" name="Bun" colors="hairS">
<sprite>hairstyles/hairstyle16.xml</sprite>
</item>
<item id="-17" type="hairsprite" name="Wavy" colors="hairS">
<sprite>hairstyles/hairstyle17.xml</sprite>
</item>
<item id="-18" type="hairsprite" name="Bunches" colors="hairS">
<sprite>hairstyles/hairstyle18.xml</sprite>
</item>
<item id="-19" type="hairsprite" name="Long Ponytail" colors="hairS">
<sprite>hairstyles/hairstyle19.xml</sprite>
</item>
<item id="-20" type="hairsprite" name="Infinitely Long" colors="hair">
<sprite>hairstyles/hairstyle20.xml</sprite>
</item>
<item id="-21" type="hairsprite" name="Choppy" colors="hair">
<sprite>hairstyles/hairstyle21.xml</sprite>
</item>
<item id="-22" type="hairsprite" name="Wild" colors="hair">
<sprite>hairstyles/hairstyle22.xml</sprite>
</item>
<item id="-23" type="hairsprite" name="Punk" colors="hairS">
<sprite>hairstyles/hairstyle23.xml</sprite>
</item>
<item id="-24" type="hairsprite" name="Imperial" colors="hairS">
<sprite>hairstyles/hairstyle24.xml</sprite>
</item>
<item id="-25" type="hairsprite" name="Side Strand" colors="hairS">
<sprite>hairstyles/hairstyle25.xml</sprite>
</item>
<item id="-26" type="hairsprite" name="Messy" colors="hairS">
<sprite>hairstyles/hairstyle26.xml</sprite>
</item>
<item id="-27" type="hairsprite" name="Flat Ponytail" colors="hairS">
<sprite>hairstyles/hairstyle27.xml</sprite>
</item>
<item id="-28" type="hairsprite" name="Tapered Nape" colors="hairS">
<sprite>hairstyles/hairstyle28.xml</sprite>
</item>
<!-- Races -->
<item id="-100" type="racesprite" name="Kaizei Viro">
<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="Argaes Viro">
<sprite gender="unisex">races/human-male-medium.xml</sprite>
<sprite gender="female">races/human-female-medium.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="Tonori Viro">
<sprite gender="unisex">races/human-male-dark.xml</sprite>
<sprite gender="female">races/human-female-dark.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="Cave 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="-104" type="racesprite" name="Mountain Ukar">
<sprite gender="unisex">races/ukar-male-pink.xml</sprite>
<sprite gender="female">races/ukar-female-pink.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="Sea 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>
<item id="-106" type="racesprite" name="Lake Tritan">
<sprite gender="unisex">races/tritan-male-purple.xml</sprite>
<sprite gender="female">races/tritan-female-purple.xml</sprite>
<sound event="hit">weapons/barehands/hit1.ogg</sound>
<sound event="miss">weapons/barehands/miss1.ogg</sound>
</item>
<item id="-107" type="racesprite" name="Light Raijin">
<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="-108" type="racesprite" name="Dark 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="-109" type="racesprite" name="Fire Kralog">
<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="-110" type="racesprite" name="Frost Kralog">
<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>
<!-- Special Races -->
<item id="-150" type="racesprite" name="Piou">
<sprite gender="unisex">races/piou-unisex.xml</sprite>
<sound event="hit">monsters/piou/hit1.ogg</sound>
<sound event="miss">monsters/piou/miss1.ogg</sound>
</item>
<!-- Usable Items -->
<item id="501"
image="usable/acorn.png"
name="Acorn"
description="A natural food, ingredient, bait or seed."
useButton="Eat"
effect="Heal 12-18 HP"
type="usable"
weight="3"
maxFloorOffset="10">
<inventory>
<menu
name1="Eat"
command1="useinv 'INVINDEX'"
name2="Eat"
/>
<menu
name1="Plant"
command1="useinv 'INVINDEX' 1"
name2="Plant"
/>
</inventory>
</item>
<item id="502"
image="usable/bread.png"
name="Bread"
description="A baked food, ingredient or bait."
useButton="Eat"
effect="Heal 25-40 HP"
type="usable"
weight="25"/>
<item id="503"
image="usable/fungus.png"
name="Fungus"
description="A peculiar food, ingredient or remedy against poison."
useButton="Eat"
effect="Damage -5%; Defense +5%; Heal 25-35 HP"
type="usable"
weight="8"
maxFloorOffset="9"/>
<item id="504"
image="usable/cheese.png"
name="Cheese"
description="A yummy food, ingredient or bait."
useButton="Eat"
effect="Heal 30-50 HP"
type="usable"
weight="3"/>
<item id="505"
image="usable/pioulegs.png"
name="Piou Legs"
description="A tender food, ingredient or bait."
useButton="Eat"
effect="Heal 7-13 HP"
type="usable"
weight="4"/>
<item id="506"
image="usable/lettuceleaf.png"
name="Lettuce Leaf"
description="A healthy food, ingredient or bait."
useButton="Eat"
effect="Heal 15-25 HP"
type="usable"
weight="1"/>
<item id="507"
image="usable/piberries.png"
name="Piberries"
description="The famous staining fruit."
useButton="Eat"
effect="Heal 12-23 HP"
type="usable"
weight="2"/>
<item id="508"
image="usable/drops.png|S:#898989,7287a0,aeaeae,96abc6,cecece,bccce0,e5e5e5,dce4ee"
name="Sea Drops"
description="Yucky drops of salt water."
useButton="Drink"
effect="Headache; Heal 10-20 HP"
type="usable"
weight="4"/>
<item id="509"
image="usable/aquada.png"
name="Aquada"
description="A nutritious fruit of the sea."
useButton="Eat"
effect="Heal 75-100 HP"
type="usable"
weight="16"/>
<item id="510"
image="usable/blobime.png|S:#686868,695977,919191,9f79a9,bababa,d69ec0,dcdcdc,eccddf"
name="Pink Blobime"
description="Yucky pink mucus of little blub."
useButton="Eat"
effect="Headache; Heal 2-6 HP"
type="usable"
weight="10"/>
<item id="511"
image="usable/blobime.png|S:#686868,4e4e86,919191,7966b0,bababa,a384d5,dcdcdc,d7b9ea"
name="Purple Blobime"
description="Stinky purple mucus of blub."
useButton="Eat"
effect="Stomach ache; Heal 30-70 HP"
type="usable"
weight="10"/>
<item id="512"
image="usable/croconut-half.png"
name="Half Croconut"
description="Its inside seems delicious."
useButton="Eat"
effect="Heal 65-90 HP"
type="usable"
weight="38"
maxFloorOffset="10"/>
<item id="513"
image="usable/croconut.png"
name="Croconut"
description="Fallen from a crocotree, this fruit could be opened."
useButton="Open"
type="usable"
weight="80"/>
<item id="514"
image="usable/book-old.png"
name="Old Book"
description="A book that threatens to fall apart in your hands as you carefully browse the pages."
useButton="Read"
type="usable"
weight="25"/>
<item id="515"
image="usable/plushroom.png"
name="Plushroom"
description="A strange remedy of many possible uses."
useButton="Eat"
effect="Damage +5%; Heal 20-30 HP"
type="usable"
weight="8"/>
<item id="516"
image="usable/pumpkinseeds.png"
name="Pumpkin Seeds"
description="Yucky seeds that threaten to grow out-of-control."
useButton="Eat"
hp="1"
effect="Headache"
type="usable"
weight="1"/>
<item id="517"
image="usable/deliciouscookie.png"
name="Delicious Cookie"
description="This is a reward from the Cookie Master. Be careful before you eat it, its effects are unknown..."
useButton="Eat"
effect="Unknown"
type="equip-torso">
<replace />
<replace sprite="race">
<item from="-100" to="-150"/>
<item from="-101" to="-150"/>
<item from="-102" to="-150"/>
<item from="-103" to="-150"/>
<item from="-104" to="-150"/>
<item from="-105" to="-150"/>
<item from="-106" to="-150"/>
</replace>
</item>
<item id="518"
image="usable/urchinmeat.png"
name="Urchin Meat"
description="A seafood ingredient."
useButton="Eat"
effect="Heal 28-35 HP"
type="usable"
weight="1"/>
<item id="519"
image="usable/easteregg.png"
name="Easter Egg"
description="A chocolate shell covered in a very thin metal layer."
useButton="Eat"
effect="Heal 60-75 HP"
type="usable"
weight="10"/>
<item id="520"
image="usable/piberriesinfusion.png"
name="Piberries Infusion"
description="A potion made from piberries."
effect="Heal 110-130 HP"
useButton="Drink"
type="usable"
weight="15"/>
<item id="521"
image="usable/fatespotion.png"
name="Fate's Potion"
description="An effective blood-loss remedy."
effect="Heal 240-260 HP"
useButton="Drink"
type="usable"
weight="17"/>
<item id="522"
image="usable/clotholiquor.png"
name="Clotho Liquor"
description="Remedy used in feral warrior training sessions."
effect="Heal 575-625 HP"
useButton="Drink"
type="usable"
weight="16"/>
<item id="523"
image="usable/lachesisbrew.png"
name="Lachesis Brew"
description="Rare, powerful and restricted remedy."
effect="Heal 1100-1300 HP"
useButton="Drink"
type="usable"
weight="14"/>
<item id="524"
image="usable/atroposmixture.png"
name="Atropos Mixture"
description="The most advanced potion ever synthesized."
effect="Heal 2300-2550 HP"
useButton="Drink"
type="usable"
weight="15"/>
<item id="525"
image="usable/elixiroflife.png"
name="Elixir Of Life"
description="A potion able to restore even dead trees to life."
effect="Heal 10000 HP"
useButton="Eat"
type="usable"
weight="20"/>
<item id="526"
image="usable/shovel.png"
name="Iron Shovel"
useButton="Use"
description="Discover treasures, dungeons and raw materials."
type="usable"
weight="210"
maxFloorOffset="5"/>
<item id="527"
image="usable/pumpkinjuice.png"
name="Pumpkin Juice"
useButton="Use"
description="Blood-colored juice from madly swarming pumpkin."
effect="Heal 30-50 HP"
type="usable"
weight="5"
maxFloorOffset="15"/>
<item id="528"
image="usable/manana.png"
name="Manana"
useButton="Use"
description="A fast healing fruit."
effect="Heal 70-80 HP"
type="usable"
weight="10"
maxFloorOffset="6"/>
<item id="529"
image="usable/curshroom.png"
name="Curshroom"
description="A strange remedy of many possible uses, cures poison."
useButton="Eat"
effect="Damage per second +10; Heal 40-50 HP"
type="usable"
weight="10"
maxFloorOffset="6"/>
<item id="530"
image="usable/carrot.png"
name="Carrot"
description="Good in various recipes."
useButton="Eat"
effect="Heal 20-30 HP"
type="usable"
weight="3"
maxFloorOffset="6"/>
<item id="531"
image="usable/wine.png"
name="Red Plush Wine"
description="Wine produced from black grapes in the south-east of Aurora."
effect="Confusion"
useButton="Drink"
type="usable"
weight="10"/>
<item id="532"
image="usable/book-pioufluffy.png"
name="Piou and The Fluffy"
description="This story is a warning against listening to flattery."
useButton="Read"
type="usable"
weight="25"/>
<item id="533"
image="usable/book-poem.png"
name="Poem about Poems"
description="A heart touching poem written by Nard."
useButton="Read"
type="usable"
weight="20"/>
<item id="534"
image="usable/book-chorus.png"
name="Chorus of the Woods"
description="This poem was written centuries ago and is from the ancient city of Keshlam."
useButton="Read"
type="usable"
weight="25"/>
<item id="535"
image="usable/book-comtheory.png"
name="Communication Theory"
description="Various meta explanations regarding the dialogue system."
useButton="Read"
type="usable"
weight="20"/>
<item id="536"
image="usable/book-chorus.png"
name="Fluffy Animals who Love Their Owners"
description="A quick guide to introduce pet caring."
useButton="Read"
type="usable"
weight="20"/>
<item id="537"
image="usable/book-laws.png"
name="The Book of Laws"
description="The basic laws respected and upheld in all parts of Gasaron."
useButton="Read"
type="usable"
weight="10"/>
<item id="538"
image="usable/book-fishing.png"
name="Fishing Guide Vol. I"
description="A small book that covers the basics of fishing."
useButton="Read"
type="usable"
weight="25"/>
<item id="539"
image="usable/book-cooking.png"
name="Recipe Book"
description="A small book with all the culinary wonders you have collected."
useButton="Read"
type="usable"
weight="20"/>
<item id="540"
image="usable/book-pioufluffy.png"
name="Master Book"
description="The book which knows all mana secrets, reserved only for masters."
useButton="Read"
type="usable"
weight="20"/>
<item id="560"
image="usable/sandwich-carp.png"
name="Carp Sandwich"
useButton="Eat"
description="A yummy sandwich, made with a fresh carp."
effect="Heal 800 - 1200 HP, increases hit rate."
type="usable"
weight="25"
maxFloorOffset="6"/>
<item id="561"
image="usable/sandwich-pioulegs.png"
name="Piouleg Sandwich"
useButton="Eat"
description="A typical Artis food. How can you just eat these little Pious?"
effect="Heal 1000 - 1500 HP, increases hit rate."
type="usable"
weight="25"
maxFloorOffset="6"/>
<item id="562"
image="usable/sandwich-manana.png"
name="Manana Sandwich"
useButton="Eat"
description="A veggie sandwich, for those who like it."
effect="Heal 1200 - 1800 HP, increases hit rate."
type="usable"
weight="25"
maxFloorOffset="6"/>
<item id="563"
image="usable/beer.png"
name="Beer"
useButton="Eat"
description="Just a beer, nothing else. Don`t drink and drive!"
effect="Confusion"
type="usable"
weight="50"
maxFloorOffset="6"/>
<item id="564"
image="usable/roastedmaggot.png"
name="Roasted Maggot"
useButton="Eat"
description="a maggot, roasted on fire. Mmh, crunchy!"
effect="Heal 100-250 HP"
type="usable"
weight="5"
maxFloorOffset="6"/>
<item id="565"
image="usable/bottleofwater.png"
name="Bottle of Water"
useButton="Eat"
description="Fresh springwater from Hurnscald area. Healthy!"
effect="Heal 70-100 HP"
type="usable"
weight="25"
maxFloorOffset="6"/>
<item id="566"
image="usable/cake-cherry.png"
name="Cherry Cake"
useButton="Eat"
description="If you like sweets, you will love this homemade cherry cake."
effect="Heal 20-35 HP"
type="usable"
weight="10"
maxFloorOffset="6"/>
<item id="567"
image="usable/maggotslimepotion.png"
name="Maggot Slime Potion"
description="Eek, it is a slimy potion! Seems suspcious!"
effect="Heal 10-130 HP"
useButton="Drink"
type="usable"
weight="15"/>
<item id="600"
image="usable/potion1.png|W:#b6322c,fe8b70,f4d2be"
name="Small Healing Potion"
description="A small Healing Potion for little wounds."
effect="Heal 250 HP"
useButton="Drink"
type="usable"
weight="32"/>
<item id="601"
image="usable/potion2.png|W:#b6322c,fe8b70,f4d2be"
name="Medium Healing Potion"
description="A medium Healing Potion for painful wounds. Slightly addictive, handle with care."
effect="Heal 500 HP"
useButton="Drink"
type="usable"
weight="64"/>
<item id="602"
image="usable/potion3.png|W:#b6322c,fe8b70,f4d2be"
name="Large Healing Potion"
description="A large Healing Potion. To countermand involuntary amputations."
effect="Heal 1000 HP"
useButton="Drink"
type="usable"
weight="128"/>
<item id="603"
image="usable/potion1.png|W:#16486e,498ec5,e4f2fc"
name="Small Mana Potion"
description="A small Mana Potion for 'Not-at-all-a-Mage' players."
effect="Heal 20 SP"
useButton="Drink"
type="usable"
weight="32"/>
<item id="604"
image="usable/potion2.png|W:#16486e,498ec5,e4f2fc"
name="Medium Mana Potion"
description="A medium Mana Potion for the Sorcerer's Apprentice."
effect="Heal 50 SP"
useButton="Drink"
type="usable"
weight="64"/>
<item id="605"
image="usable/potion3.png|W:#16486e,498ec5,e4f2fc"
name="Large Mana Potion"
description="A large Mana Potion for the magic Ones.."
effect="Heal 100 SP"
useButton="Drink"
type="usable"
weight="128"/>
<item id="606"
image="usable/potion4.png|W:#da69e5,ffdaff"
name="Concentration Potion"
description="A Potion to make you faster, and to make your attacks hit with higher accuracy."
effect="Higher Concentration."
useButton="Drink"
type="usable"
weight="128"/>
<item id="607"
image="usable/potion4.png|W:#c05000,f0a000,f0f09f"
name="Iron Potion"
description="This potion contains powderized Iron. It makes you strong and resistant against physical attacks."
effect="Higher Strength and Defense."
useButton="Drink"
type="usable"
weight="128"/>
<item id="608"
image="usable/potion5.png|W:#594d36,b49b6c,f4d293"
name="Fertility Potion"
description="A bottle containing some fertilizer, used for making soil fruitful again."
effect="Better dont drink it, it could be toxic."
useButton="Drink"
type="usable"
weight="128"/>
<item id="609"
image="usable/honey.png"
name="Honey"
description="A glass full of the finest honey. Enjoy it, and don't forget to thank the bees!"
effect="Heals some HP and SP."
useButton="Eat"
type="usable"
weight="250"/>
<item id="610"
image="usable/potiondeath.png|W:#580000,a40000,c02020,ff6060"
name="Death Potion"
description="Used for really powerful magic. You should not drink this!"
effect="Instakill."
useButton="Drink"
type="usable"
weight="512"/>
<item id="611"
image="usable/seeds-grass.png"
name="Grass Seeds"
description="Common seeds to plant clovers, as food for your Mouboos or for usual clover purposes."
type="usable"
useButton="Plant"
weight="3"
maxFloorOffset="2">
<inventory>
<menu
name1="Plant"
command1="useinv 'INVINDEX' 1"
name2="Plant"
/>
</inventory>
</item>
<item id="612"
image="usable/seeds-flower.png"
name="Flower Seeds"
description="If you like colorful places.. they need fertile soil so be careful where you plant them."
type="usable"
useButton="Plant"
weight="4"
maxFloorOffset="2">
<inventory>
<menu
name1="Plant"
command1="useinv 'INVINDEX' 1"
name2="Plant"
/>
</inventory>
</item>
<item id="613"
image="usable/potion5.png|W:#831f2d,f07401,f8cc8b"
name="Purification Potion"
description="A bottle containing a magical potion, to clean soil from evil sway."
useButton="Drink"
type="usable"
weight="128"/>
<item id="614"
image="usable/bowl-stew.png|W:#16486e,498ec5,e4f2fc"
name="Sailor's Stew"
description="A bowl containing a fine dish for sailors, makes you strong and sturdy."
effect="Max. HP +20%, Healing 2000 HP, HIT +5, VIT +3, AGI -3. Effect lasts for 3 minutes."
type="usable"
useButton="Eat"
weight="650"/>
<item id="615"
image="generic/map-treasure.png"
name="Treasure Map"
description="Points to a location where a valuable treasure may be bured. Perhaps you should try to find the place and dig there."
useButton="Read"
type="usable"
weight="14"/>
<item id="616"
image="usable/chocolatebar.png"
name="Chocolate Bar"
description="Sweet, sweet chocolate. Do not forget to brush your teeth after eating."
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="100"/>
<item id="617"
image="usable/mouboomilk.png"
name="Mouboo Milk"
description="Healthy milk."
effect="PLACEHOLDER"
useButton="Drink"
type="usable"
weight="200"/>
<item id="618"
image="usable/mouboosteak.png"
name="Mouboo Steak"
description="A huge steak from a Mouboo. Are you fine with killing animals to eat them?"
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="250"/>
<item id="619"
image="usable/roastedacorn.png"
name="Roasted Acorn"
description="A great snack, especially in wintertime."
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="50"/>
<item id="620"
image="usable/redapple.png"
name="Red Apple"
description="A non-poisoned, shiny red apple. Healthy, and yummy!"
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="100"/>
<item id="621"
image="usable/gift.png"
name="A Friend's Gift"
description="A gift from a friend, just for you! What might be inside?"
effect="PLACEHOLDER"
useButton="Open"
type="usable"
weight="50"/>
<item id="622"
image="usable/bowl-stew.png|W:#3f221d,754d23,f5cea4"
name="Squirrel Stew"
description="A bowl containing a fine dish made from cute Squirrels, very healthy. Also it makes you strong and sturdy."
effect="Max. HP +25%, Healing 2500 HP, VIT +5, AGI +3, DEX -3. Effect lasts for 4 minutes."
type="usable"
useButton="Eat"
weight="650"/>
<item id="623"
image="usable/bowl-stew.png|W:#6a0022,7c151a,c60022"
name="Mouboo Stew"
description="Its easy. Hunt a Mouboo, slaughter it, make a great healthy dish out of it."
effect="Max. HP +30%, Healing 3000 HP, VIT +5, DEX +3, AGI -3. Effect lasts for 5 minutes."
type="usable"
useButton="Eat"
weight="650"/>
<item id="624"
image="usable/squirrelmeat.png"
name="Squirrel Meat"
description="Edible parts of slaughtered Squirrels. Are you sure Squirrels are not way too cute to eat them?"
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="250"/>
<item id="625"
image="usable/plate-dish.png|W:#6a0022,7c151a,c60022;R:#115511,22aa22,99dd99"
name="Seafood Plate"
description="Nicely arranged plate with some seafood ingredients. Yummy?"
effect="Max. HP -5%, Healing 3000 HP, VIT +5, DEX +3, AGI -3. Effect lasts for 5 minutes."
type="usable"
useButton="Eat"
weight="400"/>
<item id="626"
image="usable/plate-dish.png|W:#6a0022,7c151a,c60022;R:#002504,2d551b,07871d"
name="Barbecue Plate"
description="The best way to prepare good meat is to make barbecue on an open fire."
effect="Max. HP +30%, Healing 3000 HP, VIT +5, DEX +3, AGI -3. Effect lasts for 5 minutes."
type="usable"
useButton="Eat"
weight="500"/>
<item id="627"
image="usable/plate-dish.png|W:#6a0022,7c151a,c60022;R:#22241d,3f6543,689c46,deeba3"
name="Veggie Plate"
description="Killing animals is unethical? Well, after all it is not needed for human nutrition. Yummy!"
effect="Max. HP +30%, Healing 3000 HP, VIT +5, DEX +3, AGI -3. Effect lasts for 5 minutes."
type="usable"
useButton="Eat"
weight="450"/>
<item id="628"
image="usable/blueberries.png"
name="Blueberries"
description="Tasty, healty little blue berries. Harvest in summer. Do not mix it up with deadly nightshades!"
effect="PLACEHOLDER"
useButton="Eat"
type="usable"
weight="30"/>
<item id="629"
image="usable/donut.png"
name="Donut"
description="Sweet chocolate donut. Do not eat too much, especially if you do not have your toothbrush with you."
effect="Healing 2250 HP, LUK +5, VIT +3. Effect lasts for 60 seconds."
type="usable"
useButton="Eat"
weight="100"/>
<item id="630"
image="usable/cake-blueberry.png"
name="Blueberry Cake"
description="Sweet cake made with blueberries. Comes with some cream."
effect="Healing 2000 HP, LUK +5, VIT +3. Effect lasts for 90 seconds."
type="usable"
useButton="Eat"
weight="150"/>
<item id="631"
image="usable/cake-carrot.png"
name="Carrot Cake"
description="Healthy, tasty carrot cake. Are you a rabbit, or what?"
effect="Healing 2700 HP, INT +5, DEX +3. Effect lasts for 120 seconds."
type="usable"
useButton="Eat"
weight="180"/>
<!-- Generic Items -->
<item id="700"
image="generic/smalltentacles.png"
name="Small Tentacles"
description="Colorful tentacles with poisonous barbs."
type="generic"
weight="5"
maxFloorOffset="12"/>
<item id="701"
image="generic/pioufeathers.png"
name="Piou Feathers"
description="Small feathers of an innocent little piou."
type="generic"
weight="1"
maxFloorOffset="8"/>
<item id="702"
image="generic/tortugashell-fragment.png"
name="Tortuga Shell Fragment"
description="Used to make tools and decorations."
type="generic"
weight="25"/>
<item id="703"
image="generic/eggshell-half.png"
name="Half Eggshell"
description="Maybe something hatched, or someone was cooked..."
type="generic"
weight="2"/>
<item id="704"
image="generic/rattotail.png"
name="Ratto Tail"
description="Hairless tail of a ratto."
type="generic"
weight="1"/>
<item id="705"
image="generic/teeth-ratto.png"
name="Ratto Teeth"
description="Sharp incisors of a ratto."
type="generic"
weight="1"/>
<item id="706"
image="generic/crocclaw.png"
name="Croc Claw"
description="It moves and pinches without its body."
type="generic"
weight="45"/>
<item id="707"
image="generic/squichyclaws.png"
name="Squichy Claws"
description="Claws from a wild Squichy."
type="generic"
weight="1"/>
<item id="708"
image="generic/tortugashell.png"
name="Tortuga Shell"
description="A symbol of shelter."
type="generic"
weight="95"/>
<item id="709"
image="generic/tongue.png"
name="Tortuga Tongue"
description="Adept to digesting blubs."
type="generic"
weight="2"
maxFloorOffset="12"/>
<item id="710"
image="generic/pearl.png"
name="Pearl"
description="A beautiful round and shiny pearl."
type="generic"
weight="1"
maxFloorOffset="11"/>
<item id="711"
image="generic/coral.png|S:#535353,693d41,808080,b44e4c,999999,da6858,b9b9b9,f1a082,d7d7d7,fbcbb3"
name="Coral"
description="Can indicate the health of oceanic ecosystems."
type="generic"
weight="10"
maxFloorOffset="9"/>
<item id="712"
image="generic/coral.png|S:#535353,473746,808080,5b5a84,999999,6c7ec6,b9b9b9,7eb1e0,d7d7d7,c2f6fa"
name="Blue Coral"
description="A coral dyed in blue by a blub."
type="generic"
weight="10"
maxFloorOffset="9"/>
<item id="713"
image="generic/box-fish.png"
name="Fish Box"
description="A wooden box full of fresh fish that Couwan gave you."
type="generic"
weight="1250"/>
<item id="714"
image="generic/letter-stamp.png"
name="Guild Certification"
description="This piece of paper grants you official permission to found a guild."
type="generic"
weight="1"
maxFloorOffset="4"/>
<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"/>