18 lines
521 B
C#
18 lines
521 B
C#
using Decimation.Lib.Items;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable.ShrineoftheMoltenOne
|
|
{
|
|
internal class RedHotSpike : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Red Hot Spike";
|
|
protected override int Tile => ModContent.TileType<Tiles.ShrineoftheMoltenOne.RedHotSpike>();
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
item.width = 14;
|
|
item.height = 16;
|
|
item.maxStack = 99;
|
|
}
|
|
}
|
|
} |