Geysers prototype

This commit is contained in:
paulevsGitch 2020-11-30 01:50:40 +03:00
parent 3ea02c3f45
commit c4b60cab54
4 changed files with 100 additions and 0 deletions

View file

@ -1,10 +1,14 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndFeatures;
public class BiomeSulfurSprings extends EndBiome {
public BiomeSulfurSprings() {
super(new BiomeDefinition("sulfur_springs")
.setSurface(EndBlocks.SULFURIC_ROCK.stone)
.addFeature(EndFeatures.GEYSER)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}