Examples of WorldGenMinableMeta


Examples of forestry.core.worldgen.WorldGenMinableMeta

  @Override
  public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) {

    if (apatiteGenerator == null) {
      apatiteGenerator = new WorldGenMinableMeta(ForestryBlock.resources.block(), 0, 36);
      copperGenerator = new WorldGenMinableMeta(ForestryBlock.resources, 1, 6);
      tinGenerator = new WorldGenMinableMeta(ForestryBlock.resources, 2, 6);
    }

    // shift to world coordinates
    chunkX = chunkX << 4;
    chunkZ = chunkZ << 4;
View Full Code Here

Examples of micdoodle8.mods.galacticraft.core.world.gen.WorldGenMinableMeta

    private WorldGenerator ironGen;
    private WorldGenerator iceGen;

    public BiomeDecoratorMars()
    {
        this.copperGen = new WorldGenMinableMeta(MarsBlocks.marsBlock, 4, 0, true, MarsBlocks.marsBlock, 9);
        this.tinGen = new WorldGenMinableMeta(MarsBlocks.marsBlock, 4, 1, true, MarsBlocks.marsBlock, 9);
        this.deshGen = new WorldGenMinableMeta(MarsBlocks.marsBlock, 6, 2, true, MarsBlocks.marsBlock, 9);
        this.ironGen = new WorldGenMinableMeta(MarsBlocks.marsBlock, 8, 3, true, MarsBlocks.marsBlock, 9);
        this.dirtGen = new WorldGenMinableMeta(MarsBlocks.marsBlock, 32, 6, true, MarsBlocks.marsBlock, 9);
        this.iceGen = new WorldGenMinableMeta(Blocks.ice, 18, 0, true, MarsBlocks.marsBlock, 6);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.