diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-07-27 17:09:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-07-27 17:09:41 -0300 |
commit | 568e2966887caa2181e98013d7134646978b64e0 (patch) | |
tree | 27440cb23f1f7dcf11e90a993322604336d4fc1e | |
parent | fbadbee852e9b4d71ee1089ae478393dd1bef51a (diff) | |
download | clientdata-568e2966887caa2181e98013d7134646978b64e0.tar.gz clientdata-568e2966887caa2181e98013d7134646978b64e0.tar.bz2 clientdata-568e2966887caa2181e98013d7134646978b64e0.tar.xz clientdata-568e2966887caa2181e98013d7134646978b64e0.zip |
Evol Potions can now be given to Homunculus with right-click menu.
-rw-r--r-- | items.xml | 75 |
1 files changed, 70 insertions, 5 deletions
@@ -428,7 +428,20 @@ Colors for dyeable equipments or items are set up by itemcolors.xml. effect="Heal 10%-18% HP" useButton="Drink" type="usable" - weight="15"/> + weight="15"> + <inventory> + <menu + name1="Drink" + command1="useinv 'INVINDEX'" + name2="Drink" + /> + <menu + name1="Give to Homun" + command1="useinv 'INVINDEX' 1" + name2="Give to Homun" + /> + </inventory> + </item> <item id="521" image="usable/potion/fatespotion.png" name="Fate's Potion" @@ -436,7 +449,20 @@ Colors for dyeable equipments or items are set up by itemcolors.xml. effect="Heal 20%-36% HP" useButton="Drink" type="usable" - weight="17"/> + weight="17"> + <inventory> + <menu + name1="Drink" + command1="useinv 'INVINDEX'" + name2="Drink" + /> + <menu + name1="Give to Homun" + command1="useinv 'INVINDEX' 1" + name2="Give to Homun" + /> + </inventory> + </item> <item id="522" image="usable/potion/clotholiquor.png" name="Clotho Liquor" @@ -444,7 +470,20 @@ Colors for dyeable equipments or items are set up by itemcolors.xml. effect="Heal 30%-54% HP" useButton="Drink" type="usable" - weight="16"/> + weight="16"> + <inventory> + <menu + name1="Drink" + command1="useinv 'INVINDEX'" + name2="Drink" + /> + <menu + name1="Give to Homun" + command1="useinv 'INVINDEX' 1" + name2="Give to Homun" + /> + </inventory> + </item> <item id="523" image="usable/potion/lachesisbrew.png" name="Lachesis Brew" @@ -452,7 +491,20 @@ Colors for dyeable equipments or items are set up by itemcolors.xml. effect="Heal 40%-72% HP" useButton="Drink" type="usable" - weight="14"/> + weight="14"> + <inventory> + <menu + name1="Drink" + command1="useinv 'INVINDEX'" + name2="Drink" + /> + <menu + name1="Give to Homun" + command1="useinv 'INVINDEX' 1" + name2="Give to Homun" + /> + </inventory> + </item> <item id="524" image="usable/potion/atroposmixture.png" name="Atropos Mixture" @@ -460,7 +512,20 @@ Colors for dyeable equipments or items are set up by itemcolors.xml. effect="Heal 50%-90% HP" useButton="Drink" type="usable" - weight="15"/> + weight="15"> + <inventory> + <menu + name1="Drink" + command1="useinv 'INVINDEX'" + name2="Drink" + /> + <menu + name1="Give to Homun" + command1="useinv 'INVINDEX' 1" + name2="Give to Homun" + /> + </inventory> + </item> <item id="525" image="usable/potion/elixiroflife.png" name="Elixir Of Life" |