diff options
Diffstat (limited to 'res/scripts')
-rw-r--r-- | res/scripts/hallucination_cliff.lua | 1 | ||||
-rw-r--r-- | res/scripts/pink_shell.lua | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/res/scripts/hallucination_cliff.lua b/res/scripts/hallucination_cliff.lua index 8538ee4..fefd219 100644 --- a/res/scripts/hallucination_cliff.lua +++ b/res/scripts/hallucination_cliff.lua | |||
@@ -10,4 +10,5 @@ end | |||
10 | 10 | ||
11 | function hallucination_cliff.enter_door() | 11 | function hallucination_cliff.enter_door() |
12 | CreateAnimatedSpriteAtWarpPoint("entryway", "entryway", "entryway_appear", "pink_shell", Direction.DOWN, SpriteLayer.NORMAL) | 12 | CreateAnimatedSpriteAtWarpPoint("entryway", "entryway", "entryway_appear", "pink_shell", Direction.DOWN, SpriteLayer.NORMAL) |
13 | ChangeMap("pink_shell", "fromOutside") | ||
13 | end | 14 | end |
diff --git a/res/scripts/pink_shell.lua b/res/scripts/pink_shell.lua new file mode 100644 index 0000000..e17236e --- /dev/null +++ b/res/scripts/pink_shell.lua | |||
@@ -0,0 +1,5 @@ | |||
1 | pink_shell = {} | ||
2 | |||
3 | function pink_shell.go_outside() | ||
4 | ChangeMap("hallucination_cliff", "fromInside") | ||
5 | end | ||