diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-16 22:48:47 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-16 22:48:47 -0200 |
commit | cd237b94dfa0103d15ff72152b7ebf784be2bd18 (patch) | |
tree | 9c457e179e9be9826178f4e1ae04c7fce8619fd7 /npc/005-6 | |
parent | df3505e3b68f9c9f0a16020f6197c0feb655096c (diff) | |
download | serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.gz serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.bz2 serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.xz serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.zip |
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.
Diffstat (limited to 'npc/005-6')
-rw-r--r-- | npc/005-6/zitoni.txt | 10 |
1 files changed, 5 insertions, 5 deletions
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!"); |