summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-1/tinris.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-1/tinris.txt b/npc/003-1/tinris.txt
index 7f4c0f433..ce759981f 100644
--- a/npc/003-1/tinris.txt
+++ b/npc/003-1/tinris.txt
@@ -81,7 +81,7 @@ L_Craft:
mesq l("This fertilizer is projected to protect the plants from plagues, bugs, scorpions and maggots, trying to not be a plague itself.");
next;
mesn;
- mesq l("That's very, very risky. I need 3 @@ and 10 @@ to make a Potion to you, and I won't warrant it will work.", getitemlink(Plushroom), getitemlink(MaggotSlime));
+ mesq l("That's very, very risky. I need @@ @@ and @@ @@ to make a Potion to you, and I won't warrant it will work.", 3, getitemlink(Plushroom), 9, getitemlink(MaggotSlime));
next;
mesn;
mesq l("Give that to whoever needs them, and see if it works. Then come tell me the result. Do you have the reagents?");
@@ -90,11 +90,11 @@ L_Craft:
mes "";
if (countitem(Plushroom) < 3||
- countitem(MaggotSlime) < 10)
+ countitem(MaggotSlime) < 9)
goto L_Lying;
delitem Plushroom, 3;
- delitem MaggotSlime, 10;
+ delitem MaggotSlime, 9;
setq1 TulimsharQuest_AnwarField, 5;
mesn;
@@ -112,7 +112,7 @@ L_Fail:
mesq l("Well, that could fail, I said. Here is some experience.");
next;
if (countitem(Plushroom) >= 3 &&
- countitem(MaggotSlime) >= 10)
+ countitem(MaggotSlime) >= 9)
goto L_Craft;
mesn;
mesq l("Now go, and fetch the materials again. I'll make another fertilizer for you.");