Temporary disabled unfinished features
This commit is contained in:
parent
ed35e28e94
commit
3af0392a52
5 changed files with 8 additions and 9 deletions
|
@ -215,7 +215,7 @@ public class EndBlocks {
|
||||||
public static final Block BLOSSOM_BERRY = registerBlock("blossom_berry_seed", new EndCropBlock(EndItems.BLOSSOM_BERRY, PINK_MOSS));
|
public static final Block BLOSSOM_BERRY = registerBlock("blossom_berry_seed", new EndCropBlock(EndItems.BLOSSOM_BERRY, PINK_MOSS));
|
||||||
public static final Block AMBER_ROOT = registerBlock("amber_root_seed", new EndCropBlock(EndItems.AMBER_ROOT_RAW, AMBER_MOSS));
|
public static final Block AMBER_ROOT = registerBlock("amber_root_seed", new EndCropBlock(EndItems.AMBER_ROOT_RAW, AMBER_MOSS));
|
||||||
public static final Block CHORUS_MUSHROOM = registerBlock("chorus_mushroom_seed", new EndCropBlock(EndItems.CHORUS_MUSHROOM_RAW, CHORUS_NYLIUM));
|
public static final Block CHORUS_MUSHROOM = registerBlock("chorus_mushroom_seed", new EndCropBlock(EndItems.CHORUS_MUSHROOM_RAW, CHORUS_NYLIUM));
|
||||||
public static final Block PEARLBERRY = registerBlock("pearlberry_seed", new EndCropBlock(EndItems.BLOSSOM_BERRY, END_MOSS, END_MYCELIUM));
|
//public static final Block PEARLBERRY = registerBlock("pearlberry_seed", new EndCropBlock(EndItems.BLOSSOM_BERRY, END_MOSS, END_MYCELIUM));
|
||||||
public static final Block CAVE_PUMPKIN_SEED = registerBlock("cave_pumpkin_seed", new CavePumpkinVineBlock());
|
public static final Block CAVE_PUMPKIN_SEED = registerBlock("cave_pumpkin_seed", new CavePumpkinVineBlock());
|
||||||
public static final Block CAVE_PUMPKIN = registerBlock("cave_pumpkin", new CavePumpkinBlock());
|
public static final Block CAVE_PUMPKIN = registerBlock("cave_pumpkin", new CavePumpkinBlock());
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,6 @@ import ru.betterend.world.features.terrain.SulphuricCaveFeature;
|
||||||
import ru.betterend.world.features.terrain.SulphuricLakeFeature;
|
import ru.betterend.world.features.terrain.SulphuricLakeFeature;
|
||||||
import ru.betterend.world.features.terrain.SurfaceVentFeature;
|
import ru.betterend.world.features.terrain.SurfaceVentFeature;
|
||||||
import ru.betterend.world.features.terrain.caves.RoundCaveFeature;
|
import ru.betterend.world.features.terrain.caves.RoundCaveFeature;
|
||||||
import ru.betterend.world.features.terrain.caves.TunelCaveFeature;
|
|
||||||
import ru.betterend.world.features.trees.DragonTreeFeature;
|
import ru.betterend.world.features.trees.DragonTreeFeature;
|
||||||
import ru.betterend.world.features.trees.GiganticAmaranitaFeature;
|
import ru.betterend.world.features.trees.GiganticAmaranitaFeature;
|
||||||
import ru.betterend.world.features.trees.HelixTreeFeature;
|
import ru.betterend.world.features.trees.HelixTreeFeature;
|
||||||
|
@ -132,7 +131,7 @@ public class EndFeatures {
|
||||||
public static final EndFeature BOLUX_MUSHROOM = new EndFeature("bolux_mushroom", new SinglePlantFeature(EndBlocks.BOLUX_MUSHROOM, 5, 5), 2);
|
public static final EndFeature BOLUX_MUSHROOM = new EndFeature("bolux_mushroom", new SinglePlantFeature(EndBlocks.BOLUX_MUSHROOM, 5, 5), 2);
|
||||||
public static final EndFeature CHORUS_MUSHROOM = new EndFeature("chorus_mushroom", new SinglePlantFeature(EndBlocks.CHORUS_MUSHROOM, 5, 5), 1);
|
public static final EndFeature CHORUS_MUSHROOM = new EndFeature("chorus_mushroom", new SinglePlantFeature(EndBlocks.CHORUS_MUSHROOM, 5, 5), 1);
|
||||||
public static final EndFeature AMBER_ROOT = new EndFeature("amber_root", new SinglePlantFeature(EndBlocks.AMBER_ROOT, 5, 5), 1);
|
public static final EndFeature AMBER_ROOT = new EndFeature("amber_root", new SinglePlantFeature(EndBlocks.AMBER_ROOT, 5, 5), 1);
|
||||||
public static final EndFeature PEARLBERRY = new EndFeature("pearlberry", new SinglePlantFeature(EndBlocks.PEARLBERRY, 5, 5), 1);
|
//public static final EndFeature PEARLBERRY = new EndFeature("pearlberry", new SinglePlantFeature(EndBlocks.PEARLBERRY, 5, 5), 1);
|
||||||
|
|
||||||
// Vines //
|
// Vines //
|
||||||
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);
|
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);
|
||||||
|
@ -202,7 +201,7 @@ public class EndFeatures {
|
||||||
public static final EndFeature OBSIDIAN_PILLAR_BASEMENT = EndFeature.makeChansedFeature("obsidian_pillar_basement", new ObsidianPillarBasementFeature(), 8);
|
public static final EndFeature OBSIDIAN_PILLAR_BASEMENT = EndFeature.makeChansedFeature("obsidian_pillar_basement", new ObsidianPillarBasementFeature(), 8);
|
||||||
public static final EndFeature OBSIDIAN_BOULDER = EndFeature.makeChansedFeature("obsidian_boulder", new ObsidianBoulderFeature(), 10);
|
public static final EndFeature OBSIDIAN_BOULDER = EndFeature.makeChansedFeature("obsidian_boulder", new ObsidianBoulderFeature(), 10);
|
||||||
public static final EndFeature FALLEN_PILLAR = EndFeature.makeChansedFeature("fallen_pillar", new FallenPillarFeature(), 20);
|
public static final EndFeature FALLEN_PILLAR = EndFeature.makeChansedFeature("fallen_pillar", new FallenPillarFeature(), 20);
|
||||||
public static final EndFeature TUNEL_CAVE = EndFeature.makeRawGenFeature("tunel_cave", new TunelCaveFeature(), 2);
|
//public static final EndFeature TUNEL_CAVE = EndFeature.makeRawGenFeature("tunel_cave", new TunelCaveFeature(), 2);
|
||||||
|
|
||||||
// Ores //
|
// Ores //
|
||||||
public static final EndFeature THALLASIUM_ORE = EndFeature.makeOreFeature("thallasium_ore", EndBlocks.THALLASIUM.ore, 12, 6, 0, 16, 128);
|
public static final EndFeature THALLASIUM_ORE = EndFeature.makeOreFeature("thallasium_ore", EndBlocks.THALLASIUM.ore, 12, 6, 0, 16, 128);
|
||||||
|
@ -259,7 +258,7 @@ public class EndFeatures {
|
||||||
|
|
||||||
if (EndBiomes.getBiome(id).hasCaves()) {
|
if (EndBiomes.getBiome(id).hasCaves()) {
|
||||||
addFeature(ROUND_CAVE, features);
|
addFeature(ROUND_CAVE, features);
|
||||||
addFeature(TUNEL_CAVE, features);
|
//addFeature(TUNEL_CAVE, features);
|
||||||
}
|
}
|
||||||
|
|
||||||
EndBiome endBiome = EndBiomes.getBiome(id);
|
EndBiome endBiome = EndBiomes.getBiome(id);
|
||||||
|
@ -277,7 +276,7 @@ public class EndFeatures {
|
||||||
|
|
||||||
if (def.hasCaves()) {
|
if (def.hasCaves()) {
|
||||||
def.addFeature(ROUND_CAVE);
|
def.addFeature(ROUND_CAVE);
|
||||||
def.addFeature(TUNEL_CAVE);
|
//def.addFeature(TUNEL_CAVE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ public class FoggyMushroomlandBiome extends EndBiome {
|
||||||
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
||||||
.addFeature(EndFeatures.CREEPING_MOSS)
|
.addFeature(EndFeatures.CREEPING_MOSS)
|
||||||
.addFeature(EndFeatures.DENSE_VINE)
|
.addFeature(EndFeatures.DENSE_VINE)
|
||||||
.addFeature(EndFeatures.PEARLBERRY)
|
//.addFeature(EndFeatures.PEARLBERRY)
|
||||||
.addFeature(EndFeatures.CYAN_MOSS)
|
.addFeature(EndFeatures.CYAN_MOSS)
|
||||||
.addFeature(EndFeatures.CYAN_MOSS_WOOD)
|
.addFeature(EndFeatures.CYAN_MOSS_WOOD)
|
||||||
.addFeature(EndFeatures.END_LILY)
|
.addFeature(EndFeatures.END_LILY)
|
||||||
|
|
|
@ -27,7 +27,7 @@ public class MegalakeBiome extends EndBiome {
|
||||||
.addFeature(EndFeatures.END_LILY_RARE)
|
.addFeature(EndFeatures.END_LILY_RARE)
|
||||||
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
||||||
.addFeature(EndFeatures.CREEPING_MOSS)
|
.addFeature(EndFeatures.CREEPING_MOSS)
|
||||||
.addFeature(EndFeatures.PEARLBERRY)
|
//.addFeature(EndFeatures.PEARLBERRY)
|
||||||
.addFeature(EndFeatures.CHARNIA_CYAN)
|
.addFeature(EndFeatures.CHARNIA_CYAN)
|
||||||
.addFeature(EndFeatures.CHARNIA_LIGHT_BLUE)
|
.addFeature(EndFeatures.CHARNIA_LIGHT_BLUE)
|
||||||
.addFeature(EndFeatures.CHARNIA_RED_RARE)
|
.addFeature(EndFeatures.CHARNIA_RED_RARE)
|
||||||
|
|
|
@ -29,7 +29,7 @@ public class MegalakeGroveBiome extends EndBiome {
|
||||||
.addFeature(EndFeatures.BUBBLE_CORAL_RARE)
|
.addFeature(EndFeatures.BUBBLE_CORAL_RARE)
|
||||||
.addFeature(EndFeatures.END_LILY_RARE)
|
.addFeature(EndFeatures.END_LILY_RARE)
|
||||||
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
.addFeature(EndFeatures.UMBRELLA_MOSS)
|
||||||
.addFeature(EndFeatures.PEARLBERRY)
|
//.addFeature(EndFeatures.PEARLBERRY)
|
||||||
.addFeature(EndFeatures.CREEPING_MOSS)
|
.addFeature(EndFeatures.CREEPING_MOSS)
|
||||||
.addFeature(EndFeatures.CHARNIA_CYAN)
|
.addFeature(EndFeatures.CHARNIA_CYAN)
|
||||||
.addFeature(EndFeatures.CHARNIA_LIGHT_BLUE)
|
.addFeature(EndFeatures.CHARNIA_LIGHT_BLUE)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue