This commit is contained in:
Marek Lenczewski
2026-04-01 22:53:28 +02:00
parent b236cd52cb
commit e76c66eda6
70 changed files with 1016 additions and 732 deletions

View File

@@ -1,5 +1,5 @@
extends Resource
class_name EntityStats
class_name BaseStats
@export var max_health := 100.0
@export var health_regen := 0.0

View File

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

View File

@@ -0,0 +1,2 @@
extends EnemyStats
class_name BossStats

View File

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

View File

@@ -0,0 +1,12 @@
extends BaseStats
class_name EnemyStats
@export var speed := 3.0
@export var attack_range := 2.0
@export var attack_cooldown := 1.5
@export var attack_damage := 5.0
@export var regen_fast := 0.10
@export var regen_slow := 0.01
@export var aggro_decay := 1.0
@export var portal_radius := 10.0
@export var alert_radius := 3.0

View File

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

View File

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

View File

@@ -0,0 +1,10 @@
extends BaseStats
class_name PlayerStats
@export var speed := 5.0
@export var jump_velocity := 4.5
@export var target_range := 20.0
@export var combat_timeout := 3.0
@export var respawn_time := 3.0
@export var gcd_time := 0.5
@export var aa_cooldown := 0.5

View File

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

View File

@@ -0,0 +1,5 @@
extends BaseStats
class_name PortalStats
@export var spawn_count := 3
@export var thresholds: Array[float] = [0.85, 0.70, 0.55, 0.40, 0.25, 0.10]

View File

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