From cd237b94dfa0103d15ff72152b7ebf784be2bd18 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 16 Dec 2018 22:48:47 -0200 Subject: Cut several zeros in several places to please @demure and @Xtreem and make balance more smooth. Jhedia was on previous commit. Ingot sell price adjusted accordingly. --- npc/005-6/zitoni.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'npc/005-6') diff --git a/npc/005-6/zitoni.txt b/npc/005-6/zitoni.txt index fe08c404f..a497477f6 100644 --- a/npc/005-6/zitoni.txt +++ b/npc/005-6/zitoni.txt @@ -148,7 +148,7 @@ L_OtherPotion: mesq l("I make both @@ and @@, if you give me the shrooms associated to them, and money.", getitemlink(HastePotion), getitemlink(StrengthPotion)); next; mesn; - mesq l("For you, it will be only 150 GP for potion! But I need the base ingredients, four @@ - or @@, depends on which one.", getitemlink(Plushroom), getitemlink(Chagashroom)); + mesq l("For you, it will be only 50 GP for potion! But I need the base ingredients, four @@ - or @@, depends on which one.", getitemlink(Plushroom), getitemlink(Chagashroom)); next; menu l("Nothing at the moment."), L_Quit, @@ -158,7 +158,7 @@ L_OtherPotion: L_HastePotion: mes ""; mesn; - if (Zeny < 150) { + if (Zeny < 50) { mesq l("You don't have enough money. Sorry."); next; goto L_Quit; @@ -169,7 +169,7 @@ L_HastePotion: goto L_Quit; } inventoryplace HastePotion, 1; - Zeny=Zeny-150; + Zeny=Zeny-50; delitem Plushroom, 4; getitem HastePotion, 1; mesq l("Here you go!"); @@ -178,7 +178,7 @@ L_HastePotion: L_StrengthPotion: mes ""; mesn; - if (Zeny < 150) { + if (Zeny < 50) { mesq l("You don't have enough money. Sorry."); next; goto L_Quit; @@ -189,7 +189,7 @@ L_StrengthPotion: goto L_Quit; } inventoryplace StrengthPotion, 1; - Zeny=Zeny-150; + Zeny=Zeny-50; delitem Chagashroom, 4; getitem StrengthPotion, 1; mesq l("Here you go!"); -- cgit v1.2.3-70-g09d2