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:
parent
de8e3b322c
commit
ecbfd3ae7f
7 changed files with 86 additions and 0 deletions
|
|
@ -7,6 +7,46 @@ const ContentUpdate2024 = () => {
|
||||||
|
|
||||||
return (
|
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
|
<ContentUpdate
|
||||||
version="2024-03U"
|
version="2024-03U"
|
||||||
dateString="2024/03/10"
|
dateString="2024/03/10"
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,8 @@ const CharacterResult = (props: Props) => {
|
||||||
type="character"
|
type="character"
|
||||||
flb={character.uncap.flb}
|
flb={character.uncap.flb}
|
||||||
ulb={character.uncap.ulb}
|
ulb={character.uncap.ulb}
|
||||||
|
transcendence={character.uncap.transcendence}
|
||||||
|
transcendenceStage={5}
|
||||||
special={character.special}
|
special={character.special}
|
||||||
/>
|
/>
|
||||||
<div className={styles.tags}>
|
<div className={styles.tags}>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
.result {
|
.result {
|
||||||
|
align-items: center;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: $unit;
|
gap: $unit;
|
||||||
|
|
@ -53,6 +54,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: calc($unit / 2);
|
gap: calc($unit / 2);
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
.WeaponLabelIcon {
|
.WeaponLabelIcon {
|
||||||
$aspect-ratio: calc(25 / 60);
|
$aspect-ratio: calc(25 / 60);
|
||||||
|
|
@ -62,6 +64,25 @@
|
||||||
height: $height;
|
height: $height;
|
||||||
width: calc($height / $aspect-ratio);
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ import { useRouter } from 'next/router'
|
||||||
|
|
||||||
import UncapIndicator from '~components/uncap/UncapIndicator'
|
import UncapIndicator from '~components/uncap/UncapIndicator'
|
||||||
import WeaponLabelIcon from '~components/weapon/WeaponLabelIcon'
|
import WeaponLabelIcon from '~components/weapon/WeaponLabelIcon'
|
||||||
|
import CheckIcon from '~public/icons/Check.svg'
|
||||||
|
|
||||||
import styles from './index.module.scss'
|
import styles from './index.module.scss'
|
||||||
|
|
||||||
|
|
@ -32,10 +33,16 @@ const SummonResult = (props: Props) => {
|
||||||
type="summon"
|
type="summon"
|
||||||
flb={summon.uncap.flb}
|
flb={summon.uncap.flb}
|
||||||
ulb={summon.uncap.ulb}
|
ulb={summon.uncap.ulb}
|
||||||
|
transcendence={summon.uncap.transcendence}
|
||||||
|
transcendenceStage={5}
|
||||||
special={false}
|
special={false}
|
||||||
/>
|
/>
|
||||||
<div className={styles.tags}>
|
<div className={styles.tags}>
|
||||||
<WeaponLabelIcon labelType={Element[summon.element]} />
|
<WeaponLabelIcon labelType={Element[summon.element]} />
|
||||||
|
<div className={styles.subaura}>
|
||||||
|
<CheckIcon />
|
||||||
|
<span>Subaura</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,8 @@ const WeaponResult = (props: Props) => {
|
||||||
type="weapon"
|
type="weapon"
|
||||||
flb={weapon.uncap.flb}
|
flb={weapon.uncap.flb}
|
||||||
ulb={weapon.uncap.ulb}
|
ulb={weapon.uncap.ulb}
|
||||||
|
transcendence={weapon.uncap.transcendence}
|
||||||
|
transcendenceStage={5}
|
||||||
special={false}
|
special={false}
|
||||||
/>
|
/>
|
||||||
<div className={styles.tags}>
|
<div className={styles.tags}>
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,13 @@
|
||||||
"uncap": "Uncap"
|
"uncap": "Uncap"
|
||||||
},
|
},
|
||||||
"versions": {
|
"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": {
|
"2024-02U": {
|
||||||
"features": [
|
"features": [
|
||||||
"Added new class: Onmyoji",
|
"Added new class: Onmyoji",
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,13 @@
|
||||||
"uncap": "上限解放"
|
"uncap": "上限解放"
|
||||||
},
|
},
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"2024-03U3": {
|
||||||
|
"features": [
|
||||||
|
"新マルチバトル追加「ティアマト・アウラマグナHL」「シュヴァリエ・クレドマグナHL」",
|
||||||
|
"う限界超越可能を表示",
|
||||||
|
"召喚石検索にサブ加護有を表示"
|
||||||
|
]
|
||||||
|
},
|
||||||
"2024-02U": {
|
"2024-02U": {
|
||||||
"features": [
|
"features": [
|
||||||
"新ジョブ「陰陽師」を追加",
|
"新ジョブ「陰陽師」を追加",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue