Jungle fern

This commit is contained in:
paulevsGitch 2020-12-25 18:52:50 +03:00
parent 71a3e88b62
commit 1aeeb158fd
11 changed files with 162 additions and 2 deletions

View file

@ -245,6 +245,7 @@ public class EndBlocks {
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));
public static final Block JUNGLE_FERN = registerBlock("jungle_fern", new BlockWallPlant());
// Crops //
public static final Block SHADOW_BERRY = registerBlock("shadow_berry", new BlockShadowBerry());

View file

@ -107,6 +107,7 @@ public class EndFeatures {
public static final EndFeature BULB_MOSS_WOOD = new EndFeature("bulb_moss_wood", new WallPlantOnLogFeature(EndBlocks.BULB_MOSS, 6), 15);
public static final EndFeature SMALL_JELLYSHROOM_WALL = new EndFeature("small_jellyshroom_wall", new WallPlantFeature(EndBlocks.SMALL_JELLYSHROOM, 4), 4);
public static final EndFeature SMALL_JELLYSHROOM_WOOD = new EndFeature("small_jellyshroom_wood", new WallPlantOnLogFeature(EndBlocks.SMALL_JELLYSHROOM, 4), 8);
public static final EndFeature JUNGLE_FERN_WOOD = new EndFeature("jungle_fern_wood", new WallPlantOnLogFeature(EndBlocks.JUNGLE_FERN, 4), 8);
// Water //
public static final EndFeature BUBBLE_CORAL = new EndFeature("bubble_coral", new UnderwaterPlantFeature(EndBlocks.BUBBLE_CORAL, 6), 10);

View file

@ -18,6 +18,7 @@ public class BiomeUmbrellaJungle extends EndBiome {
.addFeature(EndFeatures.JUNGLE_GRASS)
.addFeature(EndFeatures.CYAN_MOSS)
.addFeature(EndFeatures.CYAN_MOSS_WOOD)
.addFeature(EndFeatures.JUNGLE_FERN_WOOD)
.addFeature(EndFeatures.SMALL_JELLYSHROOM_WALL)
.addFeature(EndFeatures.SMALL_JELLYSHROOM_WOOD)
.addFeature(EndFeatures.SMALL_JELLYSHROOM_CEIL)