Decimation_Mod/Items/Misc/Souls/SoulofTime.cs
2020-03-03 21:17:42 -05:00

27 lines
737 B
C#

using Decimation.Core.Items;
using Decimation.Core.Util;
using Terraria;
using Terraria.DataStructures;
using Terraria.ID;
namespace Decimation.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, 4);
protected override void Init()
{
width = 22;
height = 24;
value = Item.buyPrice(0, 0, 1);
rarity = Rarity.Orange;
this.item.maxStack = 999;
ItemID.Sets.ItemNoGravity[this.item.type] = true;
}
}
}