去掉skillcom处理 buff skill只负责动画运行和碰撞伤害

This commit is contained in:
2025-08-12 10:31:01 +08:00
parent ca8bbd397b
commit 1273ec6e99
13 changed files with 166 additions and 443 deletions

View File

@@ -75,7 +75,7 @@ export class Monster extends ecs.Entity {
hv.box_group = box_group;
hv.hero_uuid= uuid;
hv.hero_name= hero.name;
hv.speed =hv.ospeed = hero.speed;
hv.speed =hv.speed_base = hero.speed;
hv.dis = hero.dis;
// 肉鸽模式使用固定数值,否则使用等级计算
@@ -174,7 +174,7 @@ export class Monster extends ecs.Entity {
hv.ap=hv.ap*(100+buff.value)/100
break
case BuffAttr.FROST_RATIO:
hv.frost_ratto+=buff.value
hv.frost_ratio+=buff.value
break
}
}