Browse Source

修复鬼门甲被动BUG(预期提升200%,实际提升200倍)

v1.0
许孟阳 5 days ago
parent
commit
db27522972
  1. 2
      src/config/skill/buff.ts
  2. 1
      src/views/version/update-log.vue

2
src/config/skill/buff.ts

@ -138,7 +138,7 @@ export class BlocPercentBuff extends PercentAttackedBuff { @@ -138,7 +138,7 @@ export class BlocPercentBuff extends PercentAttackedBuff {
return replace(t('skill.blocbuff.2'), [this.percent * this.layer]);
}
takeEffect(owner: BattleRole): void {
owner.extraAttr.bloc += Math.ceil(owner.attr.bloc * this.percent);
owner.extraAttr.bloc += Math.ceil((owner.attr.bloc * this.percent) / 100);
}
}
//控制异常

1
src/views/version/update-log.vue

@ -46,6 +46,7 @@ const updateLogs: any = [{ @@ -46,6 +46,7 @@ const updateLogs: any = [{
],
bug: [
'修复一些UI显示BUG',
'修复鬼门甲被动BUG(预期提升200%,实际提升200倍)',
],
}, {
date: '2025-05-20', version: '1.0',

Loading…
Cancel
Save