Decimation_Mod/Content/Projectiles/LightningSphere.cs
2020-06-30 15:40:13 -04:00

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;
}
}
}