using Decimation.Lib.Items; namespace Decimation.Content.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() { item.width = 16; item.height = 16; item.value = 100; this.item.maxStack = 999; } } }