Add XLB to summon type

This commit is contained in:
Justin Edmund 2023-01-22 19:59:53 -08:00
parent e62e5bffa3
commit 05bdb98eb0

3
types/Summon.d.ts vendored
View file

@ -15,16 +15,19 @@ interface Summon {
max_hp: number
max_hp_flb: number
max_hp_ulb: number
max_hp_xlb: number
}
atk: {
min_atk: number
max_atk: number
max_atk_flb: number
max_atk_ulb: number
max_atk_xlb: number
}
uncap: {
flb: boolean
ulb: boolean
xlb: boolean
}
position?: number
}