25 lines
686 B
C#
Raw Normal View History

2014-12-28 18:55:46 -07:00
using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Blocks
{
public class ObsidianBlock : BlockProvider
{
public static readonly byte BlockID = 0x31;
public override byte ID { get { return 0x31; } }
2015-01-22 00:49:50 -05:00
public override double BlastResistance { get { return 6000; } }
2014-12-28 18:55:46 -07:00
public override double Hardness { get { return 10; } }
2015-01-22 00:49:50 -05:00
public override byte Luminance { get { return 0; } }
2014-12-28 18:55:46 -07:00
public override string DisplayName { get { return "Obsidian"; } }
public override Tuple<int, int> GetTextureMap(byte metadata)
{
return new Tuple<int, int>(5, 2);
}
}
}