You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
418 B
GDScript

2 years ago
extends Resource
class_name CharacterCfg
#基本信息
@export var name : String
@export var type : Enum.ECharacterType
#动画
@export var sprite_frames : SpriteFrames
@export var sprite_harf_height : int
@export var sprite_width : int
2 years ago
#基本组件
@export var move : CharacterMoveCfg
2 years ago
@export var shield : ShieldCfg
@export var stun : StunCfg
2 years ago
#战斗信息
@export var hp_max : float
2 years ago
@export var attack : float