From 77388846821bddf1d43c431859cd8f70050d13ed Mon Sep 17 00:00:00 2001 From: mengyxu Date: Sat, 24 May 2025 18:27:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=BA=83=E7=83=82=E8=B0=83=E6=95=B4=EF=BC=8C?= =?UTF-8?q?=E8=A3=85=E5=A4=87=E5=BC=B9=E6=A1=86BUG=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1.溃烂层数上限调整为8层,每层效果调整为-10%护甲 2.修复右半屏装备属性弹框错位BUG --- src/config/skill/buff.ts | 2 +- src/tool/caller/equip.ts | 2 +- src/views/version/update-log.vue | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/config/skill/buff.ts b/src/config/skill/buff.ts index f85f6da..dd2caba 100644 --- a/src/config/skill/buff.ts +++ b/src/config/skill/buff.ts @@ -157,7 +157,7 @@ export class ControlBuff extends AttackBuff { //溃烂 export class KuiLan extends PercentAttackedBuff { constructor(name: string, last: number) { - super(name, 40, last, 2); + super(name, 10, last, 8); } desc(): string { return replace(t('skill.kongbulingyu.2'), [this.percent]); diff --git a/src/tool/caller/equip.ts b/src/tool/caller/equip.ts index 7a0adbb..e5c17be 100644 --- a/src/tool/caller/equip.ts +++ b/src/tool/caller/equip.ts @@ -80,7 +80,7 @@ export const callEuqipTipsLocation = (e, mobile) => { tipsStyle2.left = 'calc(' + x + 'px + 21rem)'; } else { tipsStyle.right = maxW - x + 'px'; - tipsStyle.right2 = 'calc(' + tipsStyle.righ + ' - 21rem)'; + tipsStyle2.right = 'calc(' + tipsStyle.right + ' + 21rem)'; } if (y < maxH / 2) { tipsStyle.top = y + 'px'; diff --git a/src/views/version/update-log.vue b/src/views/version/update-log.vue index f3559f8..48b99aa 100644 --- a/src/views/version/update-log.vue +++ b/src/views/version/update-log.vue @@ -43,6 +43,10 @@ const updateLogs: any = [{ '弹窗可拖动位置', '自动重铸费用改为1.5倍', '十九叉被动数值调整', + '溃烂层数上限调整为8层,每层效果调整为-10%护甲', + ], + bug: [ + '修复右半屏装备属性弹框错位BUG' ] }, { date: '2025-05-23', version: '1.0',