Update ER generator
This commit is contained in:
@@ -308,9 +308,9 @@ const DataForm = ({
|
||||
updateData('signets', newSignets)
|
||||
}}
|
||||
>
|
||||
<option value='start'>과도</option>
|
||||
<option value='core'>핵심</option>
|
||||
<option value='sub'>보조</option>
|
||||
<option value='sub'>차선</option>
|
||||
<option value='optional'>선택</option>
|
||||
</Select>
|
||||
</Box>
|
||||
</Flex>
|
||||
|
||||
@@ -116,10 +116,10 @@ const SignetBox = ({ signets }: SignetBoxProps) => {
|
||||
fontWeight: 'bold',
|
||||
color:
|
||||
signet.type === 'core'
|
||||
? '#E39070'
|
||||
: signet.type === 'start'
|
||||
? '#FEDEC2'
|
||||
: '#A59A9B',
|
||||
? '#F87360'
|
||||
: signet.type === 'sub'
|
||||
? '#F5C1B7'
|
||||
: '#A3928A',
|
||||
}}
|
||||
className='signetTypeLabel'
|
||||
>
|
||||
@@ -127,9 +127,9 @@ const SignetBox = ({ signets }: SignetBoxProps) => {
|
||||
<Box>
|
||||
{signet.type === 'core'
|
||||
? '핵심'
|
||||
: signet.type === 'start'
|
||||
? '과도'
|
||||
: '보조'}
|
||||
: signet.type === 'sub'
|
||||
? '차선'
|
||||
: '선택'}
|
||||
</Box>
|
||||
<Box>각인</Box>
|
||||
</Box>
|
||||
|
||||
@@ -32,7 +32,7 @@ export interface ERGGEquipmentSet {
|
||||
|
||||
export interface ERGGSignet {
|
||||
group: string
|
||||
type: 'core' | 'start' | 'sub'
|
||||
type: 'core' | 'sub' | 'optional'
|
||||
nexus: 1 | 2
|
||||
description: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user