diff options
Diffstat (limited to 'npc/014-2/mouboo.txt')
-rw-r--r-- | npc/014-2/mouboo.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/014-2/mouboo.txt b/npc/014-2/mouboo.txt index 99534db10..91b4a0b31 100644 --- a/npc/014-2/mouboo.txt +++ b/npc/014-2/mouboo.txt @@ -175,6 +175,24 @@ L_Healed: mesn l("Injuried Mouboo"); mesq l("Zzzzzz...."); mesc l("The mouboo is sleeping soundly. The curse is still there."); + if (countitem(Coffee)) { + next; + mesc l("Give a @@ to the Mouboo?", getitemlink(Coffee)); + next; + if (askyesno() == ASK_YES) { + mesn l("Injuried Mouboo"); + mesc l("*scream*"); + mes ""; + mesc l("The Mouboo doesn't wants to drink the Coffee. Try to force him to drink anyway?"); + next; + if (askyesno() == ASK_YES) { + delitem Coffee, 1; + mesc l("There's no change in the Mouboo condition."); + next; + mesc l("Maybe Hurnscald alchemist, Wyara, could explain why."); + } + } + } close; // Final Results |