using Decimation.Lib.Items; using Terraria.ModLoader; namespace Decimation.Content.Items.Placeable.ShrineoftheMoltenOne { internal class DeadEarth : DecimationPlaceableItem { protected override string ItemName => "Dead Earth"; protected override int Tile => ModContent.TileType(); protected override void InitPlaceable() { item.width = 12; item.height = 12; } } }