using Decimation.Lib.Items; using Terraria; using Terraria.ModLoader; namespace Decimation.Content.Items.Placeable.DuneWyrm { internal class DuneWyrmTrophy : DecimationPlaceableItem { protected override string ItemName => "Dune Wyrm Trophy"; protected override string ItemTooltip => "Achievement get!"; protected override int Tile => ModContent.TileType(); protected override void InitPlaceable() { item.width = 32; item.height = 32; item.maxStack = 99; item.value = Item.buyPrice(0, 5); } } }