diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/rumly.txt | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/npc/001-1/rumly.txt b/npc/001-1/rumly.txt index 917da7ed..742b143e 100644 --- a/npc/001-1/rumly.txt +++ b/npc/001-1/rumly.txt @@ -88,9 +88,24 @@ L_Menu: goto L_ResetStats; case 3: if (.@visited != 2) goto L_Quit; - - speech 5, - l("See you! And come back with the plushrooms!"); + + .@rand = rand (2); + + if (.@rand) + { + speech 5, + l("See you! And come back with the plushrooms!"); + } + else + { + speech 5, + l("Oh noes!"), + l("A rabbit!"), + l("He has a guns!"), + l("*Bang bang*"); + narrator 4, + l("Rumly is hidding behind the tree."); + } goto L_Quit; } |