summaryrefslogtreecommitdiff
path: root/Effects/SlowEffect.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-10-27 15:52:48 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-10-27 15:52:48 +0100
commit15a1d2a66e48324e1d560dc13b776627820f3999 (patch)
tree4c062545a4c1a750293b52d5c11258f9b4218a2a /Effects/SlowEffect.gd
parenta495681453c97578cc4a408d6919c6879524a603 (diff)
next commit
Diffstat (limited to 'Effects/SlowEffect.gd')
-rw-r--r--Effects/SlowEffect.gd8
1 files changed, 6 insertions, 2 deletions
diff --git a/Effects/SlowEffect.gd b/Effects/SlowEffect.gd
index a3070ca..a995b7e 100644
--- a/Effects/SlowEffect.gd
+++ b/Effects/SlowEffect.gd
@@ -3,17 +3,21 @@ extends Effect
@onready var unit: Unit = get_parent()
+var level := 1
+
var base_speed: float
-var magnitude: float = 0.5 :
+var magnitude: float:
set(value):
magnitude = clamp(value, 0.0, 1.0)
func _ready():
+ magnitude = 0.1 * level
+
add()
- set_duration(5.0)
+ set_duration(5.0 + ((level - 1) * 0.1))
duration_finished.connect(func():
remove()
)