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

19 lines
460 B
C#

using Decimation.Core.Items;
namespace Decimation.Items.Misc
{
internal class BloodiedEssence : DecimationItem
{
protected override string ItemName => "Bloodied Essence";
protected override string ItemTooltip => "It molds more and more as time resumes.";
protected override void Init()
{
width = 16;
height = 16;
value = 100;
this.item.maxStack = 999;
}
}
}