21 lines
643 B
C#
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);
|
|
}
|
|
}
|
|
} |