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