fix(config): 修正技能ID配置错误与范围注释偏移

1.  调整技能商店范围攻击卡的注释范围,移除废弃的6201配置
2.  同步更新技能配置、卡牌配置与文档中的6201/6201关联错误
3.  将原6201技能数据迁移至正确的6107、6108等ID下
This commit is contained in:
panFD
2026-08-16 20:55:46 +08:00
parent f2dbd30470
commit 22bd377275
4 changed files with 6 additions and 17 deletions

View File

@@ -123,7 +123,7 @@
```typescript
[SkillTriggerType.Atking]: {
// 普攻触发 360% 范围伤害 + 击退
6201: [{ lv: 1, t_num: 1, overrides: { ap: 150, bck: 30 } }],
6107: [{ lv: 1, t_num: 1, overrides: { ap: 150, bck: 30 } }],
// 普攻吸血 35%
6302: [{ lv: 1, t_num: 1, overrides: { TGroup: TGroup.Self, ap: 35 } }],
},
@@ -201,7 +201,7 @@
```typescript
[SkillTriggerType.Atking]: {
// 范围伤害 + 群体击退
6201: [{ lv: 1, t_num: 1, overrides: { ap: 200, bck: 50, hit_count: 6 } }],
6108: [{ lv: 1, t_num: 1, overrides: { ap: 200, bck: 50, hit_count: 6 } }],
},
```