summaryrefslogtreecommitdiff
path: root/items/usable.xml
blob: 502a673966118e31dfee99cadc982b7e176e2822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
<?xml version="1.0"?>
<items>
  <item id="501"
        image="use/potions/a.png|G:#22ff22"
        name="Cactus Drink"
        description="A fresh drink."
        type="usable"
        hp="15"
        weight="4"
        tag="Potions"
  />
  <item id="502"
        image="use/potions/a.png|G:#ff2222"
        name="Cactus Potion"
        description="A fresh potion."
        type="usable"
        hp="25"
        weight="7"
        tag="Potions"
  />
  <item id="506"
        image="use/food/candycane.png"
        name="Candy Cane"
        description="Tasty candy cane."
        type="usable"
        hp="5"
        weight="1"
  />
  <item id="508"
        image="use/food/xmascake.png"
        name="Xmas Cake"
        description="A sweet xmas cake."
        type="usable"
        hp="10"
        weight="1"
  />
  <item id="509"
        image="use/food/chocolatebar.png|W:#441e00,b36e36"
        name="Chocolate Bar"
        description="A chocolate bar made of finest chocolate."
        type="usable"
        hp="20"
        weight="1"
  />
  <item id="510"
        image="use/food/candy.png"
        name="Candy"
        description="A sugar-free candy."
        type="usable"
        hp="5"
        weight="1"
  />
  <item id="512"
        image="use/food/gingerbreadman.png"
        name="Ginger Bread Man"
        description="A tasty ginger bread man."
        type="usable"
        hp="25"
        weight="1"
  />
  <item id="513"
        image="use/food/cake.png"
        name="Cake"
        description="A slice of cake."
        type="usable"
        hp="15"
        weight="1"
  />
  <item id="514"
        image="use/food/xmascandycane.png"
        name="Xmas Candy Cane"
        description="A special xmas candy cane."
        type="usable"
        hp="10"
        weight="1"
  />
  <item id="519"
        image="use/food/cherrycake.png"
        name="Cherry Cake"
        description="A nice cherry cake."
        type="usable"
        hp="35"
        weight="1"
  />
  <item id="520"
        image="use/food/easteregg.png"
        name="Easter Egg"
        description="A surprise."
        type="usable"
        hp="100"
        weight="1"
  />
  <item id="527"
        image="use/food/milk.png"
        name="Milk"
        description="A fresh litre of ice cold milk. Note: Cool people drink milk!"
        type="usable"
        hp="150"
        weight="5"
  />
  <item id="533"
        image="use/food/roastedmaggot.png"
        name="Roasted Maggot"
        description="A maggot roasted on fire."
        type="usable"
        hp="150"
        weight="5"
  />
  <item id="534"
        image="use/food/orangecupcake.png"
        name="Orange Cupcake"
        description="A very soft orange cupcake."
        type="usable"
        hp="100"
        weight="5"
  />
  <item id="535"
        image="use/food/apple.png|R:#ff3600;Y:#ffc000;G:#66cc33"
        name="Red Apple"
        description="A healthy red apple."
        type="usable"
        hp="50"
        weight="5"
  />
  <item id="539"
        image="use/food/beer.png"
        name="Beer"
        description="A fresh beer."
        type="usable"
        hp="200"
        mp="5"
        weight="10"
  />
  <item id="541"
        image="use/food/water.png"
        name="Bottle of Water"
        description="A bottle of water."
        type="usable"
        hp="250"
        weight="10"
  />
  <item id="562"
        image="use/food/chickenleg.png"
        name="Chicken Leg"
        description="A well cooked chicken leg."
        type="usable"
        hp="500"
        weight="10"
  />
  <item id="565"
        image="generic/petal.png|W:#ee748d,ffd8ce"
        name="Pink Petal"
        description="A petal from an evil flower."
        type="usable"
        hp="50"
        weight="10"
  />
  <item id="566"
        image="generic/smallmushroom.png"
        name="Small Mushroom"
        description="A mushroom."
        type="usable"
        hp="50"
        weight="10"
  />
  <item id="567"
        image="use/potions/b.png|G:#c05000,f0a000,f0f09f"
        name="Iron Potion"
        description="Increases your attack strength."
        effect="Attack strength increase (temporary)."
        type="usable"
        weight="10"
        tag="Potions"
  />
  <item id="568"
        image="use/potions/c.png|G:#da69e5,ffdaff"
        name="Concentration Potion"
        description="Increases your attack speed."
        effect="Attack speed increase (temporary)."
        type="usable"
        weight="10"
        tag="Potions"
  />
  <item id="657"
        image="use/food/orange.png"
        name="Orange"
        description="A juicy orange."
        type="usable"
        hp="60"
        weight="7"
  />
  <item id="676"
        image="use/food/steak.png"
        name="Steak"
        description="A tasty piece of steak."
        type="usable"
        hp="250"
        weight="10"
  />
  <item id="684"
        image="use/potions/a.png|G:#b03678,ffffff"
        name="Tiny Healing Potion"
        description="A tiny healing potion made from brewed herbs."
        type="usable"
        hp="100"
        weight="5"
        tag="Potions"
  />
  <item id="685"
        image="use/potions/d.png|G:#b03678,ffffff"
        name="Small Healing Potion"
        description="A small healing potion made from brewed herbs."
        type="usable"
        hp="200"
        weight="10"
        tag="Potions"
  />
  <item id="686"
        image="use/potions/b.png|G:#b03678,ffffff"
        name="Medium Healing Potion"
        description="A medium healing potion made from brewed herbs."
        type="usable"
        hp="400"
        weight="15"
        tag="Potions"
  />
  <item id="687"
        image="use/potions/c.png|G:#b03678,ffffff"
        name="Large Healing Potion"
        description="A large healing potion made from brewed herbs."
        type="usable"
        hp="800"
        weight="25"
        tag="Potions"
  />
  <item id="705"
        image="use/potions/e.png|R:#f04030;G:#ee8e5e"
        name="Mana Potion"
        description="A dark, sirupy brew, with a smell reminiscent of manaberries."
        type="usable"
        mp="10"
        weight="50"
        tag="Potions"
        sellProtected="true"
  />
  <item id="714"
        image="use/food/snake-egg.png|W:#c0c0a0;R:#b09070;G:#b8a888"
        name="Snake Egg"
        description="An edible snake egg."
        type="usable"
        hp="30"
        weight="4"
  />
  <item id="715"
        image="use/food/snake-egg.png|W:#806020;R:#604010;G:#705018"
        name="Mountain Snake Egg"
        description="An edible mountain snake egg."
        type="usable"
        hp="40"
        weight="4"
  />
  <item id="716"
        image="use/food/snake-egg.png|W:#e0e0c0;R:#80f0a0;G:#b0e8b0"
        name="Grass Snake Egg"
        description="An edible grass snake egg."
        type="usable"
        hp="50"
        weight="4"
  />
  <item id="717"
        image="use/food/snake-egg.png|W:#c0c0c0;R:#c090c0;G:#c0a8c0"
        name="Cave Snake Egg"
        description="An edible cave snake egg."
        type="usable"
        hp="20"
        weight="4"
  />
  <item id="719"
        image="use/food/apple.png|R:#73E600;Y:#c1f102;G:#66cc33"
        name="Green Apple"
        description="A healthy green apple."
        type="usable"
        hp="45"
        weight="5"
  />
  <item id="733"
        image="use/potions/e.png|R:#fff0ff;G:#d0c09f"
        name="Purification Potion"
        description="A transparent, odorless liquid that feels strangely lighter than water."
        type="usable"
        mp="0"
        weight="15"
        tag="Potions"
  />
  <item id="736"
        image="use/food/bigcake.png|R:#ede5b2,fff7bf;G:#cccccc,ffffff"
        name="White Cake"
        description="A delicious white cake. Would go good with strawberries."
        type="usable"
        hp="10"
        weight="10"
  />
  <item id="737"
        image="use/food/bigcake.png|R:#9e6e3b,e39d52;G:#e29f57;W:#ffd5a8"
        name="Chocolate Cake"
        description="A scrumptious chocolate cake. Real chocolate guaranteed."
        type="usable"
        hp="11"
        weight="10"
  />
  <item id="738"
        image="use/food/bigcake.png|R:#fed079,ffffff;G:#fed079,ffffff,ffffff;W:#856200,e68e00,ffa600"
        name="Orange Cake"
        description="A tangy orange cake. Made from real oranges."
        type="usable"
        hp="12"
        weight="10"
  />
  <item id="739"
        image="use/food/bigcake.png|R:#ccc599,fff8ED;G:#ffbaba,fffefe;W:#d91a1a,ff8f8f"
        name="Apple Cake"
        description="A crisp apple cake. Real apple pieces inside!"
        type="usable"
        hp="12"
        weight="10"
  />
  <item id="743"
        image="use/food/acorn.png"
        name="Acorn"
        description="An acorn."
        type="usable"
        hp="3"
        weight="1"
  />
  <item id="744"
        image="use/potions/c.png|G:#e7a4ed,f6cff5"
        name="Diluted Concentration Potion"
        description="A bottle of diluted concentration potion."
        effect="Attack speed increase (temporary)."
        type="usable"
        weight="10"
        tag="Potions"
  />
  <item id="745"
        image="use/potions/c.png|G:#ff4aff"
        name="Dark Concentration Potion"
        description="This potion smells like burnt sugar."
        effect="Attack speed increase (temporary)."
        type="usable"
        weight="10"
        tag="Potions"
  />
  <item id="746"
        image="use/potions/e.png|R:#a0a0ff;G:#20409f"
        name="Mopox Cure Potion"
        description="A gooey brew with a vile smell, supposedly able to cure Mopox."
        type="usable"
        weight="5"
        tag="Potions"
  />
  <item id="747"
        image="use/food/bigcake.png|R:#9e6e3b,e39d52;G:#e29f57;W:#ffd5a8"
        name="Laced Chocolate Cake"
        description="A scrumptious chocolate cake, with a dash of Mopox Cure Potion."
        type="usable"
        hp="11"
        weight="10"
  />
  <item id="748"
        image="use/food/orangecupcake.png"
        name="Laced Orange Cupcake"
        description="A very soft orange cupcake, laced with Mopox cure potion."
        type="usable"
        hp="100"
        weight="5"
  />
  <item id="750"
        image="use/potions/c.png|G:#f0f040,ffffff"
        name="Slow Poison Potion"
        description="A yellow potion with a fresh, citric scent."
        effect="Suspends poison."
        type="usable"
        hp="5"
        weight="10"
        tag="Potions"
  />
  <item id="784"
        image="use/food/zombie-nachos.png"
        name="Zombie Nachos"
        description="The flavor is in the brains."
        type="usable"
        hp="60"
        weight="5"
  />
  <item id="785"
        image="use/food/lady-fingers.png"
        name="Lady Fingers"
        description="Made with simulated lady fingers."
        type="usable"
        hp="40"
        weight="5"
  />
  <item id="786"
        image="use/food/jello.png"
        name="Slime Jell-Ahh"
        description="Finally, an edible form of slime!"
        type="usable"
        hp="50"
        weight="5"
  />
  <item id="787"
        image="use/food/snapple.png"
        name="Snapple"
        description="Bite it before it bites you!"
        type="usable"
        hp="70"
        weight="5"
  />
  <item id="788"
        image="use/food/juice.png"
        name="Beetle Juice"
        description="Thirst quencing and nutritious!"
        type="usable"
        hp="50"
        weight="5"
  />
  <item id="789"
        image="use/food/skull-mug.png"
        name="Gut Buster Ale"
        description="If you can survive the first gulp, the rest goes down smooth."
        type="usable"
        hp="60"
        weight="5"
  />
  <item id="790"
        image="use/food/wine.png"
        name="Blood Wine"
        description="A good vintage."
        type="usable"
        hp="100"
        weight="5"
  />
  <item id="808"
        image="use/others/warp-towel.png"
        name="Hitchhiker's Towel"
        description="An inconspicuous towel."
        type="usable"
        effect="A strange way of travelling. Cooldown: 20 minutes"
        weight="20"
        sellProtected="true"
  />
  <item id="809"
        image="use/others/warp-towel.png|W:#5e7480,f1ffff,ffffff"
        name="White Hitchhiker's Towel"
        description="An inconspicuous white towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="810"
        image="use/others/warp-towel.png|W:#581a1a,a41111,c03a3a,ff6060"
        name="Red Hitchhiker's Towel"
        description="An inconspicuous red towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="811"
        image="use/others/warp-towel.png|W:#1f9c1f,89d689"
        name="Green Hitchhiker's Towel"
        description="An inconspicuous green towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="812"
        image="use/others/warp-towel.png|W:#4b4bbd,888af4"
        name="Blue Hitchhiker's Towel"
        description="An inconspicuous blue towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="813"
        image="use/others/warp-towel.png|W:#ccb534,f1ea8e,ffffaa"
        name="Yellow Hitchhiker's Towel"
        description="An inconspicuous yellow towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="814"
        image="use/others/warp-towel.png|W:#530a7c,b362e1,ca87ef"
        name="Purple Hitchhiker's Towel"
        description="An inconspicuous purple towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="815"
        image="use/others/warp-towel.png|W:#80280f,b04810,ef681f,ffb830"
        name="Orange Hitchhiker's Towel"
        description="An inconspicuous orange towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="816"
        image="use/others/warp-towel.png|W:#bf369b,f25cb1,ff87b7,ffcccf"
        name="Pink Hitchhiker's Towel"
        description="An inconspicuous pink towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="817"
        image="use/others/warp-towel.png|W:#4ee2ec"
        name="Teal Hitchhiker's Towel"
        description="An inconspicuous teal towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="818"
        image="use/others/warp-towel.png|W:#41a317"
        name="Lime Hitchhiker's Towel"
        description="An inconspicuous lime towel."
        effect="A strange way of travelling. Cooldown: 20 minutes"
        type="usable"
        weight="30"
        sellProtected="true"
  />
  <item id="825"
        image="use/potions/a.png|G:#3636b0,ffffff"
        name="Tiny Mana Elixir"
        description="A tiny mana potion made from brewed, powerful items."
        type="usable"
        mp="25"
        weight="5"
        tag="Potions"
  />
  <item id="826"
        image="use/potions/d.png|G:#3636b0,ffffff"
        name="Small Mana Elixir"
        description="A small mana potion made from brewed, powerful items." 
        type="usable"
        mp="50"
        weight="10"
        tag="Potions"
  />
  <item id="827"
        image="use/potions/b.png|G:#3636b0,ffffff"
        name="Medium Mana Elixir"
        description="A medium mana potion made from brewed, powerful items."
        type="usable"
        mp="100"
        weight="15"
        tag="Potions"
  />
  <item id="828"
        image="use/potions/c.png|G:#3636b0,ffffff"
        name="Large Mana Elixir"
        description="A large mana potion made from brewed, powerful items."
        type="usable"
        mp="250"
        weight="25"
        tag="Potions"
  />
  <item id="838"
        image="use/food/lollipop2.png|W:#ff5a7d,ff92a9,ffffff;R:#ff0338"
        name="Cranberry Lollipop"
        description="A lollipop with cranberry flavor."
        type="usable"
        hp="750"
        weight="1"
  />
  <item id="839"
        image="use/food/lollipop2.png|W:#a32de7,c18fde,ffffff;R:#a200ff"
        name="Grape Lollipop"
        description="A lollipop with grape flavor."
        type="usable"
        hp="750"
        weight="1"
  />
  <item id="840"
        image="use/food/lollipop2.png|W:#f4950d,f4be40,ffffff;R:#ff9600"
        name="Orange Lollipop"
        description="A lollipop with orange flavor."
        type="usable"
        hp="750"
        weight="1"
  />
 <item id="1189"
        image="use/food/snake-egg.png|W:#ffffff;R:#ffffff;G:#ffffff"
        name="Pollett Egg"
        description="Mmm.. A nice treat."
        type="usable"
        hp="75"
        mp="10"
        weight="1"
  />
  <item id="1229"
        image="use/food/caramelapple.png"
        name="Caramel Apple"
        description="A caramel coated apple, complete with stick. Rots teeth, tastes good."
        type="usable"
        hp="1000"
        weight="5"
  />
  <item id="1230"
        image="use/food/lollipop.png|W:#2502d6"
        name="Booberry Blue Lollipop"
        description="A lollipop. Mmm."
        type="usable"
        hp="800"
        weight="1"
  />
  <item id="1231"
        image="use/food/lollipop.png|W:#00ba16"
        name="Ghastly Green Lollipop"
        description="A lollipop. Tasty."
        type="usable"
        hp="800"
        weight="1"
  />
  <item id="1232"
        image="use/food/lollipop.png|W:#e00418"
        name="Blood Red Lollipop"
        description="A lollipop. Yum."
        type="usable"
        hp="800"
        weight="1"
  />
  <item id="1248"
        image="use/food/blueberries.png"
        name="Blueberries"
        description="Near to bursting with sweet juice."
        type="usable"
        hp="200"
        weight="6"
  />
  <item id="1250"
        image="use/food/pear.png"
        name="Pear"
        description="Juicy, crunchy, and delicious."
        type="usable"
        hp="150"
        weight="7"
  />
  <item id="1251"
        image="use/food/plum.png"
        name="Plum"
        description="A plum that is both sweet and sour."
        type="usable"
        hp="100"
        weight="10"
  />
  <item id="1252"
        image="use/food/cherry.png"
        name="Cherry"
        description="A small but delectable cherry."
        type="usable"
        hp="50"
        weight="5"
  />
  <item id="1253"
        image="use/food/golden-apple.png"
        name="Golden Delicious Apple"
        description="A golden apple. Taken from a tree of many fruits from a distant world."
        type="usable"
        hp="200"
        weight="30"
  />
  <item id="1258"
        image="use/food/honey.png"
        name="Gluten-Free Honey"
        description="A sweet food made by certain insects using nectar from flowers."
        type="usable"
        hp="45"
        weight="20"
  />
  <item id="1280"
        image="generic/scissors.png"
        name="Scissors"
        description="A pair of awkward and unwieldy scissors."
        effect="A dangerous barber."
        type="usable"
        weight="120"
        sellProtected="true"
  />
  <item id="1281"
        image="use/food/shock-candy.png"
        name="Shock Sweet"
        description="It'll turn your hair white!"
        type="usable"
        weight="5"
  />
  <item id="3001"
        image="generic/rubberbat.png"
        name="Rubber Bat"
        description="Squeaks when you squeeze it."
        type="usable"
        weight="30"
  />
  <item id="3006"
        image="use/food/tonoridelight.png"
        name="Tonori Delight"
        description="A softly-scented jelly-like treat, dusted with the sweet white sands of Eastern Tonori."
        type="usable"
        hp="10"
        mp="2"
        weight="2"
  />
  <item id="3007"
        image="use/food/marshmallow.png"
        name="Marshmallow"
        description="Flavoured with real marshmallow root."
        type="usable"
        hp="10"
        weight="2"
  />
  <item id="3009"
        image="use/food/jellyskull.png"
        name="Jelly Skull"
        description="Like a jelly bean, but in the shape of skull."
        type="usable"
        hp="10"
        weight="2"
  />
  <item id="3010"
        image="use/food/candypumpkin.png"
        name="Candy Pumpkin"
        description="With a squishy interior inside a hard, crunchy shell, this sweet has a warm and delicious pumpkin flavour."
        type="usable"
        hp="10"
        weight="2"
  />
  <item id="4035"
        image="use/food/pickled_beets.png"
        name="Pickled Beets"
        description="The result of a radically unorthodox approach to the art of pickling vegetables."
        type="usable"
        hp="50"
        weight="150"
  />
  <item id="4036"
        image="use/food/acornroasted.png"
        name="Roasted Acorn"
        description="This acorn was roasted with a tasty Iron Potion icing."
        type="usable"
        hp="15"
        weight="1"
  />
  <item id="5210"
        image="use/food/tonoridelight.png|S:#6b1f1f,777777,ffb7b7,e5e5e5,ff5b5b,c3c3c3,ff8989,d4d4d4,bf4b4b,a6a6a6,9f2525,8d8d8d"
        name="Grass-Fed Tofu"
        description="Chock-full of omega-6 fatty acids."
        type="usable"
        hp="-10"
        mp="-2"
        weight="2"
  />
  <item id="5213"
        image="use/food/water.png"
        name="Vegan Water"
        description="A bottle of cruelty-free water."
        type="usable"
        hp="250"
        weight="10"
  />
  <item id="5214"
        image="use/food/acornroasted.png"
        name="Lactose-Free Acorn"
        description="An acorn. No milk added."
        type="usable"
        hp="15"
        weight="1"
  />
  <item id="5235"
        image="generic/presentbox.png"
        name="TMW Birthday Gift"
        description="TMW turned 15! Open it to see what you got"
        type="usable"
        weight="0"
        sellProtected="true"
  />
  <item id="5236"
        image="use/food/sex-candy.png"
        name="Gumi Candy"
        description="Something feels off with this candy."
        type="usable"
        weight="0"
  />
  <item id="5237"
        image="use/food/caramelcandy.png"
        name="Caramel Candy"
        description="Prsm's favorite."
        type="usable"
        hp="350"
        weight="0"
  />
  <item id="5263"
        image="use/potions/love.png"
        name="Love Potion"
        description="To make your loved one to stare only at you!"
        type="usable"
        weight="0"
  />
  <item id="5267"
        image="use/scrolls/scroll-alizarin.png"
        name="Alizarin Scroll"
        description="Scroll with natural power; summons a plant if read."
        effect="Summons Alizarin Plant"
        type="usable"
        weight="2"
        tag="Scrolls"
  />
  <item id="5268"
        image="use/scrolls/scroll-cobalt.png"
        name="Cobalt Scroll"
        description="Scroll with natural power; summons a plant if read."
        effect="Summons Cobalt Plant"
        type="usable"
        weight="2"
        tag="Scrolls"
  />
  <item id="5269"
        image="use/scrolls/scroll-gamboge.png"
        name="Gamboge Scroll"
        description="Scroll with natural power; summons a plant if read."
        effect="Summons Gamboge Plant"
        type="usable"
        weight="2"
        tag="Scrolls"
  />
  <item id="5270"
        image="use/scrolls/scroll-mauve.png"
        name="Mauve Scroll"
        description="Scroll with natural power; summons a plant if read."
        effect="Summons Mauve Plant"
        type="usable"
        weight="2"
        tag="Scrolls"
  />
  <item id="5271"
        image="use/scrolls/scroll-joy.png"
        name="Joyplim Scroll"
        description="A very funny scroll. Read it, and be amused!"
        effect="Forces some Emote on players"
        type="usable"
        weight="2"
        tag="Scrolls"
  />
  <item id="5277"
        image="use/others/bigpumpkinseed.png"
        name="Christmas Seeds"
        description="Decoration and instant growth covered by the insurance policy."
        effect="Plants Christmas Trees - only on designed zone"
		useButton="Plant"
        type="usable"
        weight="1"
  />
</items>