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>
This commit is contained in:
Justin Edmund 2024-03-25 05:55:19 -04:00 committed by GitHub
parent de8e3b322c
commit ecbfd3ae7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 86 additions and 0 deletions

View file

@ -7,6 +7,46 @@ const ContentUpdate2024 = () => {
return (
<>
<ContentUpdate
version="2024-03U3"
dateString="2024/03/25"
event="events.content"
transcendedItems={{
summon: ['2040020000', '2040047000'],
}}
newItems={{
weapon: [
'1040119200',
'1040516800',
'1040713400',
'1040219100',
'1040516900',
'1040916200',
],
}}
numNotes={3}
/>
<ContentUpdate
version="2024-03F"
dateString="2024/03/19"
event="events.flash"
newItems={{
weapon: ['1040317200', '1040422600', '1040422700'],
character: ['3040517000', '3040518000', '3040519000'],
}}
/>
<ContentUpdate
version="2024-03U2"
dateString="2024/03/15"
event="events.content"
newItems={{
weapon: ['1040713300'],
character: ['3040516000'],
}}
uncappedItems={{
weapon: ['1040614500'],
}}
/>
<ContentUpdate
version="2024-03U"
dateString="2024/03/10"

View file

@ -39,6 +39,8 @@ const CharacterResult = (props: Props) => {
type="character"
flb={character.uncap.flb}
ulb={character.uncap.ulb}
transcendence={character.uncap.transcendence}
transcendenceStage={5}
special={character.special}
/>
<div className={styles.tags}>

View file

@ -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;
}
}
}
}
}

View file

@ -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}
/>
<div className={styles.tags}>
<WeaponLabelIcon labelType={Element[summon.element]} />
<div className={styles.subaura}>
<CheckIcon />
<span>Subaura</span>
</div>
</div>
</div>
</li>

View file

@ -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}
/>
<div className={styles.tags}>

View file

@ -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",

View file

@ -29,6 +29,13 @@
"uncap": "上限解放"
},
"versions": {
"2024-03U3": {
"features": [
"新マルチバトル追加「ティアマト・アウラマグナHL」「シュヴァリエ・クレドマグナHL」",
"う限界超越可能を表示",
"召喚石検索にサブ加護有を表示"
]
},
"2024-02U": {
"features": [
"新ジョブ「陰陽師」を追加",