001package net.minecraft.world.biome;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005import net.minecraft.block.Block;
006import net.minecraft.entity.monster.EntityEnderman;
007
008public class BiomeGenEnd extends BiomeGenBase
009{
010    public BiomeGenEnd(int par1)
011    {
012        super(par1);
013        this.spawnableMonsterList.clear();
014        this.spawnableCreatureList.clear();
015        this.spawnableWaterCreatureList.clear();
016        this.field_82914_M.clear();
017        this.spawnableMonsterList.add(new SpawnListEntry(EntityEnderman.class, 10, 4, 4));
018        this.topBlock = (byte)Block.dirt.blockID;
019        this.fillerBlock = (byte)Block.dirt.blockID;
020        this.theBiomeDecorator = new BiomeEndDecorator(this);
021    }
022
023    @SideOnly(Side.CLIENT)
024
025    /**
026     * takes temperature, returns color
027     */
028    public int getSkyColorByTemp(float par1)
029    {
030        return 0;
031    }
032}