- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
17 lines
488 B
C#
17 lines
488 B
C#
using Decimation.Lib.Items;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable.ShrineoftheMoltenOne
|
|
{
|
|
internal class ShrineBrick : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Shrine Brick";
|
|
protected override int Tile => ModContent.TileType<Tiles.ShrineoftheMoltenOne.ShrineBrick>();
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
item.width = 12;
|
|
item.height = 12;
|
|
}
|
|
}
|
|
} |