Decimation_Mod/Content/Projectiles/Item/Weapon/LightningSphere.cs
FyloZ 0cf76d5270 Organized projectiles.
Updated The Mind trinity item.
2020-07-14 22:31:26 -04:00

16 lines
381 B
C#

using Terraria.ID;
namespace Decimation.Content.Projectiles.Item.Weapon
{
internal class LightningSphere : DecimationProjectile
{
protected override int AnimationFrames => 5;
protected override void Init()
{
this.projectile.CloneDefaults(ProjectileID.MagnetSphereBall);
this.projectile.timeLeft = 600;
}
}
}