2013-05-03 13:00:44 +00:00
|
|
|
package biomesoplenty.biomes;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
2013-05-12 09:55:44 +00:00
|
|
|
import net.minecraft.entity.monster.EntitySlime;
|
2013-05-03 13:00:44 +00:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
2013-05-12 09:55:44 +00:00
|
|
|
import net.minecraft.world.biome.SpawnListEntry;
|
2013-11-06 07:56:20 +00:00
|
|
|
import worldcore.interfaces.IWCFog;
|
2013-05-29 01:05:27 +00:00
|
|
|
import biomesoplenty.api.Blocks;
|
2013-05-03 13:00:44 +00:00
|
|
|
|
2013-11-06 07:56:20 +00:00
|
|
|
public class BiomeGenMarsh extends BiomeGenBase implements IWCFog
|
2013-05-03 13:00:44 +00:00
|
|
|
{
|
2013-05-31 10:34:02 +00:00
|
|
|
private BiomeDecoratorBOP customBiomeDecorator;
|
2013-05-03 13:00:44 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
public BiomeGenMarsh(int par1)
|
|
|
|
{
|
|
|
|
super(par1);
|
|
|
|
spawnableCreatureList.clear();
|
|
|
|
spawnableWaterCreatureList.clear();
|
|
|
|
theBiomeDecorator = new BiomeDecoratorBOP(this);
|
|
|
|
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
|
|
|
|
customBiomeDecorator.treesPerChunk = -999;
|
|
|
|
customBiomeDecorator.flowersPerChunk = -999;
|
2013-09-21 23:25:33 +00:00
|
|
|
customBiomeDecorator.grassPerChunk = 50;
|
|
|
|
customBiomeDecorator.wheatGrassPerChunk = 50;
|
2013-09-22 02:26:41 +00:00
|
|
|
customBiomeDecorator.highGrassPerChunk = 50;
|
|
|
|
customBiomeDecorator.reedsPerChunk = -999;
|
|
|
|
customBiomeDecorator.waterLakesPerChunk = 100;
|
2013-09-21 23:25:33 +00:00
|
|
|
customBiomeDecorator.sandPerChunk = -999;
|
|
|
|
customBiomeDecorator.sandPerChunk2 = -999;
|
2013-09-23 16:19:52 +00:00
|
|
|
customBiomeDecorator.mudPerChunk = 1;
|
|
|
|
customBiomeDecorator.mudPerChunk2 = 1;
|
2013-10-20 18:05:23 +00:00
|
|
|
customBiomeDecorator.koruPerChunk = 1;
|
2013-09-23 23:55:28 +00:00
|
|
|
customBiomeDecorator.waterReedsPerChunk = 10;
|
2013-05-31 10:34:02 +00:00
|
|
|
customBiomeDecorator.generatePumpkins = false;
|
|
|
|
spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3));
|
|
|
|
}
|
2013-05-03 13:00:44 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
@Override
|
|
|
|
public void decorate(World par1World, Random par2Random, int par3, int par4)
|
|
|
|
{
|
|
|
|
super.decorate(par1World, par2Random, par3, par4);
|
2013-06-02 18:09:16 +00:00
|
|
|
|
|
|
|
int var55 = 12 + par2Random.nextInt(6);
|
|
|
|
|
|
|
|
for (int var66 = 0; var66 < var55; ++var66)
|
|
|
|
{
|
|
|
|
int var77 = par3 + par2Random.nextInt(16);
|
|
|
|
int var88 = par2Random.nextInt(28) + 4;
|
|
|
|
int var99 = par4 + par2Random.nextInt(16);
|
|
|
|
int var100 = par1World.getBlockId(var77, var88, var99);
|
|
|
|
|
|
|
|
if (var100 == Block.stone.blockID)
|
|
|
|
{
|
2013-06-03 02:54:15 +00:00
|
|
|
par1World.setBlock(var77, var88, var99, Blocks.amethystOre.get().blockID, 12, 2);
|
2013-06-02 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 10:34:02 +00:00
|
|
|
}
|
2013-11-04 05:24:43 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getFogColour()
|
|
|
|
{
|
|
|
|
return 12638463;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public float getFogCloseness()
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
return 0.6F;
|
|
|
|
}
|
2013-05-03 13:00:44 +00:00
|
|
|
}
|