hensei-web/types/ItemSkill.d.ts
Justin Edmund bbccf8427b Add optional values to ItemSkill
Character over and aetherial mastery bonuses take values with steps that are not always even, so we have to hardcode them
2023-01-06 00:46:10 -08:00

15 lines
246 B
TypeScript

interface ItemSkill {
name: {
[key: string]: string
en: string
ja: string
}
id: number
slug: string
minValue: number
maxValue: number
fractional: boolean
suffix?: string
secondary?: ItemSkill[]
values?: number[]
}