1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-29 23:41:54 +08:00

fix: 调整测试环境下的初始波数和波数据

将测试环境下的初始波数从1改为5,并将测试数据从WAVE_NORMAL改为WAVE_TESTBOSS_ALL,以便更好地进行测试
This commit is contained in:
2025-12-14 15:09:12 +08:00
parent 0e6910ea56
commit e83a84e15d
+2 -2
View File
@@ -22,7 +22,7 @@ func duplicate() -> Wave:
wave.per = per
return wave
static var current: int = startWith(1) if WorldManager.isRelease() else startWith(1)
static var current: int = startWith(1) if WorldManager.isRelease() else startWith(5)
static var WAVE_NORMAL = [
Wave.create("Hen", 1, 3, false, 0, INF, 1),
Wave.create("Cat", 1, 3, false, 0, INF, 1),
@@ -47,7 +47,7 @@ static var WAVE_TESTBOSS_CHICK = [
Wave.create("Chick", 0, 0, true, 0, INF, 10),
]
static var WAVE_EMPTY = []
static var data = WAVE_NORMAL if WorldManager.isRelease() else WAVE_NORMAL
static var data = WAVE_NORMAL if WorldManager.isRelease() else WAVE_TESTBOSS_ALL
static func create(
entity_: String,