This repository has been archived by the owner on Nov 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitems.xml
executable file
·6438 lines (6392 loc) · 231 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"?>
<!--
Here are listed all the known items in The Mana World. This file defines
their name, icon, description, weight, etc. It also defines which sprite
to use in the case of visible equipment and which sounds to play on certain
events related to the item.
The 'weapon_type' attribute is kept for 0.0 client compatibility. Not to be
confused with 'weapon-type'.
-->
<items>
<version revision="$Revision$" />
<item id="-1" type="hairsprite" name="Flat ponytail"><sprite>hairstyles/hairstyle1.xml</sprite></item>
<item id="-2" type="hairsprite" name="Bowl cut"><sprite>hairstyles/hairstyle2.xml</sprite></item>
<item id="-3" type="hairsprite" name="Combed back"><sprite>hairstyles/hairstyle3.xml</sprite></item>
<item id="-4" type="hairsprite" name="Emo"><sprite>hairstyles/hairstyle4.xml</sprite></item>
<item id="-5" type="hairsprite" name="Mohawk"><sprite>hairstyles/hairstyle5.xml</sprite></item>
<item id="-6" type="hairsprite" name="Pompadour"><sprite>hairstyles/hairstyle6.xml</sprite></item>
<item id="-7" type="hairsprite" name="Center parting/Short and slick"><sprite>hairstyles/hairstyle7.xml</sprite></item>
<item id="-8" type="hairsprite" name="Long and slick"><sprite>hairstyles/hairstyle8.xml</sprite></item>
<item id="-9" type="hairsprite" name="Short and curly"><sprite>hairstyles/hairstyle9.xml</sprite></item>
<item id="-10" type="hairsprite" name="Pigtails"><sprite>hairstyles/hairstyle10.xml</sprite></item>
<item id="-11" type="hairsprite" name="Long and curly"><sprite>hairstyles/hairstyle11.xml</sprite></item>
<item id="-12" type="hairsprite" name="Parted"><sprite>hairstyles/hairstyle12.xml</sprite></item>
<item id="-13" type="hairsprite" name="Perky ponytail"><sprite>hairstyles/hairstyle13.xml</sprite></item>
<item id="-14" type="hairsprite" name="Wave"><sprite>hairstyles/hairstyle14.xml</sprite></item>
<item id="-15" type="hairsprite" name="Mane"><sprite>hairstyles/hairstyle15.xml</sprite></item>
<item id="-16" type="hairsprite" name="Bun"><sprite>hairstyles/hairstyle16.xml</sprite></item>
<!-- Treating the base sprite as equipment too will be useful when we
implement other playable races -->
<item id="-100" type="racesprite" name="Human">
<sprite gender="male">races/player_male_base.xml</sprite>
<sprite gender="female">races/player_female_base.xml</sprite>
</item>
<item id="-101" type="racesprite" name="Human">
<sprite gender="male">races/player_male_base_naked.xml</sprite>
<sprite gender="female">races/player_female_base_naked.xml</sprite>
</item>
<item id="16">
<!-- <sprite>equipment/weapons/weapon-dagger.xml</sprite>-->
</item>
<!-- TEMPORARY LOW WEAPON ID:S (< 256) -->
<item id="30"
weapon_type="1">
<sprite>equipment/weapons/weapon-dagger.xml</sprite>
<sound event="strike">weapons/swords/short-sword-miss1.ogg</sound>
<sound event="hit">weapons/swords/short-sword-hit1.ogg</sound>
</item>
<item id="31"
weapon_type="10">
<sprite>equipment/weapons/weapon-bow.xml</sprite>
<sound event="swing">weapons/bows/bow_shoot_1.ogg</sound>
</item>
<item id="32"
weapon_type="11">
<sprite>equipment/weapons/weapon-scythe.xml</sprite>
</item>
<item id="33"
weapon_type="1">
<sprite>equipment/weapons/weapon-dagger.xml</sprite>
<sound event="strike">weapons/swords/short-sword-miss1.ogg</sound>
<sound event="hit">weapons/swords/short-sword-hit1.ogg</sound>
</item>
<item id="34"
weapon_type="1"> <!-- magic fist -->
<sprite>equipment/weapons/weapon-fist.xml</sprite>
</item>
<item id="35"
weapon_type="11">
<sprite>equipment/weapons/weapon-staff.xml</sprite>
</item>
<item id="501"
image="generic/use-potion-tiny.png|G:#22ff22"
name="Kaktus Trank"
description="Ein frisches Getränk."
effect="+15 HP"
type="usable"
hp="15"
weight="4"
max-per-slot="10"/>
<item id="502"
image="generic/use-potion-tiny.png|G:#ff2222"
name="Großer Kaktus Trank"
description="Ein großes erfrischendes Getränk."
effect="+25 HP"
type="usable"
hp="25"
weight="7"
max-per-slot="10"/>
<item id="503"
image="generic/generic-casinocoins.png"
name="Kasino Chips"
description="Ein paar Casino Chips. James Bond lässt grüßen."
effect=""
type="generic"
weight="1"
max-per-slot="10"/>
<item id="504"
image="generic/use-food-decorcandy.png"
name="Deko Zuckerstange"
description="Deko vom letzten Tannenbaum."
effect=""
type="generic"
weight="1"
max-per-slot="10"/>
<item id="505"
image="generic/generic-maggotslime.png"
name="Madenschleim"
description="Schleimiger Madenschleim. Schleimiger als schleimig."
effect=""
type="generic"
weight="1"
max-per-slot="10"/>
<item id="506"
image="generic/use-food-candycane.png"
name="Zuckerstange"
description="Leckere Zuckerstangen."
effect="+5 HP"
type="usable"
hp="5"
weight="1"
max-per-slot="10"/>
<item id="507"
image="generic/generic-scorpionstinger.png|W:#a08040,e0e0e0"
name="Skorpionenstachel"
description="Ein giftiger Skorpionenstachel."
effect=""
type="generic"
weight="1"
max-per-slot="10"/>
<item id="508"
image="generic/use-food-xmascake.png"
name="Weihnachtskuchen"
description="Ein süßer Weihnachtskuchen. Ich hab zu Weihnachten zwar noch nie einen Kuchen gekriegt..."
effect="+10 HP"
type="usable"
hp="10"
weight="1"
max-per-slot="10"/>
<item id="509"
image="generic/use-food-chocolatebar.png|W:#441e00,b36e36"
name="Schokoladentafel"
description="Eine Tafel Schokolade. Made by little Oompa Loompas"
effect="+20 HP"
type="usable"
hp="20"
weight="1"
max-per-slot="10"/>
<item id="510"
image="generic/use-food-candy.png"
name="BonBon"
description="Eine zuckerfreie Süßigkeit."
effect="+5 HP"
type="usable"
hp="5"
weight="1"
max-per-slot="10"/>
<item id="511"
image="equipment/head/armor-head-santahat.png"
name="Santa Hut"
description="Frag Santa nach diesem Hut."
effect="+2% Defense"
type="equip-head"
weight="15"
defense="2"
max-per-slot="1">
<sprite>equipment/head/head-santahat.xml</sprite>
</item>
<item id="512"
image="generic/use-food-gingerbreadman.png"
name="Pfefferkuchenmann"
description="Ein leckerer Pfefferkuchenmann."
effect="+25 HP"
type="usable"
hp="25"
weight="1"/>
<item id="513"
image="generic/use-food-cake.png"
name="Kuchen"
description="Ein Kuchen."
effect="+15 HP"
type="usable"
hp="15"
weight="1"/>
<item id="514"
image="generic/use-food-xmascandycane.png"
name="Weihnachtszuckerstange"
description="Eine gebogene Weihnachtszuckerstange."
effect="+10 HP"
type="usable"
hp="10"
weight="1"/>
<item id="515"
image="generic/generic-purplepresentbox.png"
name="Lilanes Geschenk"
description="Da ist was Geheimnisvolles drinnen."
effect=""
type="generic"
weight="10"/>
<item id="516"
image="generic/generic-bluepresentbox.png"
name="Blaues Geschenk"
description="Da ist was Geheimnisvolles drinnen."
effect=""
type="generic"
weight="10"/>
<item id="517"
image="generic/generic-scorpionstinger.png|W:#e04040,f0f0f0"
name="Roter Skopionennstachel"
description="Ein extrem giftiger Stachel eines roten Skorpion."
effect=""
type="generic"
weight="1"/>
<item id="518"
image="generic/generic-bugleg.png"
name="Ein Beinchen"
description="Ein Beinchen. Meistens in der Alchemie Verwendet."
effect=""
type="generic"
weight="1"/>
<item id="519"
image="generic/use-food-cherrycake.png"
name="Kirschkuchen"
description="Ein leckerer Kirschkuchen."
effect="+35 HP"
type="usable"
hp="35"
weight="1"/>
<item id="520"
image="generic/use-food-easteregg.png"
name="Osterei"
description="Ein Geschenk. Immerhin erst ein Jahr alt."
effect="+100 HP"
type="usable"
hp="100"
weight="1"/>
<item id="521"
image="equipment/weapons/weapon-dagger-dagger.png"
name="Dolch"
description="Ein einfacher Dolch."
effect="+15 Damage, 1 Range"
type="equip-1hand"
weapon_type="1"
weight="20"
weapon-type="knife"
attack-min="5"
attack-delta="10"
attack-range="32"
max-per-slot="1">
<sprite>equipment/weapons/weapon-dagger.xml</sprite>
<sound event="strike">weapons/swords/short-sword-miss1.ogg</sound>
<sound event="hit">weapons/swords/short-sword-hit1.ogg</sound>
</item>
<item id="522"
image="equipment/weapons/weapon-dagger-sharpknife.png"
name="Scharfes Messer"
description="Ein sehr scharfes Messer. Schneide dich nicht daran!"
effect="+10 Damage, 1 Range"
type="equip-1hand"
weapon_type="1"
weight="15"
max-per-slot="1"
weapon-type="knife"
attack-min="8"
attack-delta="2"
attack-range="32"
view="521">
<sound event="strike">weapons/knives/sharpknife-miss1.ogg</sound>
</item>
<item id="523"
image="equipment/chest/armor-chest-leathershirt.png"
name="Leder-Shirt"
description="Ein Shirt gemacht aus dem härtesten Leder."
effect="+4% Defense"
type="equip-torso"
weight="20"
defense="4"
max-per-slot="1">
<sprite gender="male">equipment/chest/chest-leather-male.xml|#573a26,9e7654,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
<sprite gender="female">equipment/chest/chest-leather-female.xml|#412300,603100,8d4900;#ffff00</sprite>
</item>
<item id="524"
image="equipment/head/armor-head-fancyhat.png"
name="Hexen Hut"
description="Ein Hexenhut."
effect="+5% Defense"
type="equip-head"
weight="25"
defense="5"
max-per-slot="1">
<sprite>equipment/head/head-fancyhat.xml</sprite>
</item>
<item id="525"
image="equipment/head/armor-head-minershat.png"
name="Minenarbeiter-Helm"
description="Ein Helm von einem Minenarbeiter."
effect="+4% Defense"
type="equip-head"
weight="30"
defense="4"
max-per-slot="1">
<sprite>equipment/head/head-minershat.xml</sprite>
</item>
<item id="526"
image="generic/generic-coinbag.png"
name="Chips Tasche"
description="Eine Tasche um viele Chips zu verstauen."
effect=""
type="generic"
weight="5"
max-per-slot="1"/>
<item id="527"
image="generic/use-food-milk.png"
name="Milch"
description="Ein frischer Liter eiskalter Milch. Macht groß und stark."
effect="+150 HP"
type="usable"
hp="150"
weight="5"
max-per-slot="10"/>
<item id="528"
image="equipment/feet/armor-feet-boots.png|W:#4f2d29,c89078"
name="Schuhe"
description="Ein paar robuste Schuhe, ideal zum Wandern."
effect="+2% Defense"
type="equip-feet"
weight="80"
defense="2"
max-per-slot="1">
<sprite gender="male">equipment/feet/feet-boots-male.xml|#623a34,f0c2b4</sprite>
<sprite gender="female">equipment/feet/feet-boots-female.xml|#623a34,f0c2b4</sprite>
</item>
<item id="529"
image="equipment/weapons/weapon-arrow-iron.png"
name="Eisenpfeil"
description="Ein harter Pfeil aus Eisen."
effect="+50 Damage"
type="equip-ammo"
weight="1"
max-per-slot="100"/>
<item id="530"
image="equipment/weapons/weapon-bow-shortbow.png"
name="Kurzer Bogen"
description="Ein Bogen für kurze Distanzen."
effect="+50 Damage, 5 Range"
type="equip-2hand"
weapon_type="10"
weapon-type="bow"
attack-action="attack_bow"
missile-particle="graphics/particles/arrow.particle.xml"
weight="60"
max-per-slot="1"
damage-min="50"
damage-delta="0"
attack-range="160"
view="1200"/>
<item id="531"
image="equipment/hands/armor-hands-minergloves.png"
name="Minenarbeiter Handschuhe"
description="Handschuhe eines Minenarbeiters; sehr nützlich."
effect="+2% Defense"
type="equip-arms"
weight="20"
defense="2"
max-per-slot="1">
<sprite gender="male">equipment/hands/hands-gloves-generic-male.xml|#202020,505050</sprite>
<sprite gender="female">equipment/hands/hands-gloves-generic-female.xml|#202020,505050</sprite>
</item>
<item id="532"
image="equipment/hands/armor-hands-leathergloves.png"
name="Leder-Handschuhe"
description="Handschuhe aus sehr hartem Schlangenleder."
effect="+4% Defense"
type="equip-arms"
weight="30"
defense="4"
max-per-slot="1">
<sprite gender="male">equipment/hands/hands-gloves-generic-male.xml|#4e2e18,c8752f</sprite>
<sprite gender="female">equipment/hands/hands-gloves-generic-female.xml|#4e2e18,c8752f</sprite>
</item>
<item id="533"
image="generic/use-food-roastedmaggot.png"
name="Geröste Made"
description="Geröstete Made, nicht lecker, aber du bleibst am Leben."
effect="+150 HP"
type="usable"
hp="150"
weight="5"
max-per-slot="10"/>
<item id="534"
image="generic/use-food-orangecupcake.png"
name="Oranger Becherkuchen"
description="Ein weicher, leckerer Orangenbecherkuchen."
effect="+100 HP"
type="usable"
hp="100"
weight="5"
max-per-slot="10"/>
<item id="535"
image="generic/use-food-apple.png|R:#FF3600;Y:#FFC000;G:#66CC33"
name="Roter Apfel"
description="Ein großer roter Apfel. Keine böse Stiefmutter hatte ihre Finger dran."
effect="+50 HP"
script="apple.lua"
type="usable"
hp="50"
weight="5"
max-per-slot="10"/>
<item id="536"
image="equipment/weapons/weapon-dagger-shortsword.png"
name="Kurzes Schwert"
description="Ein kleines aber scharfes Schwert."
effect="+100 Damage, 1 Range"
type="equip-1hand"
weapon_type="2"
weight="100"
slot ="0"
weapon-type="sword"
attack-min="20"
attack-delta="30"
attack-range="32"
max-per-slot="1"
view="521"/>
<item id="537"
image="generic/generic-treasurekey.png"
name="Schlüssel"
description="Ein rustikaler Schüssel."
effect="Opens chests"
type="generic"
weight="5"
max-per-slot="10"/>
<item id="538"
image="generic/generic-greenpresentbox.png"
name="Grünes Geschenk"
description="Da ist was Geheimnisvolles drinnen."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="539"
image="generic/use-food-beer.png"
name="Bier"
description="Ein frisches Bier. Ozapft is."
effect="+200 HP"
type="usable"
hp="200"
weight="10"
max-per-slot="10"/>
<item id="540"
image="generic/generic-emptybottle.png"
name="Leere Flasche"
description="Eine feere Flasche."
effect=""
type="generic"
weight="1"
max-per-slot="10"/>
<item id="541"
image="generic/use-food-bottleofwater.png"
name="Wasser Flasche"
description="Eine Flasche voll mit Wasser."
effect="+250 HP"
type="usable"
hp="250"
weight="10"
max-per-slot="10"/>
<item id="542"
image="generic/generic-bottleofsand.png"
name="Flasche Sand"
description="Eine Flasche voll mit Sand."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="543"
image="equipment/head/armor-head-standardheadband.png|W:#291e16,99784c,d8bd86,ffffff"
name="Standard Kopfband"
description="Ein Kopfband."
effect="+3% Defense"
type="equip-head"
weight="10"
max-per-slot="1"
defense="3">
<sprite>equipment/head/head-standardheadband.xml|#563f25,99784c,d8bd86,ffffff</sprite>
</item>
<item id="544"
image="equipment/head/armor-head-silkheadband.png"
name="Seidenkopfband"
description="Ein cooles Kopfband gemacht aus Seide."
effect="+10% Defense"
type="equip-head"
weight="10"
defense="10"
max-per-slot="1">
<sprite>equipment/head/head-silkheadband.xml</sprite>
</item>
<item id="545"
image="equipment/weapons/weapon-bow-forestbow.png"
name="Waldbogen"
description="Ein Waldbogen, gemacht aus dem feinsten Holz."
effect="+70 Damage, 5 Range"
type="equip-2hand"
weapon_type="10"
weight="80"
max-per-slot="1"
weapon-type="bow"
attack-action="attack_bow"
missile-particle="graphics/particles/arrow.particle.xml"
attack-min="70"
attack-delta="0"
attack-range="160"
view="1200"/>
<item id="546"
image="equipment/chest/armor-chest-desertshirt.png"
name="Wüsten Shirt"
description="Ein Shirt das vor Sandstürmen schützt."
effect="+6% Defense"
type="equip-torso"
weight="30"
defense="6"
max-per-slot="1">
<sprite gender="male">equipment/chest/chest-leather-male.xml|#443c21,85794a,beb590,ffffff;#824035,d6a19a</sprite>
<sprite gender="female">equipment/chest/chest-leather-female.xml|#251e06,443c21,71653b,a0945e;#b6574a</sprite>
</item>
<item id="547"
image="equipment/weapons/weapon-polearm-bardiche.png"
name="Bardiche"
description="Eine Bardiche. Eine ungewöhnliche, unbekannte Waffe ohne deutsches Wort, wahrscheinlich."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="polearm"
weight="10"
attack-range="32"
max-per-slot="1"/>
<item id="548"
image="equipment/weapons/weapon-polearm-halberd.png"
name="Halberd"
description="Ein Halberd. Getragen und manchmal... gelegentlich... nie verwendet von Wachen."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="polearm"
weight="10"
attack-range="32"
max-per-slot="1"/>
<item id="549"
image="equipment/weapons/weapon-axe-axe.png"
name="Axt"
description="Eine Axt."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="axe"
weight="10"
attack-range="32"
max-per-slot="1"/>
<item id="550"
image="equipment/weapons/weapon-axe-blacksmithsaxe.png"
name="Axt eines Schmieds"
description="Die Axt eines Schmieds. Ist wohl seine Sache wofür er sie verwendet."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="axe"
weight="10"
attack-range="32"
max-per-slot="1"/>
<item id="551"
image="generic/generic-bluehint.png"
name="Blauer Hinweis"
description="Ein HInweis."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="552"
image="generic/generic-magentahint.png"
name="Magentafarbener Hinweis"
description="Ein Hinweis."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="553"
image="generic/generic-yellowhint.png"
name="Gelber Hinweis"
description="Ein Hinweis."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="554"
image="generic/generic-greenhint.png"
name="Grüner Hinweis"
description="Ein Hinweis."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="555"
image="generic/generic-tealhint.png"
name="Türkiser Hinweis"
description="Ein Hinweis."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="556"
image="generic/generic-purplehint.png"
name="Purple Hint"
description="A hint."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="557"
image="generic/generic-redhint.png"
name="Red Hint"
description="A hint."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="558"
image="generic/generic-otherbluehint.png"
name="Blue Hint"
description="A hint."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="559"
image="generic/generic-orangehint.png"
name="Orange Hint"
description="A hint."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="560"
image="generic/generic-greyhint.png"
name="Gray Hint"
description="A hint."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="561"
image="equipment/weapons/weapon-sword-sabre.png"
name="Säbel"
description="Ein Schwert mit einer sehr scharfen, gebogenen, dünen Klinge."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="10"
attack-range="32"
max-per-slot="1"/>
<item id="562"
image="generic/use-food-chickenleg.png"
name="Hühnchen Keule"
description="Ein gut gegartes Hühnerbein."
effect="+500 HP"
type="usable"
hp="500"
weight="10"
max-per-slot="10"/>
<item id="563"
image="equipment/hands/armor-hands-gloves.png|W:#a0a0a0,d0d0d0,ffffff,ffffff"
name="Winter-Handschuhe"
description="Ein paar weiche und warme Handschuhe."
effect="+3% Defense"
type="equip-arms"
weight="20"
defense="3"
max-per-slot="1">
<sprite gender="male">equipment/hands/hands-gloves-generic-male.xml|#202020,c0c0c0,ffffff,ffffff</sprite>
<sprite gender="female">equipment/hands/hands-gloves-generic-female.xml|#202020,c0c0c0,ffffff,ffffff</sprite>
</item>
<item id="564"
image="equipment/chest/armor-chest-tnecksweater.png|W:#A4B2B2,FFFFFF"
name="Rollkragenpullover"
description="Ein weicher und warmer Pullover."
effect="+6% Defense"
type="equip-torso"
weight="10"
defense="6"
max-per-slot="1">
<sprite gender="male">equipment/chest/chest-tnecksweater-male.xml|#A4B2B2,FFFFFF</sprite>
<sprite gender="female">equipment/chest/chest-tnecksweater-female.xml|#A4B2B2,FFFFFF</sprite>
</item>
<item id="565"
image="generic/generic-petal.png"
name="Blüte"
description="Eine Blüte von einer bösen Pflanze."
effect="+50 HP"
type="usable"
hp="50"
weight="10"
max-per-slot="10"/>
<item id="566"
image="generic/generic-smallmushroom.png"
name="Kleiner Pilz"
description="Ein Pilz von kleiner Gestalt."
effect="+50 HP"
type="usable"
hp="50"
weight="10"
max-per-slot="10"/>
<item id="567"
image="generic/use-potion-normal.png|G:#c05000,f0a000,f0f09f"
name="Eisen Trank"
description="Stärkt dich. Des Energy Drinks Großvater."
effect="Angriffsstärke (wird für einige Zeit erhöht)"
type="generic"
weight="10"
max-per-slot="10"/>
<item id="568"
image="generic/use-potion-large.png|G:#da69e5,ffdaff"
name="Konzentrations Trank"
description="Macht eine Attacken schneller."
effect="Angriffsschnelligkeit (wird für einige Zeit erhöht)"
type="generic"
weight="10"
max-per-slot="10"/>
<item id="569"
image="generic/generic-rawlog.png"
name="Holz"
description="Ein Stück Holz."
effect=""
type="generic"
weight="10"
max-per-slot="10"/>
<item id="570"
image="equipment/weapons/weapon-dagger-boneknife.png"
name="Knochenmesser"
description="Ein Messer aus Knochen."
effect="+115 Damage, 1 Range"
type="equip-1hand"
weapon_type="2"
weapon-type="knife"
weight="120"
max-per-slot="1"
attack-range="32"
view="521"/>
<item id="571"
image="equipment/weapons/weapon-dagger-setzer.png"
name="Setzer"
description="Ein Messer, das den namen eines großen Ritters trägt."
effect="+110 Damage, 1 Range"
type="equip-1hand"
weapon-type="knife"
weight="80"
max-per-slot="1"
weapon_type="2"
attack-range="32"
view="521"/>
<item id="572"
image="equipment/weapons/weapon-sword-scimitar.png"
name="Scimitar"
description="Ein Schwert mit einer langen gebogenen Klinge."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="573"
image="equipment/weapons/weapon-sword-falchion.png"
name="Falchion"
description="A heavy one-handed, single-edged sword."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="574"
image="equipment/weapons/weapon-polearm-scorpion.png"
name="Scorpion"
description="A well crafted glaive."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="polearm"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="575"
image="equipment/weapons/weapon-bow-desertbow.png"
name="Wüstenbogen"
description="Ein kurzer aber effektiver Bogen."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="bow"
attack-action="attack_bow"
missile-particle="graphics/particles/arrow.particle.xml"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="576"
image="equipment/weapons/weapon-sword-beheader.png"
name="Beheader"
description="An oddly designed sword especially made for beheading enemies."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="577"
image="equipment/weapons/weapon-thrown-bonedarts.png"
name="Bone Darts"
description="Darts made of bones."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="thrown"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="578"
image="equipment/weapons/weapon-sword-sandcutter.png"
name="Sand Cutter"
description="A sand cutter."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="579"
image="equipment/weapons/weapon-dagger-rockknive.png"
name="Steinmesser"
description="Ein Messer, gemacht aus Stein."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="knife"
weight="100"
attack-range="32"
max-per-slot="1">
<sprite>equipment/weapons/weapon-rockknife.xml</sprite>
</item>
<item id="580"
image="equipment/weapons/weapon-staff-staffoflife.png"
name="Staff of Life"
description="A staff that increases healing magic."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="staff"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="581"
image="equipment/weapons/weapon-staff-crescentrod.png"
name="Crescent Rod"
description="A crescent rod."
effect="+50 Damage, ??? Range"
type="equip-2hand"
weapon-type="staff"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="582"
image="equipment/weapons/weapon-staff-staffoffire.png"
name="Staff of Fire"
description="A staff that increases fire magic."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="staff"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="583"
image="equipment/weapons/weapon-staff-staffofice.png"
name="Staff of Ice"
description="A staff that increases ice magic."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="staff"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="584"
image="equipment/weapons/weapon-sword-jackal.png"
name="Jackal"
description="A jackal."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="100"
attack-range="32"
max-per-slot="1"/>
<item id="585"
image="equipment/hands/armor-hands-scarabarmlet.png"
name="Scarab Armband"
description="A scarab armlet."
effect="+0% Defense"
type="equip-arms"
weight="100"
max-per-slot="1"/>
<item id="586"
image="equipment/legs/armor-legs-shorts.png|W:#A4B2B2,FFFFFF"
name="Baumwollhose"
description="Eine Hose aus 100% Baumwolle."
effect="+2% Defense"
type="equip-legs"
weight="10"
defense="2"
max-per-slot="1">
<sprite gender="male">leg-shorts-male.xml|#A4B2B2,FFFFFF</sprite>
<sprite gender="female">leg-shorts-female.xml|#A4B2B2,FFFFFF</sprite>
</item>
<!--
<item id="587"
image="equipment/weapons/weapon-sword-sword.png"
name="Sword"
description="A simple but reliable sword."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="10"
max-per-slot="1"/>
<item id="588"
image="equipment/weapons/weapon-sword-bastardsword.png"
name="Bastard Sword"
description="A large two handed sword."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="sword"
weight="10"
max-per-slot="1"/>
<item id="589"
image="equipment/weapons/weapon-sword-broadsword.png"
name="Broad Sword"
description="A two handed sword with a very broad blade."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="sword"
weight="10"
max-per-slot="1">
<sound event="hit">weapons/swords/broadsword-hit1.ogg</sound>
</item>
<item id="590"
image="equipment/weapons/weapon-sword-baselard.png"
name="Baselard"
description="A short and powerful sword."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="10"
max-per-slot="1"/>
<item id="591"
image="equipment/weapons/weapon-sword-longsword.png"
name="Long Sword"
description="A sword with a long and agile blade."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="10"
max-per-slot="1">
<sound event="hit">weapons/swords/longsword-hit1.ogg</sound>
<sound event="hit">weapons/swords/longsword-hit2.ogg</sound>
<sound event="strike">weapons/swords/longsword-miss1.ogg</sound>
</item>
<item id="592"
image="equipment/weapons/weapon-dagger-stiletto.png"
name="Stiletto"
description="A dagger with a long and thin blade."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="knife"
weight="10"
max-per-slot="1"/>
<item id="593"
image="equipment/weapons/weapon-sword-rapier.png"
name="Rapier"
description="A light sword made for duels."
effect="??? Damage, ??? Range"
type="equip-1hand"
weapon-type="sword"
weight="10"
max-per-slot="1">
<sound event="hit">weapons/swords/rapier-hit1.ogg</sound>
</item>
<item id="594"
image="equipment/weapons/weapon-polearm-spear.png"
name="Spear"
description="A light spear with a wooden pole."
effect="??? Damage, ??? Range"
type="equip-2hand"
weapon-type="polearm"
weight="10"
max-per-slot="1"/>
<item id="595"
image="equipment/weapons/weapon-polearm-heavyspear.png"
name="Heavy Spear"