38 lines
1 KiB
Java
38 lines
1 KiB
Java
|
package biomesoplenty.biomes;
|
||
|
|
||
|
import net.minecraft.world.biome.BiomeGenBase;
|
||
|
|
||
|
public class BiomeGenTundra extends BiomeGenBase
|
||
|
{
|
||
|
private BiomeDecoratorBOP customBiomeDecorator;
|
||
|
|
||
|
public BiomeGenTundra(int par1)
|
||
|
{
|
||
|
super(par1);
|
||
|
this.spawnableCreatureList.clear();
|
||
|
this.theBiomeDecorator = new BiomeDecoratorBOP(this);
|
||
|
this.customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
|
||
|
this.customBiomeDecorator.treesPerChunk = -999;
|
||
|
this.customBiomeDecorator.flowersPerChunk = -999;
|
||
|
this.customBiomeDecorator.grassPerChunk = -999;
|
||
|
this.customBiomeDecorator.sandPerChunk = -999;
|
||
|
this.customBiomeDecorator.sandPerChunk2 = -999;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Provides the basic grass color based on the biome temperature and rainfall
|
||
|
*/
|
||
|
public int getBiomeGrassColor()
|
||
|
{
|
||
|
return 11176526;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Provides the basic foliage color based on the biome temperature and rainfall
|
||
|
*/
|
||
|
public int getBiomeFoliageColor()
|
||
|
{
|
||
|
return 11903827;
|
||
|
}
|
||
|
}
|