Package mrtjp.projectred.core.libmc.world

Examples of mrtjp.projectred.core.libmc.world.GeneratorOre


                for (int i = 0; i < 2; i++)
                {
                    int x = chunkX * 16 + r.nextInt(16);
                    int y = r.nextInt(48);
                    int z = chunkZ * 16 + r.nextInt(16);
                    new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORERUBY().meta(), 5).generate(w, r, x, y, z);
                }
            }
        }
View Full Code Here


                for (int i = 0; i < 2; i++)
                {
                    int x = chunkX * 16 + r.nextInt(16);
                    int y = r.nextInt(48);
                    int z = chunkZ * 16 + r.nextInt(16);
                    new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORESAPPHIRE().meta(), 5).generate(w, r, x, y, z);
                }
            }
        }
View Full Code Here

                for (int i = 0; i < 2; i++)
                {
                    int x = chunkX * 16 + r.nextInt(16);
                    int y = r.nextInt(48);
                    int z = chunkZ * 16 + r.nextInt(16);
                    new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.OREPERIDOT().meta(), 5).generate(w, r, x, y, z);
                }
            }
        }
View Full Code Here

            for (int i = 0; i < 2; i++)
            {
                int x = chunkX * 16 + r.nextInt(16);
                int y = r.nextInt(48);
                int z = chunkZ * 16 + r.nextInt(16);
                new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORERUBY().meta(), 5).generate(w, r, x, y, z);
            }

        // Saphire
        if (Configurator.gen_Sapphire) if (Configurator.gen_Sapphire_resistance <= 0 || r.nextInt(Configurator.gen_Sapphire_resistance) == 0)
            for (int i = 0; i < 2; i++)
            {
                int x = chunkX * 16 + r.nextInt(16);
                int y = r.nextInt(48);
                int z = chunkZ * 16 + r.nextInt(16);
                new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORESAPPHIRE().meta(), 5).generate(w, r, x, y, z);
            }

        // Peridot
        if (Configurator.gen_Peridot) if (Configurator.gen_Peridot_resistance <= 0 || r.nextInt(Configurator.gen_Peridot_resistance) == 0)
            for (int i = 0; i < 2; i++)
            {
                int x = chunkX * 16 + r.nextInt(16);
                int y = r.nextInt(48);
                int z = chunkZ * 16 + r.nextInt(16);
                new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.OREPERIDOT().meta(), 5).generate(w, r, x, y, z);
            }
    }
View Full Code Here

TOP

Related Classes of mrtjp.projectred.core.libmc.world.GeneratorOre

Copyright © 2018 www.massapicom. 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.