You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
const [_, _Mekanome] = [...$vararg]
|
|
const Mekanome = _Mekanome as unknown as IMekanome
|
|
|
|
function FireMage(this: void): Castable | undefined {
|
|
print('Fire!')
|
|
|
|
return
|
|
}
|
|
|
|
Mekanome.ActionManager.Add('fire_mage', {
|
|
run: FireMage,
|
|
priority: 1,
|
|
loadConditions: { spec: 2, class: 8 }
|
|
})
|
|
|
|
export default undefined
|
|
|