extends Resource class_name CardInfo @export var title : String @export var bg_color : Color = Color("2364aaff") @export var type_icon : Texture = preload("res://common/icons/cube-3d-sphere.svg") @export var texture : Texture @export var important_stat_text : String @export var important_stat_icon : Texture @export var stats : Array[CardStatInfo] = [] @export var sections : Array[CardSectionInfo] = [] func _init( _title : String = "", ): title = _title