diff options
author | piernov <piernov@piernov.org> | 2016-05-07 13:48:28 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2016-05-07 13:48:28 +0200 |
commit | b91588134f3067c2771011c10af77cda5f9031e8 (patch) | |
tree | a8e5f1bde0bfe9539bb5dd29e249ee8c6b1f36d6 /data | |
parent | 8621eae6aa5fcdba0a60f0a5f1136412c61999ec (diff) | |
parent | 80f5826d1ac8f6d42866d5133c6f463943b96bab (diff) | |
download | candybox-b91588134f3067c2771011c10af77cda5f9031e8.tar.gz candybox-b91588134f3067c2771011c10af77cda5f9031e8.tar.bz2 candybox-b91588134f3067c2771011c10af77cda5f9031e8.tar.xz candybox-b91588134f3067c2771011c10af77cda5f9031e8.zip |
Merge branch 'alexichi' into feat/gui
Diffstat (limited to 'data')
-rw-r--r-- | data/items.xml | 4 | ||||
-rw-r--r-- | data/monsters.xml | 11 |
2 files changed, 12 insertions, 3 deletions
diff --git a/data/items.xml b/data/items.xml index 8888796..6c19b84 100644 --- a/data/items.xml +++ b/data/items.xml @@ -25,7 +25,7 @@ <name>Life Bottle</name> <cost>5</cost> <features></features> - <icon>💧</icon> + <icon>🍶</icon> <description>A bottle which can heal you by regaining hp</description> </item> <item> @@ -34,7 +34,7 @@ <features> <power>20</power> </features> - <icon>💧</icon> + <icon>🍶</icon> <description>If used, you have 20% more chance to hit your enemy during the battle</description> </item> </category> diff --git a/data/monsters.xml b/data/monsters.xml index 86cf422..ab29364 100644 --- a/data/monsters.xml +++ b/data/monsters.xml @@ -4,19 +4,22 @@ <monster> <name>monster1</name> <level>1</level> - <hp>2</hp> + <hp>3</hp> + <xp>1</xp> <icon>m</icon> </monster> <monster > <name>monster2</name> <level>2</level> <hp>3</hp> + <xp>2</xp> <icon>m</icon> </monster> <monster> <name>monster3</name> <level>3</level> <hp>4</hp> + <xp>3</xp> <icon>m</icon> </monster> </floor> @@ -25,18 +28,21 @@ <name>monster4</name> <level>4</level> <hp>5</hp> + <xp>4</xp> <icon>m</icon> </monster> <monster> <name>monster5</name> <level>5</level> <hp>6</hp> + <xp>5</xp> <icon>m</icon> </monster> <monster> <name>monster5</name> <level>6</level> <hp>7</hp> + <xp>6</xp> <icon>m</icon> </monster> </floor> @@ -45,18 +51,21 @@ <name>monster6</name> <level>8</level> <hp>9</hp> + <xp>8</xp> <icon>m</icon> </monster> <monster> <name>monster7</name> <level>9</level> <hp>10</hp> + <xp>9</xp> <icon>m</icon> </monster> <monster> <name>Boss</name> <level>10</level> <hp>12</hp> + <xp>10</xp> <icon>m</icon> </monster> </floor> |