Пример #1
0
 public BiomeGenMeadow(int par1) {
   super(par1);
   theBiomeDecorator = new BiomeDecoratorBOP(this);
   customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator;
   customBiomeDecorator.treesPerChunk = 2;
   customBiomeDecorator.grassPerChunk = 10;
   customBiomeDecorator.tinyFlowersPerChunk = 14;
   customBiomeDecorator.flowersPerChunk = 10;
   customBiomeDecorator.carrotsPerChunk = -999;
   customBiomeDecorator.sandPerChunk = -999;
   customBiomeDecorator.sandPerChunk2 = -999;
   customBiomeDecorator.hydrangeasPerChunk = 3;
   customBiomeDecorator.sunflowersPerChunk = 1;
   customBiomeDecorator.generatePumpkins = false;
 }
Пример #2
0
 public BiomeGenMeadow(int par1) {
   super(par1);
   theBiomeDecorator = new BiomeDecoratorBOP(this);
   customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator;
   customBiomeDecorator.treesPerChunk = 2;
   customBiomeDecorator.grassPerChunk = 10;
   customBiomeDecorator.tinyFlowersPerChunk = 14;
   customBiomeDecorator.flowersPerChunk = 10;
   customBiomeDecorator.carrotsPerChunk = 1;
   customBiomeDecorator.sandPerChunk = -999;
   customBiomeDecorator.sandPerChunk2 = -999;
   customBiomeDecorator.hydrangeasPerChunk = 3;
   customBiomeDecorator.sunflowersPerChunk = 1;
   customBiomeDecorator.generatePumpkins = false;
   spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
 }