1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

feat(角色): 添加新角色资源并更新相关配置

添加Kernyr和CyberCat的角色图片资源,更新角色场景文件中的纹理引用
调整Kernyr的缩放比例,修改Wave配置以包含新角色
This commit is contained in:
2026-04-05 14:37:59 +08:00
parent 3691a06f8b
commit d46162e754
7 changed files with 87 additions and 6 deletions
+4 -3
View File
@@ -49,8 +49,9 @@ static var WAVE_TESTBOSS_CHICK = [
Wave.create("Chick", 0, 0, true, 0, INF, 1),
]
static var WAVE_JUSTJOKE = [
Wave.create("Kernyr", 0, 0, true, 0, INF, 2),
Wave.create("CyberCat", 0, 0, true, 1, INF, 2)
Wave.create("Kernyr", 0, 0, true, 0, INF, 1),
Wave.create("CyberCat", 0, 0, true, 0, INF, 1),
Wave.create("Deepsea", 0, 0, true, 0, INF, 1)
]
static var WAVE_MOWING = [
Wave.create("Hen", 15, 30, false, 0, INF, 1),
@@ -60,7 +61,7 @@ static var WAVE_MOWING = [
]
static var WAVE_EMPTY = []
static var waveReleaseConfig = [WAVE_TESTBOSS_ALL, 1]
static var waveDebugConfig = [WAVE_TESTBOSS_ALL, 1]
static var waveDebugConfig = [WAVE_JUSTJOKE, 1]
static var current: int = startWith(waveReleaseConfig[1]) if WorldManager.isRelease() else startWith(waveDebugConfig[1])
static var data = waveReleaseConfig[0] if WorldManager.isRelease() else waveDebugConfig[0]