- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
18 lines
544 B
C#
18 lines
544 B
C#
using Decimation.Lib.Items;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable
|
|
{
|
|
internal class DenziumOre : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Denzium Ore";
|
|
protected override string ItemTooltip => "A substance created from intense pressure and heat.";
|
|
protected override int Tile => ModContent.TileType<Tiles.DenziumOre>();
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
item.width = 12;
|
|
item.height = 12;
|
|
}
|
|
}
|
|
} |