From ecbfd3ae7f5b4d438c309a0a4085f8de1be68bdc Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 25 Mar 2024 05:55:19 -0400 Subject: [PATCH] Game updates: 2024-03-25 (#412) * Adds new raids and drop items * Adds support for showing transcendence and subauras in search results --------- Co-authored-by: Justin Edmund <383021+jedmund@users.noreply.github.com> --- .../about/updates/ContentUpdate2024/index.tsx | 40 +++++++++++++++++++ .../character/CharacterResult/index.tsx | 2 + .../summon/SummonResult/index.module.scss | 21 ++++++++++ components/summon/SummonResult/index.tsx | 7 ++++ components/weapon/WeaponResult/index.tsx | 2 + public/locales/en/updates.json | 7 ++++ public/locales/ja/updates.json | 7 ++++ 7 files changed, 86 insertions(+) diff --git a/components/about/updates/ContentUpdate2024/index.tsx b/components/about/updates/ContentUpdate2024/index.tsx index 7765b055..6a26a1cb 100644 --- a/components/about/updates/ContentUpdate2024/index.tsx +++ b/components/about/updates/ContentUpdate2024/index.tsx @@ -7,6 +7,46 @@ const ContentUpdate2024 = () => { return ( <> + + + { type="character" flb={character.uncap.flb} ulb={character.uncap.ulb} + transcendence={character.uncap.transcendence} + transcendenceStage={5} special={character.special} />
diff --git a/components/summon/SummonResult/index.module.scss b/components/summon/SummonResult/index.module.scss index cf165364..ee36f4e2 100644 --- a/components/summon/SummonResult/index.module.scss +++ b/components/summon/SummonResult/index.module.scss @@ -1,4 +1,5 @@ .result { + align-items: center; border-radius: 6px; display: flex; gap: $unit; @@ -53,6 +54,7 @@ display: flex; flex-direction: row; gap: calc($unit / 2); + align-items: center; .WeaponLabelIcon { $aspect-ratio: calc(25 / 60); @@ -62,6 +64,25 @@ height: $height; width: calc($height / $aspect-ratio); } + + .subaura { + align-items: center; + display: flex; + flex-direction: row; + gap: $unit-half; + + svg { + fill: var(--text-secondary); + width: $unit-2x; + height: $unit-2x; + } + + span { + color: var(--text-secondary); + font-size: $font-small; + font-weight: $bold; + } + } } } } diff --git a/components/summon/SummonResult/index.tsx b/components/summon/SummonResult/index.tsx index 1361c28a..4a7fe4d3 100644 --- a/components/summon/SummonResult/index.tsx +++ b/components/summon/SummonResult/index.tsx @@ -3,6 +3,7 @@ import { useRouter } from 'next/router' import UncapIndicator from '~components/uncap/UncapIndicator' import WeaponLabelIcon from '~components/weapon/WeaponLabelIcon' +import CheckIcon from '~public/icons/Check.svg' import styles from './index.module.scss' @@ -32,10 +33,16 @@ const SummonResult = (props: Props) => { type="summon" flb={summon.uncap.flb} ulb={summon.uncap.ulb} + transcendence={summon.uncap.transcendence} + transcendenceStage={5} special={false} />
+
+ + Subaura +
diff --git a/components/weapon/WeaponResult/index.tsx b/components/weapon/WeaponResult/index.tsx index 9506a952..ea2ab682 100644 --- a/components/weapon/WeaponResult/index.tsx +++ b/components/weapon/WeaponResult/index.tsx @@ -44,6 +44,8 @@ const WeaponResult = (props: Props) => { type="weapon" flb={weapon.uncap.flb} ulb={weapon.uncap.ulb} + transcendence={weapon.uncap.transcendence} + transcendenceStage={5} special={false} />
diff --git a/public/locales/en/updates.json b/public/locales/en/updates.json index 402fa002..ce16d109 100644 --- a/public/locales/en/updates.json +++ b/public/locales/en/updates.json @@ -29,6 +29,13 @@ "uncap": "Uncap" }, "versions": { + "2024-03U3": { + "features": [ + "Added new raids: Tiamat Aura Omega (Impossible) and Luminiera Credo Omega (Impossible)", + "When searching for characters, weapons, and summons, results will now show the item can be transcended", + "When searching for summons, results will now show whether the summon has a subaura" + ] + }, "2024-02U": { "features": [ "Added new class: Onmyoji", diff --git a/public/locales/ja/updates.json b/public/locales/ja/updates.json index 57de4bf6..1995e173 100644 --- a/public/locales/ja/updates.json +++ b/public/locales/ja/updates.json @@ -29,6 +29,13 @@ "uncap": "上限解放" }, "versions": { + "2024-03U3": { + "features": [ + "新マルチバトル追加「ティアマト・アウラマグナHL」「シュヴァリエ・クレドマグナHL」", + "う限界超越可能を表示", + "召喚石検索にサブ加護有を表示" + ] + }, "2024-02U": { "features": [ "新ジョブ「陰陽師」を追加",