Decimation_Mod/Projectiles/Ammonite.cs
2020-03-03 21:17:42 -05:00

19 lines
510 B
C#

using Terraria.ID;
namespace Decimation.Projectiles
{
internal class Ammonite : DecimationProjectile
{
protected override bool IsClone => true;
protected override void Init()
{
this.projectile.CloneDefaults(ProjectileID.SpikyBall);
this.projectile.damage = 30;
this.projectile.width = 10;
this.projectile.height = 16;
this.projectile.friendly = false;
this.projectile.hostile = true;
}
}
}