2013-09-14 10:16:39 +00:00
|
|
|
package biomesoplenty.biomes.nether;
|
2013-05-18 14:37:05 +00:00
|
|
|
|
2013-05-18 22:23:21 +00:00
|
|
|
import net.minecraft.block.Block;
|
2013-05-18 14:37:05 +00:00
|
|
|
import net.minecraft.entity.monster.EntityGhast;
|
|
|
|
import net.minecraft.entity.monster.EntityMagmaCube;
|
|
|
|
import net.minecraft.entity.monster.EntityPigZombie;
|
2013-05-29 01:05:27 +00:00
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
|
|
|
import net.minecraft.world.biome.SpawnListEntry;
|
2013-09-14 23:01:07 +00:00
|
|
|
import biomesoplenty.biomes.BiomeDecoratorBOP;
|
2013-05-18 14:37:05 +00:00
|
|
|
|
|
|
|
public class BiomeGenNetherDesert extends BiomeGenBase
|
|
|
|
{
|
|
|
|
private BiomeDecoratorBOP customBiomeDecorator;
|
2013-05-31 10:34:02 +00:00
|
|
|
|
|
|
|
public BiomeGenNetherDesert(int par1)
|
|
|
|
{
|
|
|
|
super(par1);
|
|
|
|
theBiomeDecorator = new BiomeDecoratorBOP(this);
|
|
|
|
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
|
|
|
|
topBlock = (byte)Block.slowSand.blockID;
|
|
|
|
fillerBlock = (byte)Block.slowSand.blockID;
|
|
|
|
customBiomeDecorator.thornsPerChunk = 10;
|
2013-09-09 23:46:48 +00:00
|
|
|
customBiomeDecorator.gravesPerChunk = 1;
|
2013-10-27 23:20:07 +00:00
|
|
|
customBiomeDecorator.waspHivesPerChunk = 1;
|
2013-11-17 01:54:14 +00:00
|
|
|
customBiomeDecorator.generateUndergroundLakes = false;
|
2013-05-31 10:34:02 +00:00
|
|
|
spawnableMonsterList.clear();
|
|
|
|
spawnableCreatureList.clear();
|
|
|
|
spawnableWaterCreatureList.clear();
|
|
|
|
spawnableCaveCreatureList.clear();
|
|
|
|
spawnableMonsterList.add(new SpawnListEntry(EntityGhast.class, 50, 4, 4));
|
|
|
|
spawnableMonsterList.add(new SpawnListEntry(EntityPigZombie.class, 100, 4, 4));
|
|
|
|
spawnableMonsterList.add(new SpawnListEntry(EntityMagmaCube.class, 1, 4, 4));
|
|
|
|
}
|
2013-05-18 14:37:05 +00:00
|
|
|
}
|