From 5f11689a104e36f136d562eed9ff5a7feaf760a2 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 23 Jul 2021 21:10:08 +0100 Subject: [PATCH] Added biome ID mapping table --- README.md | 3 ++ biome_id_map.json | 78 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 biome_id_map.json diff --git a/README.md b/README.md index b56af41..8df7311 100644 --- a/README.md +++ b/README.md @@ -48,5 +48,8 @@ This file contains an ordered list of items which appear in the vanilla creative ## biome_definitions.nbt This file contains a network-format NBT blob containing biome definitions obtained from `BiomeDefinitionListPacket`. +## biome_id_map.json +This file contains a mapping of Minecraft string biome IDs to their legacy integer ID counterparts. While biome IDs aren't dynamic yet, it's expected they will become dynamic in the future. + ## entity_identifiers.nbt This file contains a network-format NBT blob containing entity identifier mappings obtained from `AvailableActorIdentifiersPacket`. diff --git a/biome_id_map.json b/biome_id_map.json new file mode 100644 index 0000000..1555e4e --- /dev/null +++ b/biome_id_map.json @@ -0,0 +1,78 @@ +{ + "": 50, + "bamboo_jungle": 48, + "bamboo_jungle_hills": 49, + "basalt_deltas": 181, + "beach": 16, + "birch_forest": 27, + "birch_forest_hills": 28, + "birch_forest_hills_mutated": 156, + "birch_forest_mutated": 155, + "cold_beach": 26, + "cold_ocean": 44, + "cold_taiga": 30, + "cold_taiga_hills": 31, + "cold_taiga_mutated": 158, + "crimson_forest": 179, + "deep_cold_ocean": 45, + "deep_frozen_ocean": 47, + "deep_lukewarm_ocean": 43, + "deep_ocean": 24, + "deep_warm_ocean": 41, + "desert": 2, + "desert_hills": 17, + "desert_mutated": 130, + "extreme_hills": 3, + "extreme_hills_edge": 20, + "extreme_hills_mutated": 131, + "extreme_hills_plus_trees": 34, + "extreme_hills_plus_trees_mutated": 162, + "flower_forest": 132, + "forest": 4, + "forest_hills": 18, + "frozen_ocean": 46, + "frozen_river": 11, + "hell": 8, + "ice_mountains": 13, + "ice_plains": 12, + "ice_plains_spikes": 140, + "jungle": 21, + "jungle_edge": 23, + "jungle_edge_mutated": 151, + "jungle_hills": 22, + "jungle_mutated": 149, + "legacy_frozen_ocean": 10, + "lukewarm_ocean": 42, + "mega_taiga": 32, + "mega_taiga_hills": 33, + "mesa": 37, + "mesa_bryce": 165, + "mesa_plateau": 39, + "mesa_plateau_mutated": 167, + "mesa_plateau_stone": 38, + "mesa_plateau_stone_mutated": 166, + "mushroom_island": 14, + "mushroom_island_shore": 15, + "ocean": 0, + "plains": 1, + "redwood_taiga_hills_mutated": 161, + "redwood_taiga_mutated": 160, + "river": 7, + "roofed_forest": 29, + "roofed_forest_mutated": 157, + "savanna": 35, + "savanna_mutated": 163, + "savanna_plateau": 36, + "savanna_plateau_mutated": 164, + "soulsand_valley": 178, + "stone_beach": 25, + "sunflower_plains": 129, + "swampland": 6, + "swampland_mutated": 134, + "taiga": 5, + "taiga_hills": 19, + "taiga_mutated": 133, + "the_end": 9, + "warm_ocean": 40, + "warped_forest": 180 +}