25 lines
682 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 GoldOreBlock : BlockProvider
{
public static readonly byte BlockID = 0x0E;
public override byte ID { get { return 0x0E; } }
2015-01-22 00:49:50 -05:00
public override double BlastResistance { get { return 15; } }
2014-12-28 18:55:46 -07:00
public override double Hardness { get { return 3; } }
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 "Gold Ore"; } }
2015-01-22 00:49:50 -05:00
public override Tuple<int, int> GetTextureMap(byte metadata)
{
return new Tuple<int, int>(0, 2);
}
2014-12-28 18:55:46 -07:00
}
}