Add dire wolf pelt

This commit is contained in:
Electroblob77
2020-10-03 00:54:20 +01:00
parent 7e32263946
commit d5d933b4e6
8 changed files with 130 additions and 72 deletions
@@ -0,0 +1,22 @@
package electroblob.wizardry.block;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import javax.annotation.Nullable;
public class BlockPermafrost extends Block {
public BlockPermafrost(){
super(Material.ICE);
}
@Override
public float getSlipperiness(IBlockState state, IBlockAccess world, BlockPos pos, @Nullable Entity entity){
return super.getSlipperiness(state, world, pos, entity);
}
}