Translations, amber grass & path

This commit is contained in:
paulevsGitch 2020-11-26 01:32:22 +03:00
parent 5679061765
commit 6b1029a628
13 changed files with 128 additions and 25 deletions

View file

@ -72,6 +72,7 @@ public class EndBlocks {
public static final Block CAVE_MOSS = registerBlock("cave_moss", new BlockTerrain(MaterialColor.PURPLE));
public static final Block CRYSTAL_MOSS = registerBlock("crystal_moss", new BlockTerrain(MaterialColor.PINK));
public static final Block SHADOW_GRASS = registerBlock("shadow_grass", new BlockShadowGrass());
public static final Block AMBER_GRASS = registerBlock("amber_grass", new BlockTerrain(MaterialColor.ORANGE));
// Roads //
public static final Block END_MYCELIUM_PATH = registerBlock("end_mycelium_path", new BlockPath(END_MYCELIUM));
@ -80,6 +81,7 @@ public class EndBlocks {
public static final Block CAVE_MOSS_PATH = registerBlock("cave_moss_path", new BlockPath(CAVE_MOSS));
public static final Block CRYSTAL_MOSS_PATH = registerBlock("crystal_moss_path", new BlockPath(CRYSTAL_MOSS));
public static final Block SHADOW_GRASS_PATH = registerBlock("shadow_grass_path", new BlockPath(SHADOW_GRASS));
public static final Block AMBER_GRASS_PATH = registerBlock("amber_grass_path", new BlockPath(AMBER_GRASS));
// Rocks //
public static final StoneMaterial FLAVOLITE = new StoneMaterial("flavolite", MaterialColor.SAND);

View file

@ -1,15 +1,19 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import net.minecraft.world.gen.feature.ConfiguredStructureFeatures;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndFeatures;
public class BiomeAmberLand extends EndBiome {
public BiomeAmberLand() {
super(new BiomeDefinition("amber_land")
.setFogColor(87, 26, 87)
.setFogColor(255, 184, 71)
.setFogDensity(2.0F)
.setPlantsColor(122, 45, 122)
.setSurface(EndBlocks.END_MOSS)
.setSurface(EndBlocks.AMBER_GRASS)
.addFeature(EndFeatures.END_LAKE_RARE)
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}