Restructured files and worked on more complex quest progression

This commit is contained in:
2025-08-11 02:16:39 -04:00
parent 434216ca29
commit 95a7db036b
47 changed files with 475 additions and 53 deletions

View File

@@ -1,8 +1,11 @@
extends Node2D
var test_adv = preload("res://test_adventurer.tscn")
var test_adv = preload("res://templates/test_adventurer.tscn")
func _ready() -> void:
#var adv : AdventurerData = test_adv.instantiate() as AdventurerData
#Guild.register_guild_member(adv)
var quest : Quest = Quest.new()
var evt : Quest.Event = Quest.Event.new()
evt.time = 10
quest.events.append(evt)
Guild.add_quest(quest)