diff --git a/Content/Items/Tools/TheHourGlass.cs b/Content/Items/Tools/TheHourGlass.cs index 1bf922a..a7452cc 100644 --- a/Content/Items/Tools/TheHourGlass.cs +++ b/Content/Items/Tools/TheHourGlass.cs @@ -1,6 +1,7 @@ using Decimation.Lib.Items; using Decimation.Lib.Util; using Terraria; +using Terraria.DataStructures; namespace Decimation.Content.Items.Tools { @@ -8,17 +9,18 @@ namespace Decimation.Content.Items.Tools { protected override string ItemName => "The Hour Glass"; protected override string ItemTooltip => "Costs 50 mana."; + protected override DrawAnimation Animation => new DrawAnimationVertical(15, 4); protected override void InitTool() { - this.item.mana = 50; + item.mana = 50; item.width = 22; item.height = 36; item.useTime = 16; item.useAnimation = 16; item.useStyle = 4; item.rare = Rarity.Purple.GetRarityValue(); - this.item.expert = true; + item.expert = true; } public override bool UseItem(Player player) diff --git a/Content/Items/Tools/TheHourGlass.png b/Content/Items/Tools/TheHourGlass.png index 1cae386..b4d025a 100644 Binary files a/Content/Items/Tools/TheHourGlass.png and b/Content/Items/Tools/TheHourGlass.png differ