More art assets and implemented names and jobs.

This commit is contained in:
2025-08-01 16:10:31 -04:00
parent 697677cf86
commit 110d390755
22 changed files with 3105 additions and 21 deletions

10
data/jobs/job_data.gd Normal file
View File

@@ -0,0 +1,10 @@
class_name JobData extends Resource
enum Type {
CIVILIAN,
ADVENTURER,
EMPLOYEE,
CRAFTER
}
@export var name : String
@export var type : Type