26 lines
743 B
C#
26 lines
743 B
C#
using Decimation.Lib.Tiles;
|
|
using Microsoft.Xna.Framework;
|
|
using Terraria;
|
|
using Terraria.ID;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Tiles.ShrineoftheMoltenOne
|
|
{
|
|
public class ShrineBrick : DecimationFramedTile
|
|
{
|
|
public override Color MapColor => new Color(33, 28, 25);
|
|
public override int TileItem => ModContent.ItemType<Items.Placeable.ShrineoftheMoltenOne.ShrineBrick>();
|
|
public override int DustType => DustID.Stone;
|
|
|
|
protected override void InitFramedTile()
|
|
{
|
|
Main.tileLighted[Type] = true;
|
|
}
|
|
|
|
public override bool CanKillTile(int i, int j, ref bool blockDamaged)
|
|
{
|
|
return DecimationWorld.downedArachnus;
|
|
}
|
|
}
|
|
}
|