Wave generation redesign

This commit is contained in:
2025-08-30 22:39:14 +02:00
parent e889d131f7
commit d253df68b5
11 changed files with 1678 additions and 110 deletions

14
Game/Maps/Map1_setup.gd Normal file
View File

@ -0,0 +1,14 @@
extends Node
var waves = [
[
[10, 0.2, 0.8, 0.2, 0.0], #wave 1 #First path
[20, 0.4, 0.5, 0.5, 0.0], #wave 2
[30, 0.5, 0.4, 0.4, 0.1], #wave 3
[40, 0.8, 0.3, 0.2, 0.5], #wave 4
[50, 0.9, 0.1, 0.2, 0.7], #wave 5
]
]
var lives = 20
var coins = 500