summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-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;