/* * Copyright (c) CovertJaguar, 2014 http://railcraft.info * * This code is the property of CovertJaguar * and may only be used with explicit written * permission unless otherwise specified on the * license page at http://railcraft.info/wiki/info:license. */ package mods.railcraft.common.worldgen; import mods.railcraft.common.blocks.ore.EnumOre; import net.minecraftforge.common.util.EnumHelper; import net.minecraftforge.event.terraingen.OreGenEvent.GenerateMinable.EventType; /** * * @author CovertJaguar <http://www.railcraft.info> */ public class PoorCopperGenerator extends PoorOreGenerator { public static final EventType EVENT_TYPE = EnumHelper.addEnum(EventType.class, "RC_POOR_COPPER", new Class[0], new Object[0]); private static final int Y_LEVEL = 60; private static final int Y_RANGE = 3; private static final int DENSITY = 8; private static final int SEED = 29; public PoorCopperGenerator() { super(EVENT_TYPE, EnumOre.POOR_COPPER, DENSITY, Y_LEVEL, Y_RANGE, SEED); } }