21 lines
636 B
C#
21 lines
636 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.sellPrice(0, 5);
|
|
}
|
|
}
|
|
} |