diff options
Diffstat (limited to 'data/items.xml')
-rw-r--r-- | data/items.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/data/items.xml b/data/items.xml new file mode 100644 index 0000000..4448b1c --- /dev/null +++ b/data/items.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="utf-8"?> +<items cost="3"> + <category name="Swords"> + <item> + <name>Wooden Sword</name> + <cost>10</cost> + <features> + <power>+1</power> + <limit>1</limit> + </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>+3</power> + <limit>1</limit> + </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> + <hp>+3</hp> + </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>+2</power> + <limit>3</limit> + </features> + <icon>🍶</icon> + <description>If used, you have 20% more chance to hit your enemy during the battle</description> + </item> + </category> +</items> |