-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.xml
69 lines (60 loc) · 1.35 KB
/
test.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
<?xml version="1.0" encoding="utf-8"?>
<World>
<Item>
<name>silver key</name>
<properties>
<property>metal</property>
<property>silver</property>
</properties>
<weight>1</weight>
<displayChar>)</displayChar>
<value>10</value>
<rarity>5</rarity>
</Item>
<Creature>
<name>orc</name>
<properties>
<property>orcish</property>
<property>humanoid</property>
</properties>
<level>2</level>
<maxHP>15</maxHP>
<displayChar>o</displayChar>
</Creature>
<Scroll>
<name>scroll of fireball</name>
<properties>
<property>paper</property>
<property>magical</property>
</properties>
<weight>1</weight>
<displayChar>?</displayChar>
<value>250</value>
<rarity>30></rarity>
</Scroll>
<Weapon>
<name>longsword</name>
<type>sword</type>
<damage>10</damage>
<accuracy>2</accuracy>
<properties>
<property>metal</property>
</properties>
<weight>20</weight>
<value>60</value>
<rarity>10</rarity>
<displayChar>)</displayChar>
</Weapon>
<Armor>
<name>chainmail</name>
<type>medium</type>
<slot>chest</slot>
<armorValue>8</armorValue>
<weight>60</weight>
<value>80</value>
<rarity>10</rarity>
<properties>
<property>metal</property>
</properties>
</Armor>
</World>