17 lines
438 B
C#
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;
|
|
}
|
|
}
|
|
} |