21 lines
593 B
C#
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);
|
|
}
|
|
}
|
|
} |