summary refs log tree commit diff stats
path: root/res/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'res/scripts')
-rw-r--r--res/scripts/hallucination_interior.lua4
-rw-r--r--res/scripts/hallucination_mirror.lua4
2 files changed, 8 insertions, 0 deletions
diff --git a/res/scripts/hallucination_interior.lua b/res/scripts/hallucination_interior.lua index 9ef808e..f009196 100644 --- a/res/scripts/hallucination_interior.lua +++ b/res/scripts/hallucination_interior.lua
@@ -8,6 +8,10 @@ function hallucination_interior.off_top()
8 ChangeMap("hallucination_cliff", "fromBottom") 8 ChangeMap("hallucination_cliff", "fromBottom")
9end 9end
10 10
11function hallucination_interior.off_right()
12 ChangeMap("hallucination_mirror", "fromLeft")
13end
14
11function hallucination_interior.mailbox1() 15function hallucination_interior.mailbox1()
12 StartCutscene() 16 StartCutscene()
13 DisplayMessage("* The mailbox lid is open...\n* Peek inside?", "", SpeakerType.NONE) 17 DisplayMessage("* The mailbox lid is open...\n* Peek inside?", "", SpeakerType.NONE)
diff --git a/res/scripts/hallucination_mirror.lua b/res/scripts/hallucination_mirror.lua index 73763f9..afacd59 100644 --- a/res/scripts/hallucination_mirror.lua +++ b/res/scripts/hallucination_mirror.lua
@@ -22,6 +22,10 @@ function hallucination_mirror.init()
22 end 22 end
23end 23end
24 24
25function hallucination_mirror.off_left()
26 ChangeMap("hallucination_interior", "fromRight")
27end
28
25function hallucination_mirror.mailbox() 29function hallucination_mirror.mailbox()
26 StartCutscene() 30 StartCutscene()
27 DisplayMessage("* The mailbox lid is open...\n* Peek inside?", "", SpeakerType.NONE) 31 DisplayMessage("* The mailbox lid is open...\n* Peek inside?", "", SpeakerType.NONE)