16 lines
369 B
C#
16 lines
369 B
C#
using Terraria.ID;
|
|
|
|
namespace Decimation.Content.Projectiles
|
|
{
|
|
internal class LightningSphere : DecimationProjectile
|
|
{
|
|
protected override int AnimationFrames => 5;
|
|
|
|
protected override void Init()
|
|
{
|
|
this.projectile.CloneDefaults(ProjectileID.MagnetSphereBall);
|
|
this.projectile.timeLeft = 600;
|
|
}
|
|
}
|
|
}
|