From 9a178498595a18639fcbefdedf71b32fa76800aa Mon Sep 17 00:00:00 2001 From: Super_Z <1401203083@qq.com> Date: Tue, 23 Jun 2026 14:15:29 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B8=85=E7=90=86=E6=9C=AA=E7=94=A8?= =?UTF-8?q?=E5=8F=98=E9=87=8F=20+=20=E6=96=B0=E5=A2=9E=E6=98=9F=E5=9B=BE?= =?UTF-8?q?=E5=A4=A9=E8=B5=8B=E7=9B=AE=E6=A0=87=E6=8F=90=E7=A4=BA=20+=20ig?= =?UTF-8?q?nore=20skills/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + src/app/page.tsx | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e2fc7eaaa..e59368d0e 100644 --- a/.gitignore +++ b/.gitignore @@ -146,3 +146,4 @@ dev.out.log *.tsbuildinfo next-env.d.ts .vercel +skills/ diff --git a/src/app/page.tsx b/src/app/page.tsx index 47e0fe89c..6b537fc33 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -82,7 +82,6 @@ export default function Page() { const ownedTechCount = Object.values(ownedTech).filter((v) => v > 0).length; const ownedFragCount = Object.values(ownedFragments).filter(Boolean).length; const ownedAchCount = Object.values(ownedAchievements).filter(Boolean).length; - const ownedConstCount = ownedConstellation.length; const canPrestige = contact >= 100; const hasPendingPerk = pendingPerkChoices && pendingPerkChoices.length > 0; @@ -101,6 +100,9 @@ export default function Page() { if (energy >= 1 && totalDecoded >= 3) { goal = "「探险」标签可深入遗迹,获取丰厚奖励"; } + if (ascensions >= 1 && ownedConstellation.length > 0) { + goal = `星图天赋已觉醒 ${ownedConstellation.length}/18,继续飞升获取更多`; + } if (warehouseFull) { goal = "⚠ 仓库已满,产能浪费中!请解码晶体或升级仓库"; }