22 lines
717 B
C#
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();
|
|
}
|
|
}
|
|
} |