This commit is contained in:
2026-03-09 11:57:48 -07:00
parent 041c0ebbdb
commit 7203c843ec
10 changed files with 246 additions and 21 deletions

View File

@@ -19,29 +19,29 @@ func _on_forest_path_27_interacted() -> void:
func _on_pool_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "The beautiful pool is lined with tall marble columns. Its crystal clear water looks very inviting.")
ScriptBuilder.narrate("The beautiful pool is lined with tall marble columns. Its crystal clear water looks very inviting.")
).build(self, "_on_script_complete"))
func _on_columns_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "The marble columns flank the lovely pool.")
ScriptBuilder.narrate("The marble columns flank the lovely pool.")
).build(self, "_on_script_complete"))
func _on_stairs_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "There are steps at the north end of the pool.")
ScriptBuilder.narrate("There are steps at the north end of the pool.")
).build(self, "_on_script_complete"))
func _on_ground_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "You see nothing of importance on the ground.")
ScriptBuilder.narrate("You see nothing of importance on the ground.")
).build(self, "_on_script_complete"))
func _on_room_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "The beautiful pool, with its elegant marble columns, has a wonderful setting in these woods. The water looks so cool and inviting; you're almost tempted to jump in.")
ScriptBuilder.narrate("The beautiful pool, with its elegant marble columns, has a wonderful setting in these woods. The water looks so cool and inviting; you're almost tempted to jump in.")
).build(self, "_on_script_complete"))