aboutsummaryrefslogtreecommitdiffstats
path: root/data/items.xml
blob: 6c19b842eb0ff72e5d9aedf52cbe4e46462cc93c (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
<?xml version="1.0" encoding="utf-8"?>
<items cost="3">
	<category name="Swords">
		<item>
			<name>Wooden Sword</name>
			<cost>10</cost>
			<features>
				<power>10</power>
			</features>
			<icon></icon>
			<description>A sword that beginners need to use to improve their skills</description>
		</item>
		<item>
			<name>Metal Sword</name>
			<cost>15</cost>
			<features>
				<power>30</power>
			</features>
			<icon></icon> 
			<description>A sword which are often use buy skilled knight. The material is very good and the sword is very powerful</description>
		</item>
	</category>
	<category name="Potions">
		<item>
			<name>Life Bottle</name>
			<cost>5</cost>
			<features></features>
			<icon>🍶</icon>
			<description>A bottle which can heal you by regaining hp</description> 
		</item>
		<item>
			<name>Strength Bottle</name>
			<cost>10</cost>
			<features>
				<power>20</power>
			</features>
			<icon>🍶</icon>	
			<description>If used, you have 20% more chance to hit your enemy during the battle</description>
		</item>
	</category>
</items>