- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
16 lines
532 B
C#
16 lines
532 B
C#
using Decimation.Lib.Items;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable
|
|
{
|
|
internal class TalonianPillar : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Talonian Pillar";
|
|
protected override string ItemTooltip => "A heavenly pillar created by powerful Talonian warlocks.";
|
|
protected override int Tile => ModContent.TileType<Tiles.TalonianPillar>(); // The tile doesn't exist yet
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
}
|
|
}
|
|
} |