update
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
script = ExtResource("1")
|
||||
ability_name = "AOE"
|
||||
type = 1
|
||||
damage = 5.0
|
||||
damage = 20.0
|
||||
ability_range = 5.0
|
||||
cooldown = 3.0
|
||||
icon = "2"
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
ability_name = "Single"
|
||||
damage = 10.0
|
||||
damage = 30.0
|
||||
ability_range = 20.0
|
||||
cooldown = 1.0
|
||||
icon = "1"
|
||||
|
||||
@@ -8,5 +8,6 @@ ability_name = "Burst"
|
||||
type = 3
|
||||
damage = 10.0
|
||||
ability_range = 20.0
|
||||
cooldown = 30.0
|
||||
cooldown = 15.0
|
||||
aoe_radius = 3.0
|
||||
icon = "4"
|
||||
|
||||
11
resources/stats/enemy_stats.tres
Normal file
11
resources/stats/enemy_stats.tres
Normal file
@@ -0,0 +1,11 @@
|
||||
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/resources/entity_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
|
||||
11
resources/stats/player_stats.tres
Normal file
11
resources/stats/player_stats.tres
Normal file
@@ -0,0 +1,11 @@
|
||||
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/resources/entity_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
|
||||
9
resources/stats/portal_stats.tres
Normal file
9
resources/stats/portal_stats.tres
Normal file
@@ -0,0 +1,9 @@
|
||||
[gd_resource type="Resource" script_class="EntityStats" load_steps=2 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/resources/entity_stats.gd" id="1"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1")
|
||||
max_health = 500.0
|
||||
health_regen = 0.0
|
||||
max_shield = 0.0
|
||||
Reference in New Issue
Block a user