Decimation_Mod/Content/Projectiles/Ammonite.cs
FyloZ 15d2947c33 Networking stuff for the Dune Wyrm.
Changed Crystal Skull and Red Hot Shackle's sprites
2020-06-05 16:06:36 -04:00

17 lines
438 B
C#

using Terraria.ID;
namespace Decimation.Content.Projectiles
{
internal class Ammonite : DecimationProjectile
{
protected override void Init()
{
projectile.CloneDefaults(ProjectileID.SpikyBall);
projectile.damage = 30;
projectile.width = 36;
projectile.height = 32;
projectile.friendly = false;
projectile.hostile = true;
}
}
}