Decimation_Mod/Content/Items/Placeable/ShrineoftheMoltenOne/ShrineDoor.cs
FyloZ 884e67c5e2 Updated some potions's sprite.
Changed buy price to sell price.
2020-07-09 18:03:44 -04:00

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);
}
}
}