Initial commit

This commit is contained in:
gamer147
2026-04-01 17:16:58 -04:00
commit 0233cb6f46
71 changed files with 2376 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
class_name DLTileset extends Resource
@export var floor_tile_coords: Vector2i
@export var wall_tile_coords: Vector2i

View File

@@ -0,0 +1 @@
uid://c6701vy8h5rfx

View File

@@ -0,0 +1,12 @@
class_name UnitAllegiance extends Resource
enum AllegianceType {
PLAYER,
ENEMY,
PLAYER_ALLY,
ENEMY_ALLY,
UNAFFILIATED
}
@export var type: AllegianceType
@export var color: Color

View File

@@ -0,0 +1 @@
uid://bhglsexm8dtpj

View File

@@ -0,0 +1,3 @@
class_name UnitInfo extends Resource
@export var name: String = "Unit"

View File

@@ -0,0 +1 @@
uid://d37ulss2k0bq5

View File

@@ -0,0 +1,17 @@
class_name UnitStats extends Resource
@export var max_hp: int = 10
@export var current_hp: int
@export var phys_atk: int = 1
@export var phys_def: int = 1
@export var magic_atk: int = 0
@export var magic_def: int = 0
@export var hit: int = 85
@export var atk_range: int = 1
@export var spd: int = 1
@export var eva: int = 1
@export var lck: int = 1
func _init(max_hp: int = 10) -> void:
self.max_hp = max_hp
current_hp = max_hp

View File

@@ -0,0 +1 @@
uid://cydoey8a8nmb8