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

21 lines
593 B
C#

using Decimation.Tiles.ShrineoftheMoltenOne;
using Decimation.Core.Items;
using Terraria;
using Terraria.ModLoader;
namespace Decimation.Items.Placeable.ShrineoftheMoltenOne
{
internal class ShrineDoor : DecimationPlaceableItem
{
protected override string ItemName => "Shrine Door";
protected override int Tile => ModContent.TileType<LockedShrineDoor>();
protected override void InitPlaceable()
{
width = 14;
height = 28;
this.item.maxStack = 99;
value = Item.buyPrice(0, 0, 1, 50);
}
}
}