diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-03-07 10:14:17 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-03-07 10:14:17 -0500 |
commit | 767ca6ea1dfdaf890c24900515d6d5a5644ba262 (patch) | |
tree | 8738046ebb3d700a86b956c03463a9afc0498477 /res/scripts | |
parent | 6dab458c5fcd97aca871b46a43a2b46c80d1ed3c (diff) | |
download | tanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.tar.gz tanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.tar.bz2 tanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.zip |
Added message when examining the mirror
Diffstat (limited to 'res/scripts')
-rw-r--r-- | res/scripts/hallucination_mirror.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/res/scripts/hallucination_mirror.lua b/res/scripts/hallucination_mirror.lua index bf1faba..053a710 100644 --- a/res/scripts/hallucination_mirror.lua +++ b/res/scripts/hallucination_mirror.lua | |||
@@ -55,3 +55,20 @@ function hallucination_mirror.mailbox() | |||
55 | WaitForEndOfMessage() | 55 | WaitForEndOfMessage() |
56 | HideCutsceneBars() | 56 | HideCutsceneBars() |
57 | end | 57 | end |
58 | |||
59 | function hallucination_mirror.examine_mirror() | ||
60 | StartCutscene() | ||
61 | Halt("double_lucas") | ||
62 | Halt("double_kuma") | ||
63 | Halt("double_duster") | ||
64 | Halt("double_boney") | ||
65 | |||
66 | if gamestate.read_mirror_message then | ||
67 | DisplayMessage("* Something seems wrong about this.", "", SpeakerType.NONE) | ||
68 | else | ||
69 | DisplayMessage("* Looking handsome.", "", SpeakerType.NONE) | ||
70 | end | ||
71 | |||
72 | WaitForEndOfMessage() | ||
73 | HideCutsceneBars() | ||
74 | end | ||