aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/items/items_template.xml
blob: 0810f45881a59e4ed9ecb532c3f55014f43b120c (plain)
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
<!-- ITEMS
Available item types:
    - stick
    - weapon
    - medicine
    - food
--!>

<item type="">
    <name></name>
    <maxAmount></maxAmount>
</item>


<item type="stick">
    <!-- item --!>
    <name></name>
    <maxAmount></maxAmount>

    <!-- stick --!>
    <requiredLevel></reqiredLevel>
    <requiredClass>Wizard</requiredClass>
</item>


<item type="medicine">
    <!-- item --!>
    <name></name>
    <maxAmount></maxAmount>

    <!-- medicine --!>
    <heal></heal>
    <requiredLevel></reqiredLevel>
</item>


<item type="food">
    <!-- item --!>
    <name></name>
    <maxAmount></maxAmount>

    <!-- food --!>
    <heal></heal>
<\item>


<item type="weapon">
    <!-- item --!>
    <name></name>
    <maxAmount></maxAmount>

    <!-- weapon --!>
    <damage></damage>
    <requiredLevel></reqiredLevel>
</item>