Initial commit of Escoria-Reloaded. Still a lot of missing stuff.

This commit is contained in:
Julian Murgia
2020-12-17 16:24:25 +01:00
commit f26d96f115
1794 changed files with 89611 additions and 0 deletions

27
game/rooms/room2/esc/button.esc Executable file
View File

@@ -0,0 +1,27 @@
:look
say player "That button must activate the bridge."
:push
say player "I must USE this."
say r2_button "Bzzt, indeed."
say player "AH! A talking button."
say r2_button "I am not a button, I am a mighty AI."
say player "What?"
say r2_button "I am intelligent, like you."
say r2_button "Or, like you think you are, apparently..."
say player "Hey!"
:use
> [r2_bridge_closed]
set_state r2_bridge bridge_open
enable_terrain bridge_open
set_global r2_bridge_closed false
#set_interactive r2_right_platform true
stop
> [!r2_bridge_closed]
set_state r2_bridge bridge_close
enable_terrain bridge_closed
set_global r2_bridge_closed true
set_interactive r2_right_platform false
set_interactive r2_bridge false
stop