Ui with timer and army count

This commit is contained in:
Victor Turgeon
2023-10-11 06:19:47 -04:00
parent 5e85af9d00
commit 58f9b64223
12 changed files with 209 additions and 16 deletions

View File

@@ -12,9 +12,10 @@ region = Rect2(0, 0, 64, 64)
maxHp = 10
attackSpeed = 50.0
speed = 4000.0
damage = 1
damage = 2
priority = 1
expReward = 25
BludGen = 0.5
cost = 20
minSpawnRange = 10.0
monsterName = "Bat"

View File

@@ -9,7 +9,7 @@ const ATTACK_COOLDOWN : float = 100
@export var damage : int = 0
@export var priority : int = 0
@export var expReward : int = 0
@export var BludGen : int = 0
@export var BludGen : float = 0
@export var cost : int = 0
@export var minSpawnRange : float = 0
@export var canAttack : bool = true