Decimation_Mod/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs
FyloZ 69b1610428 Added Greater Antidote.
Fixed typos.
2020-06-05 18:45:49 -04:00

21 lines
625 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 => "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);
}
}
}