progress
This commit is contained in:
@@ -13,9 +13,35 @@ func _on_shady_wooded_area_interacted() -> void:
|
||||
$kq4_009_shady_wooded_area.default_script(self)
|
||||
|
||||
|
||||
func _on_forest_path_interacted() -> void:
|
||||
$kq4_010_forest_path.default_script(self)
|
||||
|
||||
|
||||
func _on_forest_path_27_interacted() -> void:
|
||||
$kq4_027_forest_path.default_script(self)
|
||||
|
||||
|
||||
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.")
|
||||
).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.")
|
||||
).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.")
|
||||
).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.")
|
||||
).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.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
Reference in New Issue
Block a user