From 9ec6e4a9f257a459fda4f147311adc70c69a15cf Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 13 Jul 2018 16:51:34 -0300 Subject: [skip ci] reduce number of needed Plushies and Chagas for Potions from 5 to 4 --- npc/005-6/zitoni.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'npc/005-6') 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; -- cgit v1.2.3-70-g09d2