Decimation_Mod/Content/Items/Placeable/ShrineoftheMoltenOne/ShrineAltar.cs
FyloZ 782e6a6582 Fixed tiles dropped a lot of items.
Updated enchanted anvil.
2020-07-09 17:08:49 -04:00

20 lines
599 B
C#

using Decimation.Lib.Items;
using Decimation.Lib.Util;
using Terraria.ModLoader;
namespace Decimation.Content.Items.Placeable.ShrineoftheMoltenOne
{
internal class ShrineAltar : DecimationPlaceableItem
{
protected override string ItemName => "Shrine Altar";
protected override int Tile => ModContent.TileType<Tiles.ShrineoftheMoltenOne.ShrineAltar>();
protected override void InitPlaceable()
{
item.width = 68;
item.height = 42;
item.maxStack = 1;
item.rare = Rarity.Red.GetRarityValue();
}
}
}