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

refactor(游戏平衡): 调整敌人波数和属性配置

- 将初始波数从1改为10
- 调整普通波次的敌人数量和生成频率
- 降低每波敌人数量增长百分比
- 更新小鸡角色的碰撞体和动画配置
This commit is contained in:
2025-11-16 14:51:36 +08:00
parent b7638fa9b6
commit 63a0d1bf4a
4 changed files with 49 additions and 13 deletions
+4 -4
View File
@@ -22,11 +22,11 @@ func duplicate() -> Wave:
wave.per = per
return wave
static var current: int = startWith(1)
static var current: int = startWith(10)
static var WAVE_NORMAL = [
# Wave.create("Hen", 1, 5, false, 0, INF, 1),
# Wave.create("Cat", 1, 5, false, 0, INF, 1),
Wave.create("Dog", 1, 5, false, 0, INF, 1),
Wave.create("Hen", 1, 3, false, 0, INF, 1),
Wave.create("Cat", 1, 3, false, 0, INF, 1),
Wave.create("Dog", 1, 3, false, 0, INF, 1),
Wave.create("Chick", 0, 0, true, 9, INF, 15),
Wave.create("Bear", 0, 0, true, 19, INF, 10),
Wave.create("KukeMC", 0, 0, true, 14, INF, 20),