diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-04-28 11:21:08 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-04-28 11:21:08 -0400 |
commit | 0ef9d820818c6768060eca0a692c87d29bea8f95 (patch) | |
tree | b050fa008263e0f38c657b43e4d41cefd7de5d9e /Archipelago/painting_scenery.gd | |
parent | 1969ba557fcbf352f4ec546fd1c9467762291f08 (diff) | |
download | lingo-archipelago-0ef9d820818c6768060eca0a692c87d29bea8f95.tar.gz lingo-archipelago-0ef9d820818c6768060eca0a692c87d29bea8f95.tar.bz2 lingo-archipelago-0ef9d820818c6768060eca0a692c87d29bea8f95.zip |
Progressive Art Gallery and Hallway Room
Also, Art Gallery is now changed a little in doors mode. The backroom is always available so that you have access to the previous floors at all times. The paintings in the backroom do not appear until you have the floor unlocked. ORDER is also blocked off until you get the fifth floor.
Diffstat (limited to 'Archipelago/painting_scenery.gd')
-rw-r--r-- | Archipelago/painting_scenery.gd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Archipelago/painting_scenery.gd b/Archipelago/painting_scenery.gd new file mode 100644 index 0000000..f49d602 --- /dev/null +++ b/Archipelago/painting_scenery.gd | |||
@@ -0,0 +1,11 @@ | |||
1 | extends "res://scripts/painting_scenery.gd" | ||
2 | |||
3 | |||
4 | func _answer_correct(): | ||
5 | var apclient = global.get_node("Archipelago") | ||
6 | if not apclient._door_shuffle or apclient.paintingIsVanilla(self.name): | ||
7 | ._answer_correct() | ||
8 | |||
9 | |||
10 | func movePainting(): | ||
11 | ._answer_correct() | ||