Decimation_Mod/Content/Items/Placeable/ShrineoftheMoltenOne/ShrineAltar.cs
FyloZ 57423952bf Fixed items were always consumed.
Added possibility to add light to tiles.
Updated Shrine Altar's sprite.
2020-07-09 15:47:54 -04:00

22 lines
717 B
C#

using Decimation.Lib.Items;
using Decimation.Lib.Util;
using Terraria.DataStructures;
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 DrawAnimation Animation => new DrawAnimationVertical(5, 6);
protected override void InitPlaceable()
{
item.width = 68;
item.height = 42;
item.maxStack = 1;
item.rare = Rarity.Red.GetRarityValue();
}
}
}