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_river_meadow_interacted() -> void:
func _on_bush_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "Small, low bushes dot the pretty meadow. Wildflowers grow among them.")
ScriptBuilder.narrate(ego, "Small, low bushes dot the pretty meadow. Wildflowers grow among them.")
).build(self, "_on_script_complete"))
func _on_boulder_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "Scattered rocks lie among the wildflowers of the meadow.")
ScriptBuilder.narrate(ego, "Scattered rocks lie among the wildflowers of the meadow.")
).build(self, "_on_script_complete"))
func _on_room_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You are surrounded by beautiful wildflowers in this luscious green meadowland.")
ScriptBuilder.narrate(ego, "You are surrounded by beautiful wildflowers in this luscious green meadowland.")
).build(self, "_on_script_complete"))