Package extrabiomes.module.summa.biome

Source Code of extrabiomes.module.summa.biome.BiomeSnowForest

/**
* This work is licensed under the Creative Commons
* Attribution-ShareAlike 3.0 Unported License. To view a copy of this
* license, visit http://creativecommons.org/licenses/by-sa/3.0/.
*/

package extrabiomes.module.summa.biome;

import net.minecraft.world.ColorizerFoliage;
import net.minecraft.world.ColorizerGrass;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.biome.BiomeGenBase.Height;
import net.minecraft.world.biome.BiomeGenBase.SpawnListEntry;
import net.minecraftforge.common.BiomeDictionary.Type;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import extrabiomes.lib.BiomeSettings;
import extrabiomes.lib.DecorationSettings;

public class BiomeSnowForest extends ExtrabiomeGenBase
{
  @Override
  public DecorationSettings getDecorationSettings() {
    return DecorationSettings.SNOWYFOREST;
  }

    @SuppressWarnings("unchecked")
    public BiomeSnowForest()
    {
    super(BiomeSettings.SNOWYFOREST, Type.FOREST, Type.SNOWY);
       
        setColor(0x5BA68D);
        setBiomeName("Snow Forest");
        temperature = BiomeGenBase.taigaHills.temperature;
        rainfall = BiomeGenBase.taigaHills.rainfall;
        this.setHeight(new Height(0.3F, 0.2F));
        setEnableSnow();
       
        spawnableCreatureList.add(new SpawnListEntry(net.minecraft.entity.passive.EntityWolf.class, 5, 4, 4));
    }
   
    @Override
    @SideOnly(Side.CLIENT)
    public int getBiomeFoliageColor(int x, int y, int z)
    {
        return ColorizerFoliage.getFoliageColor(0.0F, 0.2F);
    }
   
    @Override
    @SideOnly(Side.CLIENT)
    public int getBiomeGrassColor(int x, int y, int z)
    {
        return ColorizerGrass.getGrassColor(0.0F, 0.2F);
    }
}
TOP

Related Classes of extrabiomes.module.summa.biome.BiomeSnowForest

TOP
Copyright © 2018 www.massapi.com. 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.