Add/rename transcendence

Summon XLB is renamed to transcendence
This commit is contained in:
Justin Edmund 2024-01-13 11:21:29 -08:00
parent 272fc5532a
commit efb1a8ccf4
3 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@ interface GridWeapon {
position: number position: number
object: Weapon object: Weapon
uncap_level: number uncap_level: number
transcendence_step: number
element: number element: number
weapon_keys?: Array<WeaponKey> weapon_keys?: Array<WeaponKey>
ax?: Array<SimpleAxSkill> ax?: Array<SimpleAxSkill>

2
types/Summon.d.ts vendored
View file

@ -27,7 +27,7 @@ interface Summon {
uncap: { uncap: {
flb: boolean flb: boolean
ulb: boolean ulb: boolean
xlb: boolean transcendence: boolean
} }
position?: number position?: number
} }

1
types/Weapon.d.ts vendored
View file

@ -32,6 +32,7 @@ interface Weapon {
uncap: { uncap: {
flb: boolean flb: boolean
ulb: boolean ulb: boolean
transcendence: boolean
} }
position?: number position?: number
} }