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
329 B
16 lines
329 B
const [_, _Mekanome] = [...$vararg]
|
|
const Mekanome = _Mekanome as unknown as IMekanome
|
|
|
|
function FrostMage(this: void): Castable | undefined {
|
|
print('Frost!')
|
|
|
|
return undefined
|
|
}
|
|
|
|
Mekanome.ActionManager.Add('frost_mage', {
|
|
run: FrostMage,
|
|
priority: 1,
|
|
loadConditions: { spec: 3, class: 8 }
|
|
})
|
|
|
|
export default undefined
|
|
|