projectile
Pointed spells that, instead of casting a spell directly on the target that's clicked, will instead fire a projectile pointed at the target's direction.
Vars | |
current_amount | How many projectiles we have yet to fire, based on projectile_amount |
---|---|
projectile_amount | How many projectiles we can fire per cast. Not all at once, per click, kinda like charges |
projectile_type | What projectile we create when we shoot our spell. |
projectiles_per_fire | How many projectiles we fire every fire_projectile() call. Unwise to change without overriding or extending ready_projectile. |
Procs | |
on_cast_hit | Signal proc for whenever the projectile we fire hits someone. Pretty much relays to the spell when the projectile actually hits something. |
Var Details
current_amount
How many projectiles we have yet to fire, based on projectile_amount
projectile_amount
How many projectiles we can fire per cast. Not all at once, per click, kinda like charges
projectile_type
What projectile we create when we shoot our spell.
projectiles_per_fire
How many projectiles we fire every fire_projectile() call. Unwise to change without overriding or extending ready_projectile.
Proc Details
on_cast_hit
Signal proc for whenever the projectile we fire hits someone. Pretty much relays to the spell when the projectile actually hits something.