pryingtuna85649

OzBiome

May 12th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. package com.wizardofoz.basic.biome;
  2.  
  3. import java.util.Random;
  4.  
  5. import net.minecraft.world.biome.BiomeGenBase;
  6. import net.minecraftforge.common.BiomeDictionary;
  7.  
  8. public class OzBiome extends BiomeGenBase {
  9.  
  10. public static BiomeGenBase GillikinBiome;
  11. public static BiomeGenBase WinkiesBiomes;
  12. public static OzBiome[] ozBiomeList = new OzBiome['A'];
  13.  
  14. public static void initBiomes() {
  15. GillikinBiome = new BiomeGenGillikinBiome(0).setBiomeName("GillikinBiome");
  16. WinkiesBiomes = new BiomeGenWinkiesBiome(1).setBiomeName("WinkiesBiome");
  17. }
  18.  
  19. public OzBiome(int i) {
  20. super(i);
  21. ozBiomeList[i] = this;
  22.  
  23. BiomeDictionary.registerBiomeType(this, new BiomeDictionary.Type[0]);
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment