Decimation_Mod/Content/Walls/DenziumWall.cs
FyloZ ec4585bed5 - Changed Bloodshot Eye's music to Boss 1 Orchestra ( https://www.youtube.com/watch?time_continue=120&v=r-9nKGc85FQ )
- Added support for animated projectiles
- Refactoring
- Removed useless fields
- Fixed swords not dealing damages
- Added Hour Hand (from Evie's PR)
2020-03-21 00:11:07 -04:00

18 lines
450 B
C#

using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Decimation.Content.Walls
{
internal class DenziumWall : ModWall
{
public override void SetDefaults()
{
Main.wallHouse[this.Type] = true;
dustType = DustID.Stone;
drop = ModContent.ItemType<Items.Placeable.DenziumWall>();
AddMapEntry(new Color(5, 7, 22));
}
}
}