55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using System;
|
|
using TrueCraft.API.Logic;
|
|
using TrueCraft.API;
|
|
using TrueCraft.API.World;
|
|
using TrueCraft.Core.Logic.Items;
|
|
|
|
namespace TrueCraft.Core.Logic.Blocks
|
|
{
|
|
public class ClayBlock : BlockProvider, ICraftingRecipe
|
|
{
|
|
public static readonly byte BlockID = 0x52;
|
|
|
|
public override byte ID { get { return 0x52; } }
|
|
|
|
public override double BlastResistance { get { return 3; } }
|
|
|
|
public override double Hardness { get { return 0.6; } }
|
|
|
|
public override byte Luminance { get { return 0; } }
|
|
|
|
public override string DisplayName { get { return "Clay"; } }
|
|
|
|
public override Tuple<int, int> GetTextureMap(byte metadata)
|
|
{
|
|
return new Tuple<int, int>(8, 4);
|
|
}
|
|
|
|
protected override ItemStack[] GetDrop(BlockDescriptor descriptor)
|
|
{
|
|
return new[] { new ItemStack(ClayItem.ItemID, 4) };
|
|
}
|
|
|
|
public ItemStack[,] Pattern
|
|
{
|
|
get
|
|
{
|
|
return new[,]
|
|
{
|
|
{new ItemStack(ClayItem.ItemID), new ItemStack(ClayItem.ItemID)},
|
|
{new ItemStack(ClayItem.ItemID), new ItemStack(ClayItem.ItemID)}
|
|
};
|
|
}
|
|
}
|
|
|
|
public ItemStack Output
|
|
{
|
|
get { return new ItemStack(BlockID); }
|
|
}
|
|
|
|
public bool SignificantMetadata
|
|
{
|
|
get { return false; }
|
|
}
|
|
}
|
|
} |