summary refs log tree commit diff stats
path: root/res/scripts/hallucination_mirror.lua
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-03-07 10:14:17 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-03-07 10:14:17 -0500
commit767ca6ea1dfdaf890c24900515d6d5a5644ba262 (patch)
tree8738046ebb3d700a86b956c03463a9afc0498477 /res/scripts/hallucination_mirror.lua
parent6dab458c5fcd97aca871b46a43a2b46c80d1ed3c (diff)
downloadtanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.tar.gz
tanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.tar.bz2
tanetane-767ca6ea1dfdaf890c24900515d6d5a5644ba262.zip
Added message when examining the mirror
Diffstat (limited to 'res/scripts/hallucination_mirror.lua')
-rw-r--r--res/scripts/hallucination_mirror.lua17
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()
57end 57end
58
59function 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()
74end