From d5aca6bdf42eb16f295b51cf3ea8535dc3a93017 Mon Sep 17 00:00:00 2001 From: Artur David Date: Tue, 23 Jun 2026 23:33:04 +0200 Subject: [PATCH] weaken tornado spawned by fireball perk to 33% damage --- scripts/fireball.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/fireball.gd b/scripts/fireball.gd index 8b70f6d..e756900 100644 --- a/scripts/fireball.gd +++ b/scripts/fireball.gd @@ -27,5 +27,6 @@ func _spawn_explosion() -> void: func _spawn_tornado() -> void: var tw = tornado_scene.instantiate() tw.global_position = global_position + tw.explosion_damage = int(round(tw.explosion_damage * 0.33)) get_parent().call_deferred("add_child", tw)