Decimation_Mod/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs
FyloZ 884e67c5e2 Updated some potions's sprite.
Changed buy price to sell price.
2020-07-09 18:03:44 -04:00

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);
}
}
}