progress
This commit is contained in:
@@ -15,3 +15,27 @@ func _on_meadow_interacted() -> void:
|
||||
|
||||
func _on_beach_interacted() -> void:
|
||||
$kq4_013_beach.default_script(self)
|
||||
|
||||
|
||||
func _on_stump_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "Yes, there's a tree stump in the middle of the meadow.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
|
||||
func _on_bushes_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(ego, "Small, low bushes dot the pretty meadow. Wildflowers grow among them.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
|
||||
func _on_rocks_looked() -> void:
|
||||
start_main_script(ScriptBuilder.init(
|
||||
ScriptBuilder.say(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 stand in a green meadow filled with wildflowers.")
|
||||
).build(self, "_on_script_complete"))
|
||||
|
||||
Reference in New Issue
Block a user