Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.idunno_meneither.me.world.biomes;
- import net.minecraft.world.biome.BiomeGenBase;
- public class jsmcBambooForest extends BiomeGenBase{
- public jsmcBambooForest(int id) {
- super(id);
- this.waterColorMultiplier = 0xABEAFF;
- this.setHeight(height_LowHills);
- this.spawnableCaveCreatureList.clear();
- this.spawnableCreatureList.clear();
- this.spawnableMonsterList.clear();
- this.spawnableWaterCreatureList.clear();
- }
- }
- ////////////////////////////////// new class /////////////////////
- package com.idunno_meneither.me.world.biomes;
- import net.minecraft.world.biome.BiomeGenBase;
- public class jsmcCoral_Reef extends BiomeGenBase {
- public jsmcCoral_Reef(int id) {
- super(id);
- this.waterColorMultiplier = 0x005C7A;
- this.setHeight(height_Oceans);
- this.spawnableCaveCreatureList.clear();
- this.spawnableCreatureList.clear();
- this.spawnableMonsterList.clear();
- this.spawnableWaterCreatureList.clear();
- }
- }
- ////////////////////////////////////new class ////////////////////////////////
- package com.idunno_meneither.me.world.biomes;
- import com.idunno_meneither.me.entity.neutral.jsmcSwine;
- import net.minecraft.block.BlockDirt;
- import net.minecraft.init.Blocks;
- import net.minecraft.world.biome.BiomeGenBase;
- public class jsmcDark_Oak_Forest extends BiomeGenBase{
- public jsmcDark_Oak_Forest(int id) {
- super(id);
- this.setHeight(BiomeGenBase.height_LowIslands);
- this.setTemperatureRainfall(0.5F, 0.9F);
- this.waterColorMultiplier = 5270157;
- this.topBlock = Blocks.grass.getDefaultState();
- this.fillerBlock = Blocks.dirt.getDefaultState().withProperty(BlockDirt.VARIANT, BlockDirt.DirtType.DIRT);
- this.spawnableCaveCreatureList.clear();
- this.spawnableCreatureList.clear();
- this.spawnableMonsterList.clear();
- this.spawnableWaterCreatureList.clear();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment