- 
                Notifications
    You must be signed in to change notification settings 
- Fork 3
Biome Replacement
        gniftygnome edited this page Mar 27, 2024 
        ·
        14 revisions
      
    Replacements require the relevant dimension key, the biome key of the target biome to replace, the biome key of the biome to replace it with, and optionally the proportion of replacement (between 0.0 and 1.0; defaults to 1.0).
- Methods:  replaceOverworld,replaceNether,replaceEnd
BiomePlacement.replaceOverworld(BiomeKeys.PLAINS, BiomeKeys.WARPED_FOREST, 0.5d);
BiomePlacement.replaceNether(BiomeKeys.WARPED_FOREST, BiomeKeys.END_HIGHLANDS);
BiomePlacement.replaceEnd(BiomeKeys.END_HIGHLANDS, BiomeKeys.PLAINS);- Multiple replacements can be specified in the replacementslist.
{
  "replacements": [
    {
      "dimension": "minecraft:overworld",
      "target": "minecraft:plains",
      "biome": "minecraft:warped_forest",
      "proportion": 0.5
    },
    {
      "dimension": "minecraft:the_nether",
      "target": "minecraft:warped_forest",
      "biome": "minecraft:end_highlands"
    },
    {
      "dimension": "minecraft:the_end",
      "target": "minecraft:end_highlands",
      "biome": "minecraft:plains"
    }
  ]
}