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:
19
data/statblock.gd
Normal file
19
data/statblock.gd
Normal 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
1
data/statblock.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://727tgvtmq4nb
|
||||
Reference in New Issue
Block a user