* 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`
20 lines
339 B
TypeScript
20 lines
339 B
TypeScript
interface Job {
|
|
id: string
|
|
granblue_id: string
|
|
row: string
|
|
master_level: boolean
|
|
ultimate_mastery: boolean
|
|
order: number
|
|
name: {
|
|
[key: string]: string
|
|
en: string
|
|
ja: string
|
|
}
|
|
proficiency: {
|
|
proficiency1: number
|
|
proficiency2: number
|
|
}
|
|
base_job?: Job
|
|
accessory: boolean
|
|
accessory_type: number
|
|
}
|