
These sounds change depending on what kind of block you're walking in. Still to come: sound effects for mining and placing blocks
33 lines
845 B
C#
33 lines
845 B
C#
using System;
|
|
using TrueCraft.API.Logic;
|
|
|
|
namespace TrueCraft.Core.Logic.Blocks
|
|
{
|
|
public class SpongeBlock : BlockProvider
|
|
{
|
|
public static readonly byte BlockID = 0x13;
|
|
|
|
public override byte ID { get { return 0x13; } }
|
|
|
|
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 "Sponge"; } }
|
|
|
|
public override SoundEffectClass SoundEffect
|
|
{
|
|
get
|
|
{
|
|
return SoundEffectClass.Grass;
|
|
}
|
|
}
|
|
|
|
public override Tuple<int, int> GetTextureMap(byte metadata)
|
|
{
|
|
return new Tuple<int, int>(0, 3);
|
|
}
|
|
}
|
|
} |