Extensive work on the sideview and initial work on player profiles, inventory display, and renaming adventurerdata vs adventurer to adventurer vs adventurersprite

This commit is contained in:
2025-08-27 08:02:11 -04:00
parent 38845e26fa
commit 2a236ea041
55 changed files with 1975 additions and 417 deletions

19
data/statblock.gd Normal file
View File

@@ -0,0 +1,19 @@
class_name StatBlock extends Resource
@export var STR : int = 1
@export var DEX : int = 1
@export var INT : int = 1
@export var CHA : int = 1
@export var FAI : int = 1
@export var LUK : int = 1
static func copy(block : StatBlock) -> StatBlock:
var b = StatBlock.new()
b.STR = block.STR
b.DEX = block.DEX
b.INT = block.INT
b.CHA = block.CHA
b.FAI = block.FAI
b.LUK = block.LUK
return b

1
data/statblock.gd.uid Normal file
View File

@@ -0,0 +1 @@
uid://727tgvtmq4nb