Tweaked some biomes
This commit is contained in:
parent
639025c398
commit
861216d2c5
7 changed files with 6 additions and 6 deletions
|
@ -34,7 +34,7 @@ public class BiomeGenChaparral extends BOPOverworldBiome
|
|||
this.spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
|
||||
|
||||
this.theBiomeDecorator.treesPerChunk = 8;
|
||||
this.theBiomeDecorator.grassPerChunk = 20;
|
||||
this.theBiomeDecorator.grassPerChunk = 10;
|
||||
|
||||
this.theBiomeDecorator.bopFeatures.bopFlowersPerChunk = 5;
|
||||
this.theBiomeDecorator.bopFeatures.bushesPerChunk = 10;
|
||||
|
|
|
@ -34,7 +34,7 @@ public class BiomeGenDeadSwamp extends BOPOverworldBiome
|
|||
this.waterColorMultiplier = 10661201;
|
||||
|
||||
this.theBiomeDecorator.treesPerChunk = 1;
|
||||
this.theBiomeDecorator.grassPerChunk = 25;
|
||||
this.theBiomeDecorator.grassPerChunk = 5;
|
||||
this.theBiomeDecorator.flowersPerChunk = -999;
|
||||
this.theBiomeDecorator.reedsPerChunk = -999;
|
||||
this.theBiomeDecorator.sandPerChunk = -999;
|
||||
|
|
|
@ -35,7 +35,7 @@ public class BiomeGenFen extends BOPOverworldBiome
|
|||
|
||||
this.theBiomeDecorator.treesPerChunk = 10;
|
||||
this.theBiomeDecorator.mushroomsPerChunk = 8;
|
||||
this.theBiomeDecorator.grassPerChunk = 15;
|
||||
this.theBiomeDecorator.grassPerChunk = 5;
|
||||
this.theBiomeDecorator.sandPerChunk = -999;
|
||||
this.theBiomeDecorator.sandPerChunk2 = -999;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ public class BiomeGenMarsh extends BOPOverworldBiome
|
|||
|
||||
this.theBiomeDecorator.treesPerChunk = -999;
|
||||
this.theBiomeDecorator.flowersPerChunk = -999;
|
||||
this.theBiomeDecorator.grassPerChunk = 50;
|
||||
this.theBiomeDecorator.grassPerChunk = 25;
|
||||
|
||||
this.theBiomeDecorator.reedsPerChunk = -999;
|
||||
this.theBiomeDecorator.sandPerChunk = -999;
|
||||
|
|
|
@ -33,7 +33,7 @@ public class BiomeGenMoor extends BOPOverworldBiome
|
|||
|
||||
this.theBiomeDecorator.treesPerChunk = -999;
|
||||
this.theBiomeDecorator.flowersPerChunk = -999;
|
||||
this.theBiomeDecorator.grassPerChunk = 15;
|
||||
this.theBiomeDecorator.grassPerChunk = 4;
|
||||
this.theBiomeDecorator.mushroomsPerChunk = 2;
|
||||
this.theBiomeDecorator.sandPerChunk = -999;
|
||||
this.theBiomeDecorator.sandPerChunk2 = -999;
|
||||
|
|
|
@ -30,7 +30,6 @@ public class BiomeGenPrairie extends BOPOverworldBiome
|
|||
this.spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
|
||||
|
||||
this.theBiomeDecorator.treesPerChunk = 1;
|
||||
this.theBiomeDecorator.grassPerChunk = 999;
|
||||
|
||||
this.theBiomeDecorator.bopFeatures.bopFlowersPerChunk = 30;
|
||||
this.theBiomeDecorator.bopFeatures.portobellosPerChunk = 2;
|
||||
|
|
|
@ -39,6 +39,7 @@ public class BOPCrafting
|
|||
private static void addCraftingRecipes()
|
||||
{
|
||||
//Plants
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 1, 1), new Object[] {new ItemStack(BOPCBlocks.flowers2,1,8)});
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 1, 6), new Object[] {new ItemStack(BOPCBlocks.flowers,1,1)});
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 1, 13), new Object[] {new ItemStack(BOPCBlocks.flowers,1,7)});
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 1, 14), new Object[] {new ItemStack(BOPCBlocks.flowers,1,5)});
|
||||
|
|
Loading…
Reference in a new issue