Update v5.8 data

This commit is contained in:
Sakura Knoll
2022-07-06 00:35:34 +09:00 Unverified
parent 69735e5555
commit d5a569e178
7 changed files with 6466 additions and 4232 deletions
+20 -3
View File
@@ -87,7 +87,14 @@ const SingleStigmataPage = ({
HP : {stigmataData.hp} / ATK : {stigmataData.atk} / DEF :{' '}
{stigmataData.def} / CRT : {stigmataData.crt}
</Box>
<Paragraph p={2}>{stigmataData.skill.description}</Paragraph>
<Paragraph
p={2}
sx={{
whiteSpace: 'pre-wrap',
}}
>
{stigmataData.skill.description}
</Paragraph>
</Card>
{stigmataSet != null && (
@@ -122,13 +129,23 @@ const SingleStigmataPage = ({
<Heading as='h3' m={0} p={2} sx={{ borderBottom: 'default' }}>
{stigmataSet.twoSetSkill.name}
</Heading>
<Paragraph m={0} p={2} sx={{ borderBottom: 'default' }}>
<Paragraph
m={0}
p={2}
sx={{ borderBottom: 'default', whiteSpace: 'pre-wrap' }}
>
{stigmataSet.twoSetSkill.description}
</Paragraph>
<Heading as='h3' m={0} p={2} sx={{ borderBottom: 'default' }}>
{stigmataSet.threeSetSkill.name}
</Heading>
<Paragraph m={0} p={2}>
<Paragraph
m={0}
p={2}
sx={{
whiteSpace: 'pre-wrap',
}}
>
{stigmataSet.threeSetSkill.description}
</Paragraph>
</Card>
+7 -2
View File
@@ -101,6 +101,7 @@ const StigmataSetPage = ({
sx={{
borderBottom: 'default',
'&:last-child': { borderBottom: 'none' },
whiteSpace: 'pre-wrap',
}}
>
{stigmataSetItem.skill.description}
@@ -114,13 +115,17 @@ const StigmataSetPage = ({
<Heading as='h2' m={0} p={2} sx={{ borderBottom: 'default' }}>
{stigmataSet.twoSetSkill.name}
</Heading>
<Paragraph m={0} p={2} sx={{ borderBottom: 'default' }}>
<Paragraph
m={0}
p={2}
sx={{ borderBottom: 'default', whiteSpace: 'pre-wrap' }}
>
{stigmataSet.twoSetSkill.description}
</Paragraph>
<Heading as='h2' m={0} p={2} sx={{ borderBottom: 'default' }}>
{stigmataSet.threeSetSkill.name}
</Heading>
<Paragraph m={0} p={2}>
<Paragraph m={0} p={2} sx={{ whiteSpace: 'pre-wrap' }}>
{stigmataSet.threeSetSkill.description}
</Paragraph>
</Card>