Renamed all room folders to use 2 digits.

This commit is contained in:
Julian Murgia
2021-07-06 08:48:41 +02:00
parent dc4cda82ab
commit 7de969d75e
129 changed files with 143 additions and 442 deletions

View File

@@ -0,0 +1,3 @@
:exit_scene
set_sound_state bg_sound res://game/sfx/sounds/doorOpen_2.ogg false
change_scene "res://game/rooms/room02/room02.tscn"

View File

@@ -0,0 +1,3 @@
:look
say player "That's the other side."

View File

@@ -0,0 +1,14 @@
:setup
set_global dialog_advance 0
set_global dialog_popup_advance 0
> [eq ESC_LAST_SCENE room2]
teleport player r1_r_exit
# Set player look left
set_angle player 270
stop
> [!eq ESC_LAST_SCENE room2]
teleport player player_start
stop
:ready
set_sound_state bg_music res://game/sfx/contemplation.ogg true

View File

@@ -0,0 +1,13 @@
:look
> [eq dialog_advance 0]
say player "I don't know what that stuff is."
set_global dialog_advance 1
stop
> [eq dialog_advance 1]
say player "I REALLY don't know what that stuff is."
set_global dialog_advance 2
stop
> [eq dialog_advance 2]
say player "No, SERIOUSLY, I have no idea what that is!"
say player "Please stop asking me that!"
stop

View File

@@ -0,0 +1,13 @@
:look
> [eq dialog_popup_advance 0]
say player "I don't know what that stuff is." dialog_box_inset
set_global dialog_popup_advance 1
stop
> [eq dialog_popup_advance 1]
say player "I REALLY don't know what that stuff is." dialog_box_inset
set_global dialog_popup_advance 2
stop
> [eq dialog_popup_advance 2]
say player "No, SERIOUSLY, I have no idea what that is!" dialog_box_inset
say player "Please stop asking me that!" dialog_box_inset
stop