* Added avatars * Added content from the 2023/03/22 update (#287) * Added avatars (#286) * Added localizations * Added update, changed CSS * Add logic for showing Lucifer uncap and 250 art
This commit is contained in:
parent
a83c384300
commit
43287a692c
5 changed files with 51 additions and 2 deletions
|
|
@ -141,7 +141,14 @@ const SummonUnit = ({
|
||||||
|
|
||||||
let suffix = ''
|
let suffix = ''
|
||||||
if (gridSummon.object.uncap.xlb && gridSummon.uncap_level == 6) {
|
if (gridSummon.object.uncap.xlb && gridSummon.uncap_level == 6) {
|
||||||
suffix = '_03'
|
if (
|
||||||
|
gridSummon.transcendence_step >= 1 &&
|
||||||
|
gridSummon.transcendence_step < 5
|
||||||
|
) {
|
||||||
|
suffix = '_03'
|
||||||
|
} else if (gridSummon.transcendence_step === 5) {
|
||||||
|
suffix = '_04'
|
||||||
|
}
|
||||||
} else if (
|
} else if (
|
||||||
upgradedSummons.indexOf(summon.granblue_id.toString()) != -1 &&
|
upgradedSummons.indexOf(summon.granblue_id.toString()) != -1 &&
|
||||||
gridSummon.uncap_level == 5
|
gridSummon.uncap_level == 5
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
.Contents {
|
.Contents {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr;
|
||||||
gap: $unit-4x;
|
gap: $unit-4x;
|
||||||
|
|
||||||
.characters,
|
.characters,
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,40 @@ const UpdatesPage = () => {
|
||||||
return (
|
return (
|
||||||
<div className="Updates PageContent">
|
<div className="Updates PageContent">
|
||||||
<h1>{common('about.segmented_control.updates')}</h1>
|
<h1>{common('about.segmented_control.updates')}</h1>
|
||||||
|
<ContentUpdate
|
||||||
|
version="2023-03U"
|
||||||
|
dateString="2023/03/22"
|
||||||
|
event="events.content"
|
||||||
|
newItems={{
|
||||||
|
weapon: ['1040024300'],
|
||||||
|
}}
|
||||||
|
uncappedItems={{
|
||||||
|
weapon: [
|
||||||
|
'1040217600',
|
||||||
|
'1040312800',
|
||||||
|
'1040023200',
|
||||||
|
'1040217800',
|
||||||
|
'1040420800',
|
||||||
|
'1040213900',
|
||||||
|
'1040116200',
|
||||||
|
'1040216500',
|
||||||
|
'1040616700',
|
||||||
|
'1040420700',
|
||||||
|
'1040913000',
|
||||||
|
'1040419000',
|
||||||
|
],
|
||||||
|
summon: [
|
||||||
|
'2040398000',
|
||||||
|
'2040413000',
|
||||||
|
'2040401000',
|
||||||
|
'2040406000',
|
||||||
|
'2040418000',
|
||||||
|
'2040409000',
|
||||||
|
'2040056000',
|
||||||
|
],
|
||||||
|
}}
|
||||||
|
numNotes={2}
|
||||||
|
/>
|
||||||
<ContentUpdate
|
<ContentUpdate
|
||||||
version="2023-03F"
|
version="2023-03F"
|
||||||
dateString="2023/03/16"
|
dateString="2023/03/16"
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,16 @@
|
||||||
"date": "{{month}}/{{year}}",
|
"date": "{{month}}/{{year}}",
|
||||||
"legfest": "Legend Festival",
|
"legfest": "Legend Festival",
|
||||||
"flash": "Flash Gala",
|
"flash": "Flash Gala",
|
||||||
|
"content": "Content Update",
|
||||||
"uncap": "Uncap"
|
"uncap": "Uncap"
|
||||||
},
|
},
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"2023-03U": {
|
||||||
|
"features": [
|
||||||
|
"Added Siete HL (raid)",
|
||||||
|
"Chaser name corrected (was 'Chase')"
|
||||||
|
]
|
||||||
|
},
|
||||||
"2023-03F": {
|
"2023-03F": {
|
||||||
"features": [
|
"features": [
|
||||||
"Added new class \"Yamato\"",
|
"Added new class \"Yamato\"",
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
"date": "{{year}}年{{month}}月",
|
"date": "{{year}}年{{month}}月",
|
||||||
"legfest": "レジェンドフェス",
|
"legfest": "レジェンドフェス",
|
||||||
"flash": "グランデフェス",
|
"flash": "グランデフェス",
|
||||||
|
"content": "アップデート",
|
||||||
"uncap": "上限解放"
|
"uncap": "上限解放"
|
||||||
},
|
},
|
||||||
"versions": {
|
"versions": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue