diff options
author | Micksha <ms-shaman@gmx.de> | 2020-10-11 16:17:42 +0000 |
---|---|---|
committer | Micksha <ms-shaman@gmx.de> | 2020-10-11 16:17:42 +0000 |
commit | 5db48277854787a0417198de0bcb24c9e69608c9 (patch) | |
tree | 057bdaa79f023768e52cd6ffa0928712108655a7 | |
parent | e42bb97b4092aa42a57f6d12d10db70e06274b51 (diff) | |
download | clientdata-5db48277854787a0417198de0bcb24c9e69608c9.tar.gz clientdata-5db48277854787a0417198de0bcb24c9e69608c9.tar.bz2 clientdata-5db48277854787a0417198de0bcb24c9e69608c9.tar.xz clientdata-5db48277854787a0417198de0bcb24c9e69608c9.zip |
AFKing
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | graphics/sprites/icons/drunk.png | bin | 0 -> 311 bytes | |||
-rw-r--r-- | graphics/sprites/icons/drunk.xml | 17 | ||||
-rw-r--r-- | graphics/sprites/icons/vomit.png | bin | 0 -> 585 bytes | |||
-rw-r--r-- | graphics/sprites/icons/vomit.xml | 29 | ||||
-rw-r--r-- | items.xml | 4 | ||||
-rw-r--r-- | status-effects.xml | 5 |
7 files changed, 55 insertions, 2 deletions
@@ -934,11 +934,13 @@ legal@themanaworld.org graphics/sprites/hairstyles/hairstyle28.png (Alige, Ivosh) (CC BY-SA 3.0) (Reid) ## Icons graphics/sprites/icons/concentration.png (Enchilado) (CC BY-SA 3.0) (-) + graphics/sprites/icons/drunk.png (Micksha) (MIT) (-) graphics/sprites/icons/healing.png (Coolkid782) (CC BY-SA 3.0) (-) graphics/sprites/icons/hide.png (Fate) (CC BY-SA 3.0) (-) graphics/sprites/icons/invisible.png (Fate) (CC BY-SA 3.0) (-) graphics/sprites/icons/poison.png (FotherJ) (CC BY-SA 3.0) (-) graphics/sprites/icons/spell-protection.png (Reid) (CC BY-SA 3.0) (Alige) + graphics/sprites/icons/vomit.png (Micksha) (MIT) (-) graphics/sprites/icons/weapon-fire.png (Micksha) (CC BY-SA 4.0, GPLv3) (-) graphics/sprites/icons/weapon-water.png (Micksha) (CC BY-SA 4.0, GPLv3) (-) graphics/sprites/icons/weapon-nature.png (Micksha) (CC BY-SA 4.0, GPLv3) (-) diff --git a/graphics/sprites/icons/drunk.png b/graphics/sprites/icons/drunk.png Binary files differnew file mode 100644 index 00000000..476e8083 --- /dev/null +++ b/graphics/sprites/icons/drunk.png diff --git a/graphics/sprites/icons/drunk.xml b/graphics/sprites/icons/drunk.xml new file mode 100644 index 00000000..ae1d6153 --- /dev/null +++ b/graphics/sprites/icons/drunk.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Micksha +Copyright (C) 2020 Evol Online --> + +<sprite> + <imageset name="icon" + src="graphics/sprites/icons/drunk.png" + width="16" + height="16" + offsetY="-12"/> + + <action name="default" imageset="icon"> + <animation direction="default"> + <frame index="0"/> + </animation> + </action> +</sprite> diff --git a/graphics/sprites/icons/vomit.png b/graphics/sprites/icons/vomit.png Binary files differnew file mode 100644 index 00000000..6a8fa2d5 --- /dev/null +++ b/graphics/sprites/icons/vomit.png diff --git a/graphics/sprites/icons/vomit.xml b/graphics/sprites/icons/vomit.xml new file mode 100644 index 00000000..1192043b --- /dev/null +++ b/graphics/sprites/icons/vomit.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Author: Micksha +Copyright (C) 2020 Evol Online --> + +<sprite> + <imageset name="icon" + src="graphics/sprites/icons/vomit.png" + width="16" + height="16" + offsetY="-14"/> + <action name="default" imageset="icon"> + <animation direction="default"> + <label name="stand"/> + <goto label="static" rand="90"/> + <goto label="vomit" rand="100"/> + <!-- well... do nothing --> + <label name="static"/> + <frame index="0" delay="3000"/> + <goto label="stand"/> + <!-- vomiting --> + <label name="vomit"/> + <frame index="0" delay="140"/> + <frame index="1" delay="140"/> + <frame index="2" delay="120"/> + <frame index="3" delay="100"/> + <goto label="stand"/> + </animation> + </action> +</sprite> @@ -472,7 +472,7 @@ Colors for dyeable equipments or items are now set up by itemcolors.xml. image="usable/wine.png" name="Red Plush Wine" description="Wine produced from black grapes in the south-east of Aurora." - effect="Heal 40-90 HP" + effect="Confusion" useButton="Drink" type="usable" weight="10"/> @@ -571,7 +571,7 @@ Colors for dyeable equipments or items are now set up by itemcolors.xml. name="Beer" useButton="Eat" description="Just a beer, nothing else. Don`t drink and drive!" - effect="Heal 400-500 HP" + effect="Confusion" type="usable" weight="50" maxFloorOffset="6"/> diff --git a/status-effects.xml b/status-effects.xml index c9543ff4..133b2e35 100644 --- a/status-effects.xml +++ b/status-effects.xml @@ -280,6 +280,11 @@ end-message: Displays a message when the effect end. start-message="You feel more protected." end-message="You feel less protected." /> + <status-effect + name="Confusion" + id="1151" + icon="icons/vomit.xml" + /> <!-- OPTION_SIGHT --> <status-effect |