51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
using System;
|
|
using TrueCraft.API.Logic;
|
|
using TrueCraft.API;
|
|
using TrueCraft.Core.Logic.Items;
|
|
|
|
namespace TrueCraft.Core.Logic.Blocks
|
|
{
|
|
public class LeverBlock : BlockProvider, ICraftingRecipe
|
|
{
|
|
public static readonly byte BlockID = 0x45;
|
|
|
|
public override byte ID { get { return 0x45; } }
|
|
|
|
public override double BlastResistance { get { return 2.5; } }
|
|
|
|
public override double Hardness { get { return 0.5; } }
|
|
|
|
public override byte Luminance { get { return 0; } }
|
|
|
|
public override bool Opaque { get { return false; } }
|
|
|
|
public override string DisplayName { get { return "Lever"; } }
|
|
|
|
public override Tuple<int, int> GetTextureMap(byte metadata)
|
|
{
|
|
return new Tuple<int, int>(0, 6);
|
|
}
|
|
|
|
public ItemStack[,] Pattern
|
|
{
|
|
get
|
|
{
|
|
return new[,]
|
|
{
|
|
{new ItemStack(StickItem.ItemID)},
|
|
{new ItemStack(CobblestoneBlock.BlockID)}
|
|
};
|
|
}
|
|
}
|
|
|
|
public ItemStack Output
|
|
{
|
|
get { return new ItemStack(BlockID); }
|
|
}
|
|
|
|
public bool SignificantMetadata
|
|
{
|
|
get { return false; }
|
|
}
|
|
}
|
|
} |