Advertisement
Guest User

Untitled

a guest
Oct 4th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. public class BiomeAshDesert extends Biome {
  2.     public BiomeAshDesert()
  3.     {
  4.         super(new BiomeProperties("Ash Desert").setTemperature(2.0F).setRainfall(0.0F).setRainDisabled());
  5.         topBlock = RosetteBlocks.ashBlock.getDefaultState();
  6.         fillerBlock = Blocks.SANDSTONE.getDefaultState();
  7.         this.spawnableMonsterList.add(new Biome.SpawnListEntry(EntityMagmaCube.class, 2, 4, 4));
  8.         this.decorator.flowersPerChunk = 0;
  9.         this.decorator.grassPerChunk = 0;
  10.         this.decorator.treesPerChunk = 0;
  11.         System.out.println("Generating ash desert...");
  12.     }
  13.    
  14.    
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement