28 lines
747 B
GDScript
28 lines
747 B
GDScript
extends Quest
|
|
|
|
func _init():
|
|
questName = "Wombat in the Sky"
|
|
questScale = Quest.Scales.Humble
|
|
|
|
func get_progress_report():
|
|
if SaveManager.get_save_value("PaxFlyQuestCompleted", false):
|
|
return "QUEST COMPLETE!
|
|
I brought Pax a balloon!
|
|
In return Pax flew up high and retrieved a cloud"
|
|
elif SaveManager.get_save_value("PaxFlyQuestStarted", false):
|
|
return "I talked to Pax and fae really wants to fly.
|
|
I need to bring Pax another balloon to increase faer buoyancy."
|
|
else:
|
|
return "Talk to Pax outside at The Faire"
|
|
|
|
func get_completion_message():
|
|
return "Rewards
|
|
Cloud
|
|
1 Quest Point"
|
|
|
|
func get_requirements_report():
|
|
return "No Requirements"
|
|
|
|
func is_completed():
|
|
return SaveManager.get_save_value("PaxFlyQuestCompleted", false)
|