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
object: Weapon
uncap_level: number
transcendence_step: number
element: number
weapon_keys?: Array<WeaponKey>
ax?: Array<SimpleAxSkill>

2
types/Summon.d.ts vendored
View file

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

1
types/Weapon.d.ts vendored
View file

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