Bulb moss

This commit is contained in:
paulevsGitch 2020-12-12 13:50:40 +03:00
parent 2bf4e01e9c
commit 3647125bad
15 changed files with 286 additions and 5 deletions

View file

@ -220,6 +220,7 @@ public class EndBlocks {
public static final Block CYAN_MOSS = registerBlock("cyan_moss", new BlockWallPlant());
public static final Block TWISTED_MOSS = registerBlock("twisted_moss", new BlockWallPlant());
public static final Block TUBE_WORM = registerBlock("tube_worm", new BlockUnderwaterWallPlant());
public static final Block BULB_MOSS = registerBlock("bulb_moss", new BlockWallPlant(12));
// Crops //
public static final Block SHADOW_BERRY = registerBlock("shadow_berry", new BlockShadowBerry());

View file

@ -90,6 +90,8 @@ public class EndFeatures {
public static final EndFeature CYAN_MOSS_WOOD = new EndFeature("cyan_moss_wood", new WallPlantOnLogFeature(EndBlocks.CYAN_MOSS, 4), 25);
public static final EndFeature TWISTED_MOSS = new EndFeature("twisted_moss", new WallPlantFeature(EndBlocks.TWISTED_MOSS, 6), 15);
public static final EndFeature TWISTED_MOSS_WOOD = new EndFeature("twisted_moss_wood", new WallPlantOnLogFeature(EndBlocks.TWISTED_MOSS, 6), 25);
public static final EndFeature BULB_MOSS = new EndFeature("bulb_moss", new WallPlantFeature(EndBlocks.BULB_MOSS, 6), 1);
public static final EndFeature BULB_MOSS_WOOD = new EndFeature("bulb_moss_wood", new WallPlantOnLogFeature(EndBlocks.BULB_MOSS, 6), 15);
// Water //
public static final EndFeature BUBBLE_CORAL = new EndFeature("bubble_coral", new UnderwaterPlantFeature(EndBlocks.BUBBLE_CORAL, 6), 10);

View file

@ -23,6 +23,8 @@ public class BiomeAmberLand extends EndBiome {
.addFeature(EndFeatures.LANCELEAF)
.addFeature(EndFeatures.GLOW_PILLAR)
.addFeature(EndFeatures.AMBER_GRASS)
.addFeature(EndFeatures.BULB_MOSS)
.addFeature(EndFeatures.BULB_MOSS_WOOD)
.addFeature(EndFeatures.CHARNIA_ORANGE)
.addFeature(EndFeatures.CHARNIA_RED)
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)