From 3c1c996c874838cecd8a37c4c918bc686b81fd86 Mon Sep 17 00:00:00 2001 From: JOJO <1498581755@qq.com> Date: Wed, 5 Aug 2026 21:55:12 +0800 Subject: [PATCH] =?UTF-8?q?rush=E6=A8=A1=E5=BC=8FBoss=E8=A1=80=E9=87=8F1x-?= =?UTF-8?q?>3x=EF=BC=88=E6=B5=81=E7=A8=8B=E6=B5=8B=E8=AF=95=E5=AE=8C?= =?UTF-8?q?=E6=AF=95=EF=BC=8C=E6=81=A2=E5=A4=8D=E6=AD=A3=E5=B8=B8=E6=8C=91?= =?UTF-8?q?=E6=88=98=E9=9A=BE=E5=BA=A6=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/enemies.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/enemies.js b/js/enemies.js index 0b36b8d..2aedb86 100644 --- a/js/enemies.js +++ b/js/enemies.js @@ -214,7 +214,7 @@ function startBoss(){ const idx=G.mode==="rush"?G.rushIdx:(G.mode==="stage"?seq[Math.min(5,G.stage-1)]:(G.bossN%8)); const cyc=G.mode==="stage"?0:Math.floor(G.bossN/8); const b=BOSSES[idx],n=tierN(); - const hpM=(G.diff===1?BAL.hard.hp:1)*(1+0.35*cyc)*(G.mode==="endless"?1+0.55*G.bossN+0.1*G.wave:1+0.12*(G.stage-1))*(G.mode==="rush"?1:1); // Boss挑战模式血量倍数(调平衡改这里) + const hpM=(G.diff===1?BAL.hard.hp:1)*(1+0.35*cyc)*(G.mode==="endless"?1+0.55*G.bossN+0.1*G.wave:1+0.12*(G.stage-1))*(G.mode==="rush"?3:1); // Boss挑战模式血量倍数(调平衡改这里) G.boss={idx,x:W/2,y:-60,ty:64,hp:b.hp*hpM,maxhp:b.hp*hpM,r:(b.rr?b.rr[0]:b.r),ry:(b.ryy?b.ryy[0]:undefined),t:0,phase:0,transT:0, col:b.col,name:b.name,sub:b.sub,fireM:BAL.fireMul(n)*(G.diff===1?BAL.hard.fire:1),dead:false, mainT:100,minorT:9999,minorSet:[],rerollT:340,ax:W/2,ay:64,mt:0,landed:false};