New biomes (WIP)

This commit is contained in:
paulevsGitch 2021-01-16 04:37:07 +03:00
parent 59167a18f7
commit cfba4b4822
4 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,18 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndSounds;
public class CapsacisForestBiome extends EndBiome {
public CapsacisForestBiome() {
super(new BiomeDefinition("capsacis_forest")
.setSurface(EndBlocks.SHADOW_GRASS, EndBlocks.CHORUS_NYLIUM)
.setMusic(EndSounds.MUSIC_FOREST)
.setWaterAndFogColor(84, 61, 127)
.setFoliageColor(71, 45, 120)
.setFogColor(78, 71, 92)
.setFogDensity(1.5F)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}

View file

@ -0,0 +1,18 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndSounds;
public class HangingGardensBiome extends EndBiome {
public HangingGardensBiome() {
super(new BiomeDefinition("hanging_gardens")
.setSurface(EndBlocks.SHADOW_GRASS, EndBlocks.CHORUS_NYLIUM)
.setMusic(EndSounds.MUSIC_FOREST)
.setWaterAndFogColor(84, 61, 127)
.setFoliageColor(71, 45, 120)
.setFogColor(78, 71, 92)
.setFogDensity(1.5F)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}