summaryrefslogtreecommitdiff
path: root/npc/005-6
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-13 16:51:34 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-13 16:51:34 -0300
commit9ec6e4a9f257a459fda4f147311adc70c69a15cf (patch)
tree779156950121f36213f49d1458c8c3307a02b0ac /npc/005-6
parentb6d21f11fa311e83900a6855595eb9f10f924835 (diff)
downloadserverdata-9ec6e4a9f257a459fda4f147311adc70c69a15cf.tar.gz
serverdata-9ec6e4a9f257a459fda4f147311adc70c69a15cf.tar.bz2
serverdata-9ec6e4a9f257a459fda4f147311adc70c69a15cf.tar.xz
serverdata-9ec6e4a9f257a459fda4f147311adc70c69a15cf.zip
[skip ci] reduce number of needed Plushies and Chagas for Potions from 5 to 4
Diffstat (limited to 'npc/005-6')
-rw-r--r--npc/005-6/zitoni.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/005-6/zitoni.txt b/npc/005-6/zitoni.txt
index 28f5ba158..8ebe9a52b 100644
--- a/npc/005-6/zitoni.txt
+++ b/npc/005-6/zitoni.txt
@@ -152,8 +152,8 @@ L_OtherPotion:
next;
menu
l("Nothing at the moment."), L_Quit,
- l("5 Plushrooms for a Haste Potion!"), L_HastePotion,
- l("5 Chagashrooms for a Strength Potion!"), L_StrengthPotion;
+ l("4 Plushrooms for a Haste Potion!"), L_HastePotion,
+ l("4 Chagashrooms for a Strength Potion!"), L_StrengthPotion;
L_HastePotion:
mes "";
@@ -163,14 +163,14 @@ L_HastePotion:
next;
goto L_Quit;
}
- if (countitem(Plushroom) < 5) {
+ if (countitem(Plushroom) < 4) {
mesq l("I need @@ to work...", getitemlink(Plushroom));
next;
goto L_Quit;
}
inventoryplace HastePotion, 1;
Zeny=Zeny-200;
- delitem Plushroom, 5;
+ delitem Plushroom, 4;
getitem HastePotion, 1;
mesq l("Here you go!");
goto L_OtherPotion;
@@ -183,14 +183,14 @@ L_StrengthPotion:
next;
goto L_Quit;
}
- if (countitem(Chagashroom) < 5) {
+ if (countitem(Chagashroom) < 4) {
mesq l("I need @@ to work...", getitemlink(Chagashroom));
next;
goto L_Quit;
}
inventoryplace StrengthPotion, 1;
Zeny=Zeny-200;
- delitem Chagashroom, 5;
+ delitem Chagashroom, 4;
getitem StrengthPotion, 1;
mesq l("Here you go!");
goto L_OtherPotion;