Decimation_Mod/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs
2020-06-10 19:38:09 -04:00

21 lines
635 B
C#

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