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