Sulfur Springs biome (WIP)

This commit is contained in:
paulevsGitch 2020-11-29 23:58:44 +03:00
parent 05639b7e33
commit 6e63680002
3 changed files with 16 additions and 4 deletions

View file

@ -0,0 +1,10 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
public class BiomeSulfurSprings extends EndBiome {
public BiomeSulfurSprings() {
super(new BiomeDefinition("sulfur_springs")
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}