This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2015-10-06 07:28:00 -04:00

45 lines
1.1 KiB
C#

using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Blocks
{
public class WoodBlock : BlockProvider, IBurnableItem
{
public enum WoodType
{
Oak = 0,
Spruce = 1,
Birch = 2
}
public static readonly byte BlockID = 0x11;
public override byte ID { get { return 0x11; } }
public override double BlastResistance { get { return 10; } }
public override double Hardness { get { return 2; } }
public override byte Luminance { get { return 0; } }
public override string DisplayName { get { return "Wood"; } }
public override bool Flammable { get { return true; } }
public TimeSpan BurnTime { get { return TimeSpan.FromSeconds(15); } }
public override SoundEffectClass SoundEffect
{
get
{
return SoundEffectClass.Wood;
}
}
public override Tuple<int, int> GetTextureMap(byte metadata)
{
return new Tuple<int, int>(4, 1);
}
}
}