Нью баланс

This commit is contained in:
Georgiy Gorin
2026-04-23 16:11:34 +03:00
parent 3974d7416d
commit 34a9b6b18f
9 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -89,13 +89,13 @@ func setup(type: String, wave: int) -> void:
match type:
"slime":
move_speed = 2.8 + wave * 0.12
health = 25 + wave * 4
health = 40 + wave * 4
score_value = 10
damage_to_player = 8
enemy_level = 1
"bat":
move_speed = 5 + wave * 0.15
health = 40 + wave * 2
health = 100 + wave * 2
score_value = 20
damage_to_player = 6
base_scale = 0.7
@@ -107,7 +107,7 @@ func setup(type: String, wave: int) -> void:
#mesh_node1.set_visible(true)
"ogre":
move_speed = 3 + wave * 0.08
health = 150 + wave * 12
health = 200 + wave * 12
score_value = 50
damage_to_player = 18
base_scale = 1.5