Tweaked the remaining sub-biomes

This commit is contained in:
Matt Caughey 2014-06-04 12:00:13 -04:00
parent 781c6eea34
commit dd74aab4ae
6 changed files with 16 additions and 14 deletions

View file

@ -17,7 +17,7 @@ import biomesoplenty.common.world.features.trees.WorldGenGiantFlower;
public class BiomeGenGarden extends BOPBiome
{
private static final Height biomeHeight = new Height(0.3F, 0.4F);
private static final Height biomeHeight = new Height(0.1F, 0.1F);
public BiomeGenGarden(int biomeID)
{

View file

@ -14,14 +14,14 @@ import biomesoplenty.common.world.features.trees.WorldGenMangrove;
public class BiomeGenMangrove extends BOPSubBiome
{
private static final Height biomeHeight = new Height(0.1F, 0.3F);
private static final Height biomeHeight = new Height(0.0F, 0.2F);
public BiomeGenMangrove(int biomeID)
{
super(biomeID);
this.zoom = 0.01D;
this.threshold = 0.8D;
this.threshold = 0.5D;
this.setHeight(biomeHeight);
this.setColor(7251289);
this.setTemperatureRainfall(0.8F, 0.9F);

View file

@ -6,6 +6,7 @@ import net.minecraft.block.Block;
import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import net.minecraft.world.biome.BiomeGenBase.Height;
import net.minecraft.world.gen.feature.WorldGenAbstractTree;
import net.minecraft.world.gen.feature.WorldGenTallGrass;
import biomesoplenty.api.content.BOPCBlocks;
@ -16,13 +17,16 @@ import biomesoplenty.common.world.features.trees.WorldGenOriginalTree;
public class BiomeGenOrchard extends BOPSubBiome
{
private static final Height biomeHeight = new Height(0.1F, 0.1F);
public BiomeGenOrchard(int biomeID)
{
super(biomeID);
this.zoom = 0.01D;
this.threshold = 0.3D;
this.zoom = 0.25D;
this.threshold = 0.25D;
this.setHeight(biomeHeight);
this.setColor(14024557);
this.setTemperatureRainfall(0.8F, 0.4F);

View file

@ -43,7 +43,7 @@ public class BOPConfigurationStrongholds
addStrongholdBiome(BOPCBiomes.flowerField);
addStrongholdBiome(BOPCBiomes.frostForest);
addStrongholdBiome(BOPCBiomes.fungiForest);
//addStrongholdBiome(BOPCBiomes.garden);
addStrongholdBiome(BOPCBiomes.garden);
addStrongholdBiome(BOPCBiomes.grassland);
addStrongholdBiome(BOPCBiomes.grove);
addStrongholdBiome(BOPCBiomes.heathland);
@ -52,15 +52,16 @@ public class BOPConfigurationStrongholds
addStrongholdBiome(BOPCBiomes.lavenderFields);
addStrongholdBiome(BOPCBiomes.lushDesert);
addStrongholdBiome(BOPCBiomes.lushSwamp);
addStrongholdBiome(BOPCBiomes.mangrove);
addStrongholdBiome(BOPCBiomes.mapleWoods);
addStrongholdBiome(BOPCBiomes.marsh);
addStrongholdBiome(BOPCBiomes.meadow);
addStrongholdBiome(BOPCBiomes.moor);
addStrongholdBiome(BOPCBiomes.mountain);
addStrongholdBiome(BOPCBiomes.mysticGrove);
//addStrongholdBiomBOPCBiomes.("oasis);
addStrongholdBiome(BOPCBiomes.oasis);
addStrongholdBiome(BOPCBiomes.ominousWoods);
//addStrongholdBiomBOPCBiomes.("orchard);
addStrongholdBiome(BOPCBiomes.orchard);
addStrongholdBiome(BOPCBiomes.outback);
addStrongholdBiome(BOPCBiomes.prairie);
addStrongholdBiome(BOPCBiomes.quagmire);

View file

@ -197,12 +197,12 @@ public class BOPBiomes
kelpForest = registerOverworldSubBiome(BiomeGenKelpForest.class, "Kelp Forest", 10, BiomeGenBase.ocean);
tropics = registerOverworldSubBiome(BiomeGenTropics.class, "Tropics", 10, BiomeGenBase.deepOcean);
volcano = registerOverworldSubBiome(BiomeGenVolcano.class, "Volcano", 10, BiomeGenBase.deepOcean);
mangrove = registerOverworldSubBiome(BiomeGenMangrove.class, "Mangrove", 10, BiomeGenBase.deepOcean);
//Sub Biomes
alpsForest = registerOverworldSubBiome(BiomeGenAlpsForest.class, "Alps Forest", 10, alps);
canyonRavine = registerOverworldSubBiome(BiomeGenCanyonRavine.class, "Canyon Ravine", 10, canyon);
glacier = registerOverworldSubBiome(BiomeGenGlacier.class, "Glacier", 10, arctic);
mangrove = registerOverworldSubBiome(BiomeGenMangrove.class, "Mangrove", 10, tropics);
meadowForest = registerOverworldSubBiome(BiomeGenMeadowForest.class, "Meadow Forest", 10, meadow);
oasis = registerOverworldSubBiome(BiomeGenOasis.class, "Oasis", 10, BiomeGenBase.desert);
orchard = registerOverworldSubBiome(BiomeGenOrchard.class, "Orchard", 10, BiomeGenBase.plains);

View file

@ -39,7 +39,7 @@ public class BOPEntities
registerEntityEgg(EntityJungleSpider.class, 5147192, 11013646);
EntityRegistry.addSpawn(EntityJungleSpider.class, 8, 1, 3, EnumCreatureType.monster, BOPCBiomes.bambooForest, BiomeGenBase.jungle, BOPCBiomes.tropicalRainforest/*, Biomes.oasis.get()*/, BOPCBiomes.tropics);
EntityRegistry.addSpawn(EntityJungleSpider.class, 8, 1, 3, EnumCreatureType.monster, BOPCBiomes.bambooForest, BiomeGenBase.jungle, BOPCBiomes.tropicalRainforest, BOPCBiomes.oasis, BOPCBiomes.tropics, BOPCBiomes.mangrove, BOPCBiomes.sacredSprings, BOPCBiomes.rainforest);
}
if (BOPConfigurationIDs.rosesterID > 0)
@ -48,10 +48,7 @@ public class BOPEntities
registerEntityEgg(EntityRosester.class, 14831439, 16756224);
/*TODO: FEATURE if (Biomes.garden.isPresent())
{
EntityRegistry.addSpawn(EntityRosester.class, 10, 2, 4, EnumCreatureType.creature, Biomes.garden.get());
}*/
EntityRegistry.addSpawn(EntityRosester.class, 10, 2, 4, EnumCreatureType.creature, BOPCBiomes.garden);
}
if (BOPConfigurationIDs.globID > 0)