diff options
-rw-r--r-- | npc/012-1/terezin.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/012-1/terezin.txt b/npc/012-1/terezin.txt index 4c127199a..82a5d096a 100644 --- a/npc/012-1/terezin.txt +++ b/npc/012-1/terezin.txt @@ -33,17 +33,20 @@ L_PinkieHat: mesq l("You deserve a reward for helping my husband. I can make you a nice gift."); next; mesn; - mesq l("Please bring me a single @@, and I'll give you a memeto.", getitemlink(PinkAntenna)); - if (countitem(PinkAntenna) < 1) + mesq l("Please bring me a single @@ and @@ GP, and I'll give you a memeto.", getitemlink(PinkAntenna), 6500); + if (countitem(PinkAntenna) < 1 || Zeny < 6500) close; next; mesn strcharinfo(0); - mesc l("Give the Antenna to her?"); + mesc l("Give the Antenna and the GP to her?"); if (askyesno() != ASK_YES) { mesq l("I'll seek one for you."); close; } delitem PinkAntenna, 1; + if (Zeny < 6500) + close; + Zeny=Zeny-6500; getitem PinkieHat, 1; mesn; mesq l("Here, I did this @@ for you! I'm pretty sure this is also a drop, but that's literally everything I could do for helping my husband.", getitemlink(PinkieHat)); |