Improve weapons.show and battlesuits.show pages
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export type SourceType =
|
||||
| 'pri-weapon-foundry'
|
||||
| 'focused-supply'
|
||||
| 'spirit-weapon-foundry'
|
||||
| 'weapon-exchange'
|
||||
| 'stigmata-exchange'
|
||||
| 'dorm-equipment-supply'
|
||||
| 'special-divine-key-supply'
|
||||
|
||||
export interface SourceData {
|
||||
type: SourceType
|
||||
}
|
||||
@@ -1,3 +1,5 @@
|
||||
import { SourceData } from './sources'
|
||||
|
||||
export interface WeaponSkill {
|
||||
name: string
|
||||
krName?: string
|
||||
@@ -25,4 +27,13 @@ export interface WeaponData {
|
||||
rarity: number
|
||||
skills: WeaponSkill[]
|
||||
version?: string
|
||||
battlesuits?: {
|
||||
id: string
|
||||
suitability?: number
|
||||
description?: string
|
||||
descriptionKr?: string
|
||||
}[]
|
||||
priWeapon?: string
|
||||
originalWeapons?: string[]
|
||||
sources?: SourceData[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user