summaryrefslogtreecommitdiff
path: root/npc/005-6
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-13 16:52:25 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-13 16:52:25 -0300
commita75a7a38858ef4f309df7c81010146839072ea32 (patch)
tree6491c212bb96e834b18d0d8220983d3b9b38d49c /npc/005-6
parent9ec6e4a9f257a459fda4f147311adc70c69a15cf (diff)
downloadserverdata-a75a7a38858ef4f309df7c81010146839072ea32.tar.gz
serverdata-a75a7a38858ef4f309df7c81010146839072ea32.tar.bz2
serverdata-a75a7a38858ef4f309df7c81010146839072ea32.tar.xz
serverdata-a75a7a38858ef4f309df7c81010146839072ea32.zip
Reduce price too, these potions are not THAT rare 0.0
Diffstat (limited to 'npc/005-6')
-rw-r--r--npc/005-6/zitoni.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/005-6/zitoni.txt b/npc/005-6/zitoni.txt
index 8ebe9a52b..fef2f8f27 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 200 GP for potion! But I need the base ingredients, five @@ - or @@, depends on which one.", getitemlink(Plushroom), getitemlink(Chagashroom));
+ mesq l("For you, it will be only 250 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 < 200) {
+ if (Zeny < 150) {
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-200;
+ Zeny=Zeny-150;
delitem Plushroom, 4;
getitem HastePotion, 1;
mesq l("Here you go!");
@@ -178,7 +178,7 @@ L_HastePotion:
L_StrengthPotion:
mes "";
mesn;
- if (Zeny < 200) {
+ if (Zeny < 150) {
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-200;
+ Zeny=Zeny-150;
delitem Chagashroom, 4;
getitem StrengthPotion, 1;
mesq l("Here you go!");