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(); protected override void InitPlaceable() { item.width = 14; item.height = 16; item.maxStack = 99; } } }