- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
16 lines
435 B
C#
16 lines
435 B
C#
using Decimation.Lib.Items;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable
|
|
{
|
|
internal class Basalt : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Basalt";
|
|
protected override string ItemTooltip => "Volcanic stone";
|
|
protected override int Tile => ModContent.TileType<Tiles.Basalt>();
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
}
|
|
}
|
|
} |