Renamed Bamboo Grove to Bamboo Blossom Grove

This commit is contained in:
Forstride 2020-11-05 21:04:14 -05:00
parent ad1deb9352
commit 0123ce2257
9 changed files with 16 additions and 16 deletions

View File

@ -17,7 +17,7 @@ public class BOPBiomes
{
public static RegistryKey<Biome> alps = register("alps");
public static RegistryKey<Biome> alps_foothills = register("alps_foothills");
public static RegistryKey<Biome> bamboo_grove = register("bamboo_grove");
public static RegistryKey<Biome> bamboo_blossom_grove = register("bamboo_blossom_grove");
public static RegistryKey<Biome> bayou = register("bayou");
public static RegistryKey<Biome> bayou_mangrove = register("bayou_mangrove");
public static RegistryKey<Biome> cherry_blossom_grove = register("cherry_blossom_grove");

View File

@ -20,9 +20,9 @@ import net.minecraft.world.gen.surfacebuilders.ConfiguredSurfaceBuilder;
import net.minecraft.world.gen.surfacebuilders.ConfiguredSurfaceBuilders;
import net.minecraft.world.gen.surfacebuilders.SurfaceBuilder;
public class BambooGroveBiome extends BiomeTemplate
public class BambooBlossomGroveBiome extends BiomeTemplate
{
public BambooGroveBiome()
public BambooBlossomGroveBiome()
{
}
@ -53,7 +53,7 @@ public class BambooGroveBiome extends BiomeTemplate
////////////////////////////////////////////////////////////
// Vegetation
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.BAMBOO_GROVE_TREES);
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.BAMBOO_BLOSSOM_GROVE_TREES);
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.CHERRY_BLOSSOM_GROVE_FLOWERS);
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.LILAC_2);

View File

@ -108,7 +108,7 @@ public class BOPConfiguredFeatures
// Biome Tree Listings
public static final ConfiguredFeature<?, ?> ALPS_FOOTHILLS_TREES = register("alps_foothills_trees", ALPS_SPRUCE_TREE.decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(2, 0.1F, 1))));
public static final ConfiguredFeature<?, ?> BAMBOO_GROVE_TREES = register("bamboo_grove_trees", Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(WHITE_CHERRY_TREE_BEES.weighted(0.05F), PINK_CHERRY_TREE_BEES.weighted(0.05F), BIG_WHITE_CHERRY_TREE.weighted(0.05F), BIG_PINK_CHERRY_TREE.weighted(0.05F), BIG_FLOWERING_OAK_TREE.weighted(0.1F), FLOWERING_BUSH.weighted(0.3F)), FLOWERING_OAK_TREE_BEES)).decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(7, 0.3F, 1))));
public static final ConfiguredFeature<?, ?> BAMBOO_BLOSSOM_GROVE_TREES = register("bamboo_blossom_grove_trees", Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(WHITE_CHERRY_TREE_BEES.weighted(0.05F), PINK_CHERRY_TREE_BEES.weighted(0.05F), BIG_WHITE_CHERRY_TREE.weighted(0.05F), BIG_PINK_CHERRY_TREE.weighted(0.05F), BIG_FLOWERING_OAK_TREE.weighted(0.1F), FLOWERING_BUSH.weighted(0.3F)), FLOWERING_OAK_TREE_BEES)).decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(7, 0.3F, 1))));
public static final ConfiguredFeature<?, ?> BAYOU_TREES = register("bayou_trees", Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(CYPRESS_TREE_MEDIUM.weighted(0.3F)), CYPRESS_TREE)).decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(2, 0.6F, 1))));
public static final ConfiguredFeature<?, ?> CHERRY_BLOSSOM_GROVE_TREES = register("cherry_blossom_grove_trees", Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(WHITE_CHERRY_TREE_BEES.weighted(0.1F), PINK_CHERRY_TREE_BEES.weighted(0.2F), BIG_WHITE_CHERRY_TREE.weighted(0.3F), FLOWERING_OAK_TREE_BEES.weighted(0.15F), FLOWERING_BUSH.weighted(0.3F)), BIG_PINK_CHERRY_TREE)).decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(5, 0.3F, 1))));
public static final ConfiguredFeature<?, ?> CONIFEROUS_FOREST_TREES = register("coniferous_forest_trees", Feature.RANDOM_SELECTOR.configured(new MultipleRandomFeatureConfig(ImmutableList.of(FIR_TREE.weighted(0.33333334F)), FIR_TREE_LARGE)).decorated(Features.Placements.HEIGHTMAP_SQUARE).decorated(Placement.COUNT_EXTRA.configured(new AtSurfaceWithExtraConfig(10, 0.1F, 1))));

View File

@ -32,7 +32,7 @@ public class BOPConfiguredSurfaceBuilders
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> MARSH = register("marsh", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.MARSH, SurfaceBuilder.CONFIG_GRASS));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> VOLCANO = register("volcano", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.VOLCANO, BOPSurfaceBuilders.BASALT_SURFACE));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> VOLCANIC_PLAINS = register("volcanic_plains", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.BLACK_SAND, BOPSurfaceBuilders.BLACK_SAND_SURFACE));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> GROVE_LAKES = register("grove_lakes", new ConfiguredSurfaceBuilder(SurfaceBuilder.DEFAULT, BOPSurfaceBuilders.DIORITE_SURFACE));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> GROVE_LAKES = register("grove_lakes", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.DEEP_TOP_LAYER, BOPSurfaceBuilders.DIORITE_SURFACE));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> DEEP_GRASS = register("deep_grass", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.DEEP_TOP_LAYER, SurfaceBuilder.CONFIG_GRASS));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> RAINFOREST_CLIFFS = register("rainforest_cliffs", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.TERRACOTTA, SurfaceBuilder.CONFIG_GRASS));
public static final ConfiguredSurfaceBuilder<SurfaceBuilderConfig> ORIGIN_VALLEY = register("origin_valley", new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.ORIGIN_VALLEY, BOPSurfaceBuilders.ORIGIN_GRASS_SURFACE));

View File

@ -127,7 +127,7 @@ public class ModBiomes
//Overworld Biomes
registerBiome(new AlpsBiome(), "alps");
registerBiome(new BambooGroveBiome(), "bamboo_grove");
registerBiome(new BambooBlossomGroveBiome(), "bamboo_blossom_grove");
registerBiome(new BayouBiome(), "bayou");
registerBiome(new CherryBlossomGroveBiome(), "cherry_blossom_grove");
registerBiome(new ConiferousForestBiome(), "coniferous_forest");
@ -204,7 +204,7 @@ public class ModBiomes
registerSubBiome(bayou, deep_bayou, 1.0F, 100);
registerSubBiome(bayou, bayou_mangrove, 1.0F, 100);
registerSubBiome(cherry_blossom_grove, bamboo_grove, 0.8F, 100);
registerSubBiome(cherry_blossom_grove, bamboo_blossom_grove, 0.8F, 100);
registerSubBiome(coniferous_forest, fir_clearing, 0.75F, 100);
registerSubBiome(coniferous_forest, coniferous_lakes, 1.0F, 100);
@ -318,7 +318,7 @@ public class ModBiomes
{
registerVillagerType(alps, VillagerType.SNOW);
registerVillagerType(alps_foothills, VillagerType.SNOW);
registerVillagerType(bamboo_grove, VillagerType.PLAINS);
registerVillagerType(bamboo_blossom_grove, VillagerType.PLAINS);
registerVillagerType(bayou, VillagerType.SWAMP);
registerVillagerType(bayou_mangrove, VillagerType.SWAMP);
registerVillagerType(cherry_blossom_grove, VillagerType.PLAINS);

View File

@ -9,7 +9,7 @@
"biome.biomesoplenty.alps": "Alps",
"biome.biomesoplenty.alps_foothills": "Alps Foothills",
"biome.biomesoplenty.bamboo_grove": "Bamboo Grove",
"biome.biomesoplenty.bamboo_blossom_grove": "Bamboo Blossom Grove",
"biome.biomesoplenty.bayou": "Bayou",
"biome.biomesoplenty.bayou_mangrove": "Bayou Mangrove",
"biome.biomesoplenty.cherry_blossom_grove": "Cherry Blossom Grove",

View File

@ -27,10 +27,10 @@
"biome": "biomesoplenty:alps_foothills"
}
},
"bamboo_grove": {
"bamboo_blossom_grove": {
"trigger": "minecraft:location",
"conditions": {
"biome": "biomesoplenty:bamboo_grove"
"biome": "biomesoplenty:bamboo_blossom_grove"
}
},
"bayou": {

View File

@ -26,10 +26,10 @@
"biome": "biomesoplenty:alps_foothills"
}
},
"bamboo_grove": {
"bamboo_blossom_grove": {
"trigger": "minecraft:location",
"conditions": {
"biome": "biomesoplenty:bamboo_grove"
"biome": "biomesoplenty:bamboo_blossom_grove"
}
},
"bayou": {
@ -469,7 +469,7 @@
[
"alps",
"alps_foothills",
"bamboo_grove",
"bamboo_blossom_grove",
"bayou",
"bayou_mangrove",
"cherry_blossom_grove",

View File

@ -1,6 +1,6 @@
{
"pack": {
"description": "Resources used for Biomes O' Plenty",
"pack_format": 5
"pack_format": 6
}
}