From 05bdb98eb02408517fac52331d24beb6a2f4e8d5 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 22 Jan 2023 19:59:53 -0800 Subject: [PATCH] Add XLB to summon type --- types/Summon.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/Summon.d.ts b/types/Summon.d.ts index c71c62ce..0f6de332 100644 --- a/types/Summon.d.ts +++ b/types/Summon.d.ts @@ -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 }