Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on September 6, 2015 at 09:46 PM

Section 1 (Java)

package com.mattdahepic.mobdropores.block;

import com.mattdahepic.mobdropores.MobDropOres;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.state.BlockState;
import net.minecraft.block.state.IBlockState;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;

import java.util.List;
import java.util.Random;

public class BlockMobOre extends Block {
    public static final PropertyEnum MOB = PropertyEnum.create("mob",EnumMob.class);
    public static final String NAME = "mob_ore";
    public BlockMobOre () {
        super(Material.rock);
        this.setUnlocalizedName(NAME);
        this.setCreativeTab(CreativeTabs.tabAllSearch);
        this.setDefaultState(this.blockState.getBaseState().withProperty(MOB, EnumMob.ZOMBIE));
    }
    @Override
    public boolean canSilkHarvest (World world, BlockPos pos, IBlockState state, EntityPlayer breaker) {
        return state.getValue(MOB) != EnumMob.WITHER;
    }
    @Override
    public int getExpDrop(IBlockAccess world, BlockPos pos, int fortune) {
        return fortune+1;
    }
    @Override
    public List<ItemStack> getDrops (IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
        return MobDropManager.getDrops((EnumMob)state.getValue(MOB),fortune,new Random());
    }
    @Override
    public BlockState createBlockState () {
        return new BlockState(MobDropOres.mob_ore,MOB);
    }
    @Override
    public IBlockState getStateFromMeta (int meta) {
        return this.getDefaultState().withProperty(MOB, EnumMob.mobFromMeta(meta));
    }
    @Override
    public int getMetaFromState (IBlockState state) {
        return EnumMob.metaFromMob((EnumMob)state.getValue(MOB));
    }
}