diff options
Diffstat (limited to 'npc/020-3')
-rw-r--r-- | npc/020-3/mede.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/020-3/mede.txt b/npc/020-3/mede.txt index b7b874f99..149a877ae 100644 --- a/npc/020-3/mede.txt +++ b/npc/020-3/mede.txt @@ -20,6 +20,7 @@ L_Menu: select l("Can you reset my stats please?"), + rif(MONSTERPOT >= 1, l("Can you make me a Monster Potion?")), lg("You are weird, I have to go sorry."); switch (@menu) @@ -27,6 +28,8 @@ L_Menu: case 1: goto L_ResetStats; case 2: + goto L_MonsterPot; + case 3: goto L_Quit; } @@ -78,6 +81,14 @@ L_ConfirmReset: } goto L_Quit; +L_MonsterPot: + mesn; + mesq l("Not yet, I'm waiting @@ to deliver me the @@ reagent.", any("Saulc", "Jesusalva", "Demure"), any(l("Red"), l("Green"), l("Blue"), l("White"))); + next; + mesn; + mesq l("But if you want, you can farm @@ already. Good luck!", getitemlink(GoldenScorpionClaw)); + next; + goto L_Quit; L_Quit: closedialog; |