Decimation_Mod/Content/Items/Placeable/DuneWorm/DuneWormTrophy.cs
2020-06-05 12:42:17 -04:00

21 lines
643 B
C#

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