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,6 +1,6 @@
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
[gd_resource type="Resource" script_class="BossStats" load_steps=2 format=3]
[ext_resource type="Script" path="res://scripts/resources/entity_stats.gd" id="1"]
[ext_resource type="Script" path="res://scripts/resources/boss_stats.gd" id="1"]
[resource]
script = ExtResource("1")
@@ -9,3 +9,12 @@ health_regen = 0.0
max_shield = 100.0
shield_regen_delay = 5.0
shield_regen_time = 8.0
speed = 3.0
attack_range = 2.0
attack_cooldown = 1.5
attack_damage = 5.0
regen_fast = 0.1
regen_slow = 0.01
aggro_decay = 1.0
portal_radius = 10.0
alert_radius = 3.0

View File

@@ -1,11 +1,7 @@
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
[gd_resource type="Resource" script_class="EnemyStats" format=3 uid="uid://cj1shmjwf0xeo"]
[ext_resource type="Script" path="res://scripts/resources/entity_stats.gd" id="1"]
[ext_resource type="Script" uid="uid://bh2uuuvl30y0x" path="res://scripts/resources/enemy_stats.gd" id="1"]
[resource]
script = ExtResource("1")
max_health = 100.0
health_regen = 0.0
max_shield = 50.0
shield_regen_delay = 3.0
shield_regen_time = 5.0

View File

@@ -1,11 +1,8 @@
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
[gd_resource type="Resource" script_class="PlayerStats" format=3 uid="uid://btd0g0oiulssq"]
[ext_resource type="Script" path="res://scripts/resources/entity_stats.gd" id="1"]
[ext_resource type="Script" uid="uid://ypyntbavbsto" path="res://scripts/resources/player_stats.gd" id="1"]
[resource]
script = ExtResource("1")
max_health = 100.0
health_regen = 1.0
max_shield = 50.0
shield_regen_delay = 3.0
shield_regen_time = 5.0

View File

@@ -1,9 +1,7 @@
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
[gd_resource type="Resource" script_class="PortalStats" format=3 uid="uid://be2vv5u0jw0yw"]
[ext_resource type="Script" path="res://scripts/resources/entity_stats.gd" id="1"]
[ext_resource type="Script" uid="uid://bioid3s5oftxs" path="res://scripts/resources/portal_stats.gd" id="1"]
[resource]
script = ExtResource("1")
max_health = 500.0
health_regen = 0.0
max_shield = 0.0