Created gymkhana folder

This commit is contained in:
2023-02-07 23:02:20 +01:00
parent 064d9b3e60
commit aefa34a024
36 changed files with 1270 additions and 19 deletions

View File

@@ -0,0 +1,3 @@
:exit_scene
play_snd res://game/sfx/sounds/doorOpen_2.ogg
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,29 @@
:setup
> [eq ESC_LAST_SCENE room2]
teleport player r1_r_exit
# Set player look left
set_angle player 270
stop
:ready
play_snd res://game/sfx/contemplation.ogg _music
> [!room1_visited]
set_global room1_visited true
set_global dialog_advance 0
set_global dialog_popup_advance 0
walk_block player r1_destination_point
wait 2
walk_block player r1_destination_point2
wait 2
set_angle player 225 0.2
wait 2
walk_block player r1_destination_point3
wait 1
turn_to player r1_r_exit

View File

@@ -0,0 +1,5 @@
:trigger_in
:trigger_out
say player "I'm near the door."

View File

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

View File

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