Decimation_Mod/Items/Placeable/ShrineoftheMoltenOne/DeadEarth.cs
2020-03-03 21:17:42 -05:00

17 lines
465 B
C#

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