From db2752297204c2bc3b8dafc4c05de7da30f3b3b0 Mon Sep 17 00:00:00 2001 From: mengyxu Date: Wed, 21 May 2025 14:24:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=AC=BC=E9=97=A8=E7=94=B2?= =?UTF-8?q?=E8=A2=AB=E5=8A=A8BUG(=E9=A2=84=E6=9C=9F=E6=8F=90=E5=8D=87200%,?= =?UTF-8?q?=E5=AE=9E=E9=99=85=E6=8F=90=E5=8D=87200=E5=80=8D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/skill/buff.ts | 2 +- src/views/version/update-log.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config/skill/buff.ts b/src/config/skill/buff.ts index 9baf5bc..bf2b939 100644 --- a/src/config/skill/buff.ts +++ b/src/config/skill/buff.ts @@ -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); } } //控制异常 diff --git a/src/views/version/update-log.vue b/src/views/version/update-log.vue index 61c2e39..d8ef36b 100644 --- a/src/views/version/update-log.vue +++ b/src/views/version/update-log.vue @@ -44,8 +44,9 @@ const updateLogs: any = [{ '修复武器青光被动异常减伤BUG', '自动出售可勾选神话品质', ], - bug:[ + bug: [ '修复一些UI显示BUG', + '修复鬼门甲被动BUG(预期提升200%,实际提升200倍)', ], }, { date: '2025-05-20', version: '1.0',