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

feat(角色): 为赛博猫猫和深海添加掉落物品配置

feat(武器): 新增引力源武器及其资源文件
- 添加引力源武器的场景配置和SVG资源
- 包含引力源武器的物理效果和描述文本

fix(子弹): 调整紫色小水晶的穿透属性
- 将穿透值设为0.25
- 更新链式机枪的描述以反映穿透属性变化

refactor(角色): 移除公鸡角色的武器存储
- 删除公鸡角色中不再需要的武器实例

chore(关卡): 更新调试关卡配置
- 将waveDebugConfig改为使用WAVE_MOWING
This commit is contained in:
2026-04-11 09:48:08 +08:00
parent fa34405c3d
commit 1b737ac8aa
9 changed files with 135 additions and 23 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ static var WAVE_MOWING = [
]
static var WAVE_EMPTY = []
static var waveReleaseConfig = [WAVE_TESTBOSS_ALL, 1]
static var waveDebugConfig = [WAVE_JUSTJOKE, 1]
static var waveDebugConfig = [WAVE_MOWING, 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]