Tweaked which biomes villages can spawn in
This commit is contained in:
parent
54a4b92531
commit
2f64b3f883
9 changed files with 8 additions and 7 deletions
|
@ -34,6 +34,7 @@ public class BiomeGenArctic extends BOPBiome
|
|||
this.setTemperatureRainfall(0.05F, 0.5F);
|
||||
|
||||
this.canSpawnInBiome = false;
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.ICE_CAP, 30);
|
||||
|
||||
|
|
|
@ -53,6 +53,7 @@ public class BiomeGenBog extends BOPBiome
|
|||
this.fillerBlock = BOPBlocks.dirt.getDefaultState().withProperty(BlockBOPDirt.VARIANT, BlockBOPDirt.BOPDirtType.LOAMY);
|
||||
|
||||
this.canGenerateRivers = false;
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
||||
|
||||
|
|
|
@ -57,6 +57,7 @@ public class BiomeGenFen extends BOPBiome
|
|||
this.setTemperatureRainfall(0.4F, 0.4F);
|
||||
|
||||
this.canGenerateRivers = false;
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.COLD_SWAMP, 7);
|
||||
|
||||
|
|
|
@ -32,8 +32,6 @@ public class BiomeGenFlowerField extends BOPBiome
|
|||
|
||||
this.setColor(4044093);
|
||||
this.setTemperatureRainfall(0.6F, 0.7F);
|
||||
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.WARM_TEMPERATE, 3);
|
||||
|
||||
|
|
|
@ -42,6 +42,8 @@ public class BiomeGenFrostForest extends BOPBiome
|
|||
this.skyColor = 0xCEE0EA;
|
||||
this.setEnableSnow();
|
||||
this.setTemperatureRainfall(0.0F, 0.5F);
|
||||
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.TUNDRA, 7);
|
||||
|
||||
|
|
|
@ -35,8 +35,6 @@ public class BiomeGenLavenderFields extends BOPBiome
|
|||
|
||||
this.setColor(11035852);
|
||||
this.setTemperatureRainfall(0.6F, 0.7F);
|
||||
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.MEDITERANEAN, 3);
|
||||
|
||||
|
|
|
@ -48,8 +48,6 @@ public class BiomeGenLushDesert extends BOPBiome
|
|||
this.topBlock = Blocks.hardened_clay.getDefaultState();
|
||||
this.fillerBlock = Blocks.hardened_clay.getDefaultState();
|
||||
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.canSpawnInBiome = false;
|
||||
|
||||
this.addWeight(BOPClimates.HOT_DESERT, 5);
|
||||
|
|
|
@ -44,6 +44,8 @@ public class BiomeGenWoodland extends BOPBiome
|
|||
this.setColor(0x84A92D);
|
||||
this.setTemperatureRainfall(0.6F, 0.3F);
|
||||
|
||||
this.canGenerateVillages = false;
|
||||
|
||||
this.addWeight(BOPClimates.DRY_TEMPERATE, 5);
|
||||
this.addWeight(BOPClimates.COOL_TEMPERATE, 10);
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ achievement.obtain_pixie_dust=Don't Breathe This
|
|||
achievement.obtain_pixie_dust.desc=Kill a pixie and collect its magical dust
|
||||
achievement.obtain_celestial_crystal=Far Out...
|
||||
achievement.obtain_celestial_crystal.desc=Mine a celestial crystal in the End
|
||||
achievement.craft_ornamental_artifact=By Your Powers Combined...
|
||||
achievement.craft_ornamental_artifact=Your Powers Combined
|
||||
achievement.craft_ornamental_artifact.desc=Combine all 8 biome-exclusive gems together
|
||||
achievement.craft_ambrosia=Nectar of the Gods
|
||||
achievement.craft_ambrosia.desc=Sugar, water, honey, berries, roots, kelp, ichor, pixie dust, and celestial crystals!
|
||||
|
|
Loading…
Reference in a new issue