Decimation_Mod/Content/Items/Misc/Souls/SoulofTime.cs
2020-07-20 11:43:44 -04:00

27 lines
825 B
C#

using Decimation.Lib.Items;
using Decimation.Lib.Util;
using Terraria;
using Terraria.DataStructures;
using Terraria.ID;
namespace Decimation.Content.Items.Misc.Souls
{
internal class SoulofTime : DecimationItem
{
protected override string ItemName => "Soul of Time";
protected override string ItemTooltip => "The essence of fate.";
protected override DrawAnimation Animation => new DrawAnimationVertical(5, 8);
protected override void Init()
{
item.width = 22;
item.height = 22;
item.maxStack = 999;
item.value = Item.sellPrice(silver: 3);
item.rare = Rarity.Pink.GetRarityValue();
ItemID.Sets.ItemIconPulse[item.type] = true;
ItemID.Sets.ItemNoGravity[item.type] = true;
}
}
}