14 lines
509 B
GDScript
14 lines
509 B
GDScript
ScriptBuilder.narrate("You peek through the window, but can make out no details.")
|
|
).build(self, "_on_script_complete")
|
|
|
|
|
|
func _on_pier_looked() -> void:
|
|
start_main_script(ScriptBuilder.init(
|
|
ScriptBuilder.narrate("The old, worn pier juts out into the ocean from the weather-beaten house.")
|
|
).build(self, "_on_script_complete"))
|
|
|
|
|
|
func _on_room_looked() -> void:
|
|
start_main_script(ScriptBuilder.init(
|
|
ScriptBuilder.narrate("You stand at the fisherman's shack.")
|
|
).build(self, "_on_script_complete") |