Decimation_Mod/Items/Placeable/DuneWorm/DuneWormTrophy.cs
2020-03-03 21:17:42 -05:00

21 lines
626 B
C#

using Decimation.Core.Items;
using Terraria;
using Terraria.ModLoader;
namespace Decimation.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()
{
width = 30;
height = 30;
this.item.maxStack = 99;
this.item.value = Item.buyPrice(0, 5);
}
}
}