@SuppressWarnings("unchecked") public BiomeGenOminousWoods(int par1) { super(par1); theBiomeDecorator = new BiomeDecoratorBOP(this); customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator; customBiomeDecorator.treesPerChunk = 10; customBiomeDecorator.grassPerChunk = 1; customBiomeDecorator.flowersPerChunk = -999; // customBiomeDecorator.deathbloomsPerChunk = 1; customBiomeDecorator.mushroomsPerChunk = 8; customBiomeDecorator.reedsPerChunk = -999; customBiomeDecorator.sandPerChunk = -999; customBiomeDecorator.sandPerChunk2 = -999; // customBiomeDecorator.thornsPerChunk = 9; // customBiomeDecorator.poisonIvyPerChunk = 3; // customBiomeDecorator.poisonWaterPerChunk = 15; waterColorMultiplier = 1973030; spawnableMonsterList.clear(); spawnableCreatureList.clear(); spawnableWaterCreatureList.clear(); spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4)); spawnableMonsterList.add(new SpawnListEntry(EntitySpider.class, 9, 1, 2)); spawnableMonsterList.add(new SpawnListEntry(EntityEnderman.class, 10, 1, 4)); spawnableCaveCreatureList.add(new SpawnListEntry(EntityBat.class, 10, 8, 8)); }
public BiomeGenDunes(int par1) { super(par1); spawnableCreatureList.clear(); topBlock = (byte) Block.sand.blockID; fillerBlock = (byte) Block.sand.blockID; theBiomeDecorator = new BiomeDecoratorBOP(this); customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator; customBiomeDecorator.treesPerChunk = -999; customBiomeDecorator.deadBushPerChunk = -999; customBiomeDecorator.cactiPerChunk = 1; // customBiomeDecorator.duneGrassPerChunk = 10; // customBiomeDecorator.desertSproutsPerChunk = 5; // customBiomeDecorator.aloePerChunk = 1; customBiomeDecorator.reedsPerChunk = -999; customBiomeDecorator.generateLakes = false; }
public BiomeGenDeadSwamp(int par1) { super(par1); theBiomeDecorator = new BiomeDecoratorBOP(this); customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator; customBiomeDecorator.treesPerChunk = 2; customBiomeDecorator.grassPerChunk = 25; customBiomeDecorator.highGrassPerChunk = 1; customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.reedsPerChunk = -999; customBiomeDecorator.mudPerChunk = 3; customBiomeDecorator.mudPerChunk2 = 3; customBiomeDecorator.sandPerChunk = -999; customBiomeDecorator.sandPerChunk2 = -999; customBiomeDecorator.reedsBOPPerChunk = 2; spawnableCreatureList.clear(); spawnableWaterCreatureList.clear(); waterColorMultiplier = 10661201; }