hensei-web/types/ItemSkill.d.ts
Justin Edmund bd838305e6
Bug fixes and content updates (#270)
* Fix character hovercard z-index

* Allow unauth users to edit their remixed parties

* Adds ultimate_mastery and renamed master_level to defs

* Add granblue_id to weapon keys

* Add granblue_id to AX skills

* Add granblue_id to data-granblue-id

* Added bugfixes to update notes

* Fix types where ItemSelect is used

These need an empty `granblue_id`
2023-03-17 01:35:49 -07:00

16 lines
268 B
TypeScript

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