New art assets, work on implementing more adventurer behavior and making them work better together, and steps towards completing the first quest loop.

This commit is contained in:
2025-07-31 08:44:26 -04:00
parent c0a2c058ba
commit 38a7ed85b0
66 changed files with 1112 additions and 658 deletions

View File

@@ -20,6 +20,11 @@ func register_guild_member(member : AdventurerData, first : bool = false) -> voi
if first:
Game.notice("%s has joined the guild!" % member.name, 5)
func has_guild_member(member : AdventurerData) -> bool:
if member == null:
return false
return members.has(member)
func add_quest(quest : Quest) -> void:
quests[quest] = false
Game.quest_log.add_entry(quest)