Guest User

Untitled

a guest
Aug 4th, 2018
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.84 KB | None | 0 0
  1. package com.idunno_meneither.me.world.biomes;
  2.  
  3. import net.minecraft.world.biome.BiomeGenBase;
  4.  
  5. public class jsmcBambooForest extends BiomeGenBase{
  6.  
  7.     public jsmcBambooForest(int id) {
  8.         super(id);
  9.         this.waterColorMultiplier = 0xABEAFF;
  10.         this.setHeight(height_LowHills);
  11.        
  12.         this.spawnableCaveCreatureList.clear();
  13.         this.spawnableCreatureList.clear();
  14.         this.spawnableMonsterList.clear();
  15.         this.spawnableWaterCreatureList.clear();
  16.     }
  17.  
  18. }
  19.  
  20. ////////////////////////////////// new class /////////////////////
  21.  
  22. package com.idunno_meneither.me.world.biomes;
  23.  
  24. import net.minecraft.world.biome.BiomeGenBase;
  25.  
  26. public class jsmcCoral_Reef extends BiomeGenBase {
  27.  
  28.     public jsmcCoral_Reef(int id) {
  29.         super(id);
  30.         this.waterColorMultiplier = 0x005C7A;
  31.         this.setHeight(height_Oceans);
  32.  
  33.         this.spawnableCaveCreatureList.clear();
  34.         this.spawnableCreatureList.clear();
  35.         this.spawnableMonsterList.clear();
  36.         this.spawnableWaterCreatureList.clear();
  37.        
  38.     }
  39. }
  40.  
  41. ////////////////////////////////////new class ////////////////////////////////
  42.  
  43. package com.idunno_meneither.me.world.biomes;
  44.  
  45. import com.idunno_meneither.me.entity.neutral.jsmcSwine;
  46.  
  47. import net.minecraft.block.BlockDirt;
  48. import net.minecraft.init.Blocks;
  49. import net.minecraft.world.biome.BiomeGenBase;
  50.  
  51. public class jsmcDark_Oak_Forest extends BiomeGenBase{
  52.  
  53.     public jsmcDark_Oak_Forest(int id) {
  54.         super(id);
  55.         this.setHeight(BiomeGenBase.height_LowIslands);
  56.         this.setTemperatureRainfall(0.5F, 0.9F);
  57.         this.waterColorMultiplier = 5270157;
  58.         this.topBlock = Blocks.grass.getDefaultState();
  59.         this.fillerBlock = Blocks.dirt.getDefaultState().withProperty(BlockDirt.VARIANT, BlockDirt.DirtType.DIRT);
  60.        
  61.         this.spawnableCaveCreatureList.clear();
  62.         this.spawnableCreatureList.clear();
  63.         this.spawnableMonsterList.clear();
  64.         this.spawnableWaterCreatureList.clear();
  65.     }
  66.  
  67. }
Advertisement
Add Comment
Please, Sign In to add comment