Merge branch 'master' of https://github.com/paulevsGitch/BetterEnd
This commit is contained in:
commit
ce8ae2e7fe
2 changed files with 4 additions and 48 deletions
|
@ -1,37 +1,15 @@
|
||||||
package ru.betterend.world.biome;
|
package ru.betterend.world.biome;
|
||||||
|
|
||||||
import net.minecraft.entity.EntityType;
|
import net.minecraft.entity.EntityType;
|
||||||
import net.minecraft.particle.ParticleTypes;
|
|
||||||
import net.minecraft.world.gen.GenerationStep.Feature;
|
|
||||||
import net.minecraft.world.gen.feature.ConfiguredFeatures;
|
|
||||||
import net.minecraft.world.gen.feature.ConfiguredStructureFeatures;
|
|
||||||
import ru.betterend.registry.EndBlocks;
|
import ru.betterend.registry.EndBlocks;
|
||||||
import ru.betterend.registry.EndEntities;
|
|
||||||
import ru.betterend.registry.EndFeatures;
|
|
||||||
import ru.betterend.registry.EndSounds;
|
|
||||||
|
|
||||||
public class BiomeAmberLand extends EndBiome {
|
public class BiomeAmberLand extends EndBiome {
|
||||||
public BiomeAmberLand() {
|
public BiomeAmberLand() {
|
||||||
super(new BiomeDefinition("amber_land")
|
super(new BiomeDefinition("amber_land")
|
||||||
.setFogColor(87, 26, 87)
|
.setFogColor(87, 26, 87)
|
||||||
.setFogDensity(1.5F)
|
.setFogDensity(2.0F)
|
||||||
.setPlantsColor(122, 45, 122)
|
.setPlantsColor(122, 45, 122)
|
||||||
.setSurface(EndBlocks.CHORUS_NYLIUM)
|
.setSurface(EndBlocks.END_MOSS)
|
||||||
.setParticles(ParticleTypes.PORTAL, 0.01F)
|
|
||||||
.setLoop(EndSounds.AMBIENT_CHORUS_FOREST)
|
|
||||||
.setMusic(EndSounds.MUSIC_CHORUS_FOREST)
|
|
||||||
.addFeature(EndFeatures.VIOLECITE_LAYER)
|
|
||||||
.addFeature(EndFeatures.END_LAKE_RARE)
|
|
||||||
.addFeature(EndFeatures.PYTHADENDRON_TREE)
|
|
||||||
.addFeature(EndFeatures.PYTHADENDRON_BUSH)
|
|
||||||
.addFeature(EndFeatures.PURPLE_POLYPORE_DENSE)
|
|
||||||
.addFeature(Feature.VEGETAL_DECORATION, ConfiguredFeatures.CHORUS_PLANT)
|
|
||||||
.addFeature(Feature.VEGETAL_DECORATION, ConfiguredFeatures.CHORUS_PLANT)
|
|
||||||
.addFeature(EndFeatures.CHORUS_GRASS)
|
|
||||||
.addFeature(EndFeatures.TAIL_MOSS)
|
|
||||||
.addFeature(EndFeatures.TAIL_MOSS_WOOD)
|
|
||||||
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)
|
|
||||||
.addMobSpawn(EndEntities.END_SLIME, 5, 1, 2)
|
|
||||||
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
|
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,37 +1,15 @@
|
||||||
package ru.betterend.world.biome;
|
package ru.betterend.world.biome;
|
||||||
|
|
||||||
import net.minecraft.entity.EntityType;
|
import net.minecraft.entity.EntityType;
|
||||||
import net.minecraft.particle.ParticleTypes;
|
|
||||||
import net.minecraft.world.gen.GenerationStep.Feature;
|
|
||||||
import net.minecraft.world.gen.feature.ConfiguredFeatures;
|
|
||||||
import net.minecraft.world.gen.feature.ConfiguredStructureFeatures;
|
|
||||||
import ru.betterend.registry.EndBlocks;
|
import ru.betterend.registry.EndBlocks;
|
||||||
import ru.betterend.registry.EndEntities;
|
|
||||||
import ru.betterend.registry.EndFeatures;
|
|
||||||
import ru.betterend.registry.EndSounds;
|
|
||||||
|
|
||||||
public class BlossomingSpires extends EndBiome {
|
public class BlossomingSpires extends EndBiome {
|
||||||
public BlossomingSpires() {
|
public BlossomingSpires() {
|
||||||
super(new BiomeDefinition("blossoming_spires")
|
super(new BiomeDefinition("blossoming_spires")
|
||||||
.setFogColor(87, 26, 87)
|
.setFogColor(87, 26, 87)
|
||||||
.setFogDensity(1.5F)
|
.setFogDensity(2.0F)
|
||||||
.setPlantsColor(122, 45, 122)
|
.setPlantsColor(122, 45, 122)
|
||||||
.setSurface(EndBlocks.CHORUS_NYLIUM)
|
.setSurface(EndBlocks.END_MOSS)
|
||||||
.setParticles(ParticleTypes.PORTAL, 0.01F)
|
|
||||||
.setLoop(EndSounds.AMBIENT_CHORUS_FOREST)
|
|
||||||
.setMusic(EndSounds.MUSIC_CHORUS_FOREST)
|
|
||||||
.addFeature(EndFeatures.VIOLECITE_LAYER)
|
|
||||||
.addFeature(EndFeatures.END_LAKE_RARE)
|
|
||||||
.addFeature(EndFeatures.PYTHADENDRON_TREE)
|
|
||||||
.addFeature(EndFeatures.PYTHADENDRON_BUSH)
|
|
||||||
.addFeature(EndFeatures.PURPLE_POLYPORE_DENSE)
|
|
||||||
.addFeature(Feature.VEGETAL_DECORATION, ConfiguredFeatures.CHORUS_PLANT)
|
|
||||||
.addFeature(Feature.VEGETAL_DECORATION, ConfiguredFeatures.CHORUS_PLANT)
|
|
||||||
.addFeature(EndFeatures.CHORUS_GRASS)
|
|
||||||
.addFeature(EndFeatures.TAIL_MOSS)
|
|
||||||
.addFeature(EndFeatures.TAIL_MOSS_WOOD)
|
|
||||||
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)
|
|
||||||
.addMobSpawn(EndEntities.END_SLIME, 5, 1, 2)
|
|
||||||
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
|
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue