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

@@ -1,7 +1,7 @@
extends Scene
func _on_dense_forest_interacted() -> void:
gfunc _on_dense_forest_interacted() -> void:
$kq4_029_dense_forest.default_script(self)
@@ -19,29 +19,29 @@ func _on_ogres_cottage_interacted() -> void:
func _on_cottage_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You see the back of a large, thatched-roof house.")
ScriptBuilder.narrate("You see the back of a large, thatched-roof house.")
).build(self, "_on_script_complete"))
func _on_window_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You look through the window, but can make out no details.")
ScriptBuilder.narrate("You look through the window, but can make out no details.")
).build(self, "_on_script_complete"))
func _on_boulders_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "The rocks are insignificant here.")
ScriptBuilder.narrate("The rocks are insignificant here.")
).build(self, "_on_script_complete"))
func _on_bushes_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You don't see many shrubs here.")
ScriptBuilder.narrate("You don\u2019t see many shrubs here.")
).build(self, "_on_script_complete"))
func _on_room_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "This is a creepy place! You have found a grove of very odd, (and scary-looking), trees. A thick forest surrounds the grove.")
ScriptBuilder.narrate("This is a creepy place! You have found a grove of very odd, (and scary-looking), trees. A thick forest surrounds the grove.")
).build(self, "_on_script_complete"))