narration

This commit is contained in:
2026-03-09 21:40:57 -07:00
parent 1b13072412
commit e243083a5f
7 changed files with 27 additions and 64 deletions

View File

@@ -19,17 +19,17 @@ func _on_green_meadow_interacted() -> void:
func _on_cottage_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You see the back of an old shack.")
ScriptBuilder.narrate("You see the back of an old shack.")
).build(self, "_on_script_complete"))
func _on_window_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You peek through the window, but can make out no details.")
ScriptBuilder.narrate("You peek through the window, but can make out no details.")
).build(self, "_on_script_complete"))
func _on_room_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You stand behind the fisherman's shack.")
ScriptBuilder.narrate("You stand behind the fisherman's shack.")
).build(self, "_on_script_complete"))