├── Modern Beta ├── pack.png ├── pack.mcmeta └── data │ ├── modern_beta │ └── worldgen │ │ ├── configured_surface_builder │ │ ├── full_sand_beach.json │ │ ├── beach.json │ │ └── ocean_sand_beach.json │ │ ├── configured_feature │ │ ├── trees_forest_random.json │ │ ├── patch_cactus_decorated_1.json │ │ ├── trees_marsh.json │ │ ├── trees_savanna_extra.json │ │ ├── trees_savanna_grassland.json │ │ ├── trees_swamp_extra.json │ │ ├── trees_taiga_extra.json │ │ ├── trees_shrubland.json │ │ ├── trees_snowy_taiga_beach_extra.json │ │ ├── trees_seasonal_forest_extra.json │ │ ├── trees_birch_extra.json │ │ ├── trees_rainforest_extra.json │ │ ├── trees_savanna.json │ │ ├── trees_swamp.json │ │ ├── trees_taiga.json │ │ ├── trees_snowy_taiga_beach.json │ │ ├── trees_seasonal_forest.json │ │ ├── trees_birch.json │ │ ├── trees_rainforest.json │ │ ├── ore_clay.json │ │ ├── sand_beach.json │ │ ├── gravel_beach.json │ │ ├── ore_dirt.json │ │ ├── ore_gravel.json │ │ ├── trees_warm_beach_extra.json │ │ ├── trees_giant_spruce_extra.json │ │ ├── trees_forest_extra.json │ │ ├── swamp_tree.json │ │ ├── trees_warm_beach.json │ │ ├── trees_giant_spruce.json │ │ ├── trees_flower_forest.json │ │ ├── trees_forest.json │ │ ├── trees_taiga_beach_extra.json │ │ ├── trees_giant_extra.json │ │ ├── trees_jungle_extra.json │ │ ├── trees_taiga_beach.json │ │ ├── trees_giant.json │ │ ├── trees_jungle.json │ │ ├── patch_air_127.json │ │ ├── patch_dirt_127.json │ │ ├── patch_sugar_cane_marsh.json │ │ ├── grass_beach.json │ │ ├── ore_replace_gravel.json │ │ ├── trees_dark_forest_brown_extra.json │ │ ├── trees_dark_forest_brown.json │ │ ├── patch_grass_rainforest.json │ │ ├── bush_shrubland.json │ │ ├── patch_grass_marsh.json │ │ ├── patch_grass.json │ │ ├── patch_gravel_air.json │ │ ├── patch_gravel_sand.json │ │ ├── patch_grass_127.json │ │ ├── bush_rainforest.json │ │ ├── patch_sand_desert.json │ │ ├── patch_tall_grass_2.json │ │ ├── trees_bamboo_jungle_extra.json │ │ ├── patch_sandstone.json │ │ ├── patch_sandstone_extra.json │ │ ├── trees_bamboo_jungle.json │ │ └── patch_grass_block.json │ │ ├── biome │ │ ├── mushroom_fields.json │ │ ├── badlands_plateau.json │ │ ├── badlands.json │ │ ├── ice_desert.json │ │ ├── desert_river.json │ │ ├── sky.json │ │ ├── river.json │ │ ├── cold_river.json │ │ ├── frozen_river.json │ │ ├── lukewarm_river.json │ │ ├── desert.json │ │ ├── ice_spikes.json │ │ ├── snowy_beach.json │ │ ├── snowy_tundra.json │ │ ├── deep_frozen_ocean.json │ │ ├── mountains.json │ │ ├── cold_ocean.json │ │ ├── frozen_ocean.json │ │ ├── ocean.json │ │ ├── deep_warm_ocean.json │ │ ├── deep_ocean.json │ │ └── warm_ocean.json │ │ └── noise_settings │ │ ├── sky.json │ │ └── overworld.json │ └── minecraft │ ├── dimension_type │ └── sky.json │ └── dimension │ └── sky.json ├── Modern Beta BAC Compatibility ├── pack.png ├── pack.mcmeta ├── how-to-install.txt ├── data │ └── blazeandcave │ │ └── advancements │ │ └── biomes │ │ ├── the_mighty_jungle.json │ │ ├── snow_feet.json │ │ ├── cold_feet.json │ │ ├── overgrown.json │ │ ├── warm_feet.json │ │ ├── one_with_the_forest.json │ │ ├── the_sea_calls_you.json │ │ └── wet_feet.json └── credits.txt └── README.md /Modern Beta/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3spectacled/modern-beta/HEAD/Modern Beta/pack.png -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3spectacled/modern-beta/HEAD/Modern Beta BAC Compatibility/pack.png -------------------------------------------------------------------------------- /Modern Beta/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "§bModern biomes with Beta-like generation! §f[1.16.4]" 5 | } 6 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "§bModern Beta BAC Advancement Compatibility Pack §f[1.16.3]" 5 | } 6 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # modern-beta 2 | A Minecraft Data Pack - Generate Beta-like worlds with modern biomes 3 | 4 | Based on SkyDeckAGoGo's Neo-Beta data pack: https://github.com/SkyDeckAGoGo/neo-beta-datapack 5 | -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/how-to-install.txt: -------------------------------------------------------------------------------- 1 | When creating a new world, the data packs should be placed in this order: 2 | 3 | 1. Modern Beta BAC Compatibility 4 | 2. bac_advancements 5 | 3. Modern Beta -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_surface_builder/full_sand_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "top_material": { 4 | "Name": "minecraft:sand" 5 | }, 6 | "under_material": { 7 | "Name": "minecraft:sand" 8 | }, 9 | "underwater_material": { 10 | "Name": "minecraft:sand" 11 | } 12 | }, 13 | "type": "minecraft:default" 14 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_surface_builder/beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "top_material": { 4 | "Properties": { 5 | "snowy": "false" 6 | }, 7 | "Name": "minecraft:grass_block" 8 | }, 9 | "under_material": { 10 | "Name": "minecraft:dirt" 11 | }, 12 | "underwater_material": { 13 | "Name": "minecraft:gravel" 14 | } 15 | }, 16 | "type": "minecraft:nether" 17 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_surface_builder/ocean_sand_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "top_material": { 4 | "Properties": { 5 | "snowy": "false" 6 | }, 7 | "Name": "minecraft:grass_block" 8 | }, 9 | "under_material": { 10 | "Name": "minecraft:dirt" 11 | }, 12 | "underwater_material": { 13 | "Name": "minecraft:sand" 14 | } 15 | }, 16 | "type": "minecraft:default" 17 | } -------------------------------------------------------------------------------- /Modern Beta/data/minecraft/dimension_type/sky.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "minecraft:overworld", 3 | "has_raids": false, 4 | "logical_height": 256, 5 | "infiniburn": "minecraft:infiniburn_overworld", 6 | "ambient_light": 0.0, 7 | "piglin_safe": false, 8 | "bed_works": true, 9 | "respawn_anchor_works": false, 10 | "ultrawarm": false, 11 | "natural": true, 12 | "shrunk": false, 13 | "coordinate_scale": 1.0, 14 | "has_skylight": true, 15 | "has_ceiling": false 16 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_forest_random.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "features": [ 6 | { 7 | "feature": "modern_beta:trees_forest", 8 | "chance": 0.2 9 | }, 10 | { 11 | "feature": "modern_beta:trees_flower_forest", 12 | "chance": 0.8 13 | } 14 | ], 15 | "default": "modern_beta:trees_forest" 16 | }, 17 | "type": "minecraft:random_selector" 18 | }, 19 | "decorator": { 20 | "config": { 21 | "count": 1 22 | }, 23 | "type": "minecraft:count" 24 | } 25 | }, 26 | "type": "minecraft:decorated" 27 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/the_mighty_jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:jungle_leaves" 5 | }, 6 | "title": {"translate":"The Mighty Jungle"}, 7 | "description": {"translate":"Go for a safari in the jungle"} 8 | }, 9 | "parent": "blazeandcave:biomes/for_you_my_sweet", 10 | "rewards": { 11 | "function": "bc_rewards:biomes/the_mighty_jungle" 12 | }, 13 | "criteria": { 14 | "jungle": { 15 | "trigger": "minecraft:location", 16 | "conditions": { 17 | "biome": "minecraft:jungle" 18 | } 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "jungle" 24 | ] 25 | ] 26 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_cactus_decorated_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": "minecraft:patch_cactus", 6 | "decorator": { 7 | "config": { 8 | "outer": { 9 | "config": {}, 10 | "type": "minecraft:square" 11 | }, 12 | "inner": { 13 | "config": {}, 14 | "type": "minecraft:heightmap_spread_double" 15 | } 16 | }, 17 | "type": "minecraft:decorated" 18 | } 19 | }, 20 | "type": "minecraft:decorated" 21 | }, 22 | "decorator": { 23 | "config": { 24 | "count": 1 25 | }, 26 | "type": "minecraft:count" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_marsh.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "modern_beta:swamp_tree", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_savanna_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:acacia", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_savanna_grassland.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:acacia", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_swamp_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "modern_beta:swamp_tree", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_taiga_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:spruce" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_shrubland.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:oak_bees_002", 10 | "chance": 1.0 11 | } 12 | ], 13 | "default": "minecraft:oak_bees_002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_snowy_taiga_beach_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:spruce" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_seasonal_forest_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak_bees_002", 10 | "chance": 0.1 11 | } 12 | ], 13 | "default": "minecraft:oak_bees_002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_birch_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:super_birch_bees_0002", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:birch_bees_0002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_rainforest_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak_bees_002", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:oak_bees_002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": 0, 36 | "extra_chance": 0.1, 37 | "extra_count": 1 38 | }, 39 | "type": "minecraft:count_extra" 40 | } 41 | }, 42 | "type": "minecraft:decorated" 43 | } -------------------------------------------------------------------------------- /Modern Beta/data/minecraft/dimension/sky.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:sky", 3 | "generator": { 4 | "type": "minecraft:noise", 5 | "seed": 1234, 6 | "biome_source": { 7 | "temperature_noise": { 8 | "firstOctave": -7, 9 | "amplitudes": [ 10 | 1.0, 11 | 1.0 12 | ] 13 | }, 14 | "humidity_noise": { 15 | "firstOctave": -7, 16 | "amplitudes": [ 17 | 1.0, 18 | 1.0 19 | ] 20 | }, 21 | "altitude_noise": { 22 | "firstOctave": -7, 23 | "amplitudes": [ 24 | 1.0, 25 | 1.0 26 | ] 27 | }, 28 | "weirdness_noise": { 29 | "firstOctave": -7, 30 | "amplitudes": [ 31 | 1.0, 32 | 1.0 33 | ] 34 | }, 35 | "type": "minecraft:multi_noise", 36 | "seed": 1234, 37 | "biomes": [ 38 | { 39 | "biome": "modern_beta:sky", 40 | "parameters": { 41 | "temperature": 0.0, 42 | "humidity": 0.0, 43 | "altitude": 0.0, 44 | "weirdness": 0.0, 45 | "offset": 0.0 46 | } 47 | } 48 | ] 49 | }, 50 | "settings": "modern_beta:sky" 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_savanna.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:acacia", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 0, 37 | "spread": 2, 38 | "minBase": 0, 39 | "maxBase": 0, 40 | "maxSpread": 2 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_swamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "modern_beta:swamp_tree", 10 | "chance": 0.8 11 | } 12 | ], 13 | "default": "minecraft:oak" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 0, 37 | "spread": 6, 38 | "minBase": 0, 39 | "maxBase": 0, 40 | "maxSpread": 6 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_taiga.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:spruce" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 1, 37 | "spread": 8, 38 | "minBase": 1, 39 | "maxBase": 1, 40 | "maxSpread": 8 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_snowy_taiga_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:spruce" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 0, 37 | "spread": 6, 38 | "minBase": 0, 39 | "maxBase": 0, 40 | "maxSpread": 6 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_seasonal_forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak_bees_002", 10 | "chance": 0.1 11 | } 12 | ], 13 | "default": "minecraft:oak_bees_002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 0, 37 | "spread": 6, 38 | "minBase": 0, 39 | "maxBase": 0, 40 | "maxSpread": 6 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_birch.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:super_birch_bees_0002", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:birch_bees_0002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 0, 37 | "spread": 8, 38 | "minBase": 0, 39 | "maxBase": 0, 40 | "maxSpread": 8 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_rainforest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak_bees_002", 10 | "chance": 0.33333334 11 | } 12 | ], 13 | "default": "minecraft:oak_bees_002" 14 | }, 15 | "type": "minecraft:random_selector" 16 | }, 17 | "decorator": { 18 | "config": { 19 | "outer": { 20 | "config": {}, 21 | "type": "minecraft:square" 22 | }, 23 | "inner": { 24 | "config": {}, 25 | "type": "minecraft:heightmap" 26 | } 27 | }, 28 | "type": "minecraft:decorated" 29 | } 30 | }, 31 | "type": "minecraft:decorated" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "count": { 36 | "base": 1, 37 | "spread": 8, 38 | "minBase": 1, 39 | "maxBase": 1, 40 | "maxSpread": 8 41 | } 42 | }, 43 | "type": "minecraft:count_multilayer" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/ore_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:sand", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:clay" 15 | }, 16 | "size": 33 17 | }, 18 | "type": "minecraft:ore" 19 | }, 20 | "decorator": { 21 | "config": { 22 | "bottom_offset": 0, 23 | "top_offset": 0, 24 | "maximum": 128 25 | }, 26 | "type": "minecraft:range" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | }, 31 | "decorator": { 32 | "config": {}, 33 | "type": "minecraft:square" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | }, 38 | "decorator": { 39 | "config": { 40 | "count": 2 41 | }, 42 | "type": "minecraft:count" 43 | } 44 | }, 45 | "type": "minecraft:decorated" 46 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/sand_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:soul_sand", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:sand" 15 | }, 16 | "size": 64 17 | }, 18 | "type": "minecraft:ore" 19 | }, 20 | "decorator": { 21 | "config": { 22 | "bottom_offset": 50, 23 | "top_offset": 0, 24 | "maximum": 20 25 | }, 26 | "type": "minecraft:range" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | }, 31 | "decorator": { 32 | "config": {}, 33 | "type": "minecraft:square" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | }, 38 | "decorator": { 39 | "config": { 40 | "count": 100 41 | }, 42 | "type": "minecraft:count" 43 | } 44 | }, 45 | "type": "minecraft:decorated" 46 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/gravel_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:soul_sand", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:gravel" 15 | }, 16 | "size": 64 17 | }, 18 | "type": "minecraft:ore" 19 | }, 20 | "decorator": { 21 | "config": { 22 | "bottom_offset": 50, 23 | "top_offset": 0, 24 | "maximum": 20 25 | }, 26 | "type": "minecraft:range" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | }, 31 | "decorator": { 32 | "config": {}, 33 | "type": "minecraft:square" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | }, 38 | "decorator": { 39 | "config": { 40 | "count": 100 41 | }, 42 | "type": "minecraft:count" 43 | } 44 | }, 45 | "type": "minecraft:decorated" 46 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/ore_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "tag": "minecraft:base_stone_overworld", 11 | "predicate_type": "minecraft:tag_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:dirt" 15 | }, 16 | "size": 33 17 | }, 18 | "type": "minecraft:ore" 19 | }, 20 | "decorator": { 21 | "config": { 22 | "bottom_offset": 0, 23 | "top_offset": 0, 24 | "maximum": 128 25 | }, 26 | "type": "minecraft:range" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | }, 31 | "decorator": { 32 | "config": {}, 33 | "type": "minecraft:square" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | }, 38 | "decorator": { 39 | "config": { 40 | "count": 10 41 | }, 42 | "type": "minecraft:count" 43 | } 44 | }, 45 | "type": "minecraft:decorated" 46 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/snow_feet.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:snowball" 5 | }, 6 | "title": {"translate":"Snow Feet"}, 7 | "description": {"translate":"Discover every snowy biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/warm_feet", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/snow_feet" 14 | }, 15 | "criteria": { 16 | "taiga_cold": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:snowy_taiga" 20 | } 21 | }, 22 | "ice_flats": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:snowy_tundra" 26 | } 27 | }, 28 | "snowy_beach": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:snowy_beach" 32 | } 33 | }, 34 | "frozen_river": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:frozen_river" 38 | } 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/ore_gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "tag": "minecraft:base_stone_overworld", 11 | "predicate_type": "minecraft:tag_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:gravel" 15 | }, 16 | "size": 33 17 | }, 18 | "type": "minecraft:ore" 19 | }, 20 | "decorator": { 21 | "config": { 22 | "bottom_offset": 0, 23 | "top_offset": 0, 24 | "maximum": 128 25 | }, 26 | "type": "minecraft:range" 27 | } 28 | }, 29 | "type": "minecraft:decorated" 30 | }, 31 | "decorator": { 32 | "config": {}, 33 | "type": "minecraft:square" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | }, 38 | "decorator": { 39 | "config": { 40 | "count": 8 41 | }, 42 | "type": "minecraft:count" 43 | } 44 | }, 45 | "type": "minecraft:decorated" 46 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_warm_beach_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.1 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.5 15 | } 16 | ], 17 | "default": "minecraft:jungle_tree" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": 0, 40 | "extra_chance": 0.1, 41 | "extra_count": 1 42 | }, 43 | "type": "minecraft:count_extra" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_giant_spruce_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:mega_spruce", 10 | "chance": 0.33333334 11 | }, 12 | { 13 | "feature": "minecraft:pine", 14 | "chance": 0.33333334 15 | } 16 | ], 17 | "default": "minecraft:spruce" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": 0, 40 | "extra_chance": 0.1, 41 | "extra_count": 1 42 | }, 43 | "type": "minecraft:count_extra" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_forest_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:birch_bees_002", 10 | "chance": 0.2 11 | }, 12 | { 13 | "feature": "minecraft:fancy_oak_bees_002", 14 | "chance": 0.1 15 | } 16 | ], 17 | "default": "minecraft:oak_bees_002" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": 0, 40 | "extra_chance": 0.1, 41 | "extra_count": 1 42 | }, 43 | "type": "minecraft:count_extra" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/cold_feet.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:spruce_sapling" 5 | }, 6 | "title": {"translate":"Cold Feet"}, 7 | "description": {"translate":"Discover every cold biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/one_with_the_forest", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/cold_feet" 14 | }, 15 | "criteria": { 16 | "spruce_taiga": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:giant_spruce_taiga" 20 | } 21 | }, 22 | "redwood_taiga": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:giant_tree_taiga" 26 | } 27 | }, 28 | "taiga": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:taiga" 32 | } 33 | }, 34 | "cold_river": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:cold_river" 38 | } 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/swamp_tree.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "max_water_depth": 1, 4 | "ignore_vines": false, 5 | "heightmap": "OCEAN_FLOOR", 6 | "minimum_size": { 7 | "limit": 1, 8 | "lower_size": 0, 9 | "upper_size": 1, 10 | "type": "minecraft:two_layers_feature_size" 11 | }, 12 | "decorators": [ 13 | { 14 | "type": "minecraft:leave_vine" 15 | } 16 | ], 17 | "trunk_provider": { 18 | "state": { 19 | "Properties": { 20 | "axis": "y" 21 | }, 22 | "Name": "minecraft:oak_log" 23 | }, 24 | "type": "minecraft:simple_state_provider" 25 | }, 26 | "leaves_provider": { 27 | "state": { 28 | "Properties": { 29 | "persistent": "false", 30 | "distance": "7" 31 | }, 32 | "Name": "minecraft:oak_leaves" 33 | }, 34 | "type": "minecraft:simple_state_provider" 35 | }, 36 | "foliage_placer": { 37 | "radius": 3, 38 | "offset": 0, 39 | "height": 3, 40 | "type": "minecraft:blob_foliage_placer" 41 | }, 42 | "trunk_placer": { 43 | "base_height": 5, 44 | "height_rand_a": 3, 45 | "height_rand_b": 0, 46 | "type": "minecraft:straight_trunk_placer" 47 | } 48 | }, 49 | "type": "minecraft:tree" 50 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/credits.txt: -------------------------------------------------------------------------------- 1 | Compatibility pack for Cavinator1's BlazeandCave's Advancements Pack (1.10.3). 2 | 3 | Data Pack Webpage: https://www.planetminecraft.com/data-pack/blazeandcave-s-advancements-pack-1-12/ 4 | 5 | Updated Advancements: 6 | * Biomes 7 | * Cold Feet -- (Giant Spruce Taiga, Giant Tree Taiga, Taiga, Cold River) 8 | * Explorer of Worlds -- (See Adventuring Time advancement + Sunflower Plains, Ice Desert, Ice Spikes) 9 | * One with the Forest -- (Forest, Plains, Dark Forest, Birch Forest, Seasonal Forest, Shrubland) 10 | * Overgrown -- (Swamp, Mushroom Fields, Jungle, Bamboo Jungle, Rainforest) 11 | * Snow Feet -- (Snowy Taiga, Snowy Tundra, Snowy Beach, Frozen River) 12 | * The Mighty Jungle -- (Jungle) 13 | * The Sea Calls You -- (Ocean, Lukewarm Ocean, Warm Ocean, Cold Ocean, Frozen Ocean, Deep Ocean, Deep Lukewarm Ocean, Deep Warm Ocean, Deep Cold Ocean, Deep Frozen Ocean, River, Lukewarm River) 14 | * Warm Feet -- (Desert, Desert River, Badlands, Savanna, Savanna Grassland, Badlands Plateau) 15 | * Wet Feet -- (Marsh, Beach, Lukewarm Beach, Warm Beach, Cold Beach, Ocean, Lukewarm Ocean, Warm Ocean, Cold Ocean, Frozen Ocean, Deep Ocean, Deep Lukewarm Ocean, Deep Warm Ocean, Deep Cold Ocean, Deep Frozen Ocean, River, Lukewarm River) -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_warm_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.1 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.5 15 | } 16 | ], 17 | "default": "minecraft:jungle_tree" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": { 40 | "base": 1, 41 | "spread": 8, 42 | "minBase": 1, 43 | "maxBase": 1, 44 | "maxSpread": 8 45 | } 46 | }, 47 | "type": "minecraft:count_multilayer" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_giant_spruce.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:mega_spruce", 10 | "chance": 0.33333334 11 | }, 12 | { 13 | "feature": "minecraft:pine", 14 | "chance": 0.33333334 15 | } 16 | ], 17 | "default": "minecraft:spruce" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": { 40 | "base": 1, 41 | "spread": 8, 42 | "minBase": 1, 43 | "maxBase": 1, 44 | "maxSpread": 8 45 | } 46 | }, 47 | "type": "minecraft:count_multilayer" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_flower_forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:birch_bees_002", 10 | "chance": 0.2 11 | }, 12 | { 13 | "feature": "minecraft:fancy_oak_bees_002", 14 | "chance": 0.1 15 | } 16 | ], 17 | "default": "minecraft:oak_bees_002" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": { 40 | "base": 0, 41 | "spread": 8, 42 | "minBase": 0, 43 | "maxBase": 0, 44 | "maxSpread": 8 45 | } 46 | }, 47 | "type": "minecraft:count_multilayer" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:birch_bees_002", 10 | "chance": 0.2 11 | }, 12 | { 13 | "feature": "minecraft:fancy_oak_bees_002", 14 | "chance": 0.33333334 15 | } 16 | ], 17 | "default": "minecraft:oak_bees_002" 18 | }, 19 | "type": "minecraft:random_selector" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "outer": { 24 | "config": {}, 25 | "type": "minecraft:square" 26 | }, 27 | "inner": { 28 | "config": {}, 29 | "type": "minecraft:heightmap" 30 | } 31 | }, 32 | "type": "minecraft:decorated" 33 | } 34 | }, 35 | "type": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "count": { 40 | "base": 1, 41 | "spread": 8, 42 | "minBase": 1, 43 | "maxBase": 1, 44 | "maxSpread": 8 45 | } 46 | }, 47 | "type": "minecraft:count_multilayer" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_taiga_beach_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | }, 12 | { 13 | "feature": "minecraft:spruce", 14 | "chance": 0.666 15 | }, 16 | { 17 | "feature": "minecraft:fancy_oak", 18 | "chance": 0.1 19 | } 20 | ], 21 | "default": "minecraft:oak" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": 0, 44 | "extra_chance": 0.1, 45 | "extra_count": 1 46 | }, 47 | "type": "minecraft:count_extra" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_giant_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:mega_spruce", 10 | "chance": 0.025641026 11 | }, 12 | { 13 | "feature": "minecraft:mega_pine", 14 | "chance": 0.30769232 15 | }, 16 | { 17 | "feature": "minecraft:pine", 18 | "chance": 0.33333334 19 | } 20 | ], 21 | "default": "minecraft:spruce" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": 0, 44 | "extra_chance": 0.1, 45 | "extra_count": 1 46 | }, 47 | "type": "minecraft:count_extra" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_jungle_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.1 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.5 15 | }, 16 | { 17 | "feature": "minecraft:mega_jungle_tree", 18 | "chance": 0.33333334 19 | } 20 | ], 21 | "default": "minecraft:jungle_tree" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": 50, 44 | "extra_chance": 0.1, 45 | "extra_count": 1 46 | }, 47 | "type": "minecraft:count_extra" 48 | } 49 | }, 50 | "type": "minecraft:decorated" 51 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/overgrown.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:dark_oak_sapling" 5 | }, 6 | "title": {"translate":"Overgrown!"}, 7 | "description": {"translate":"Discover every overgrown biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/snow_feet", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/overgrown" 14 | }, 15 | "criteria": { 16 | "swampland": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:swamp" 20 | } 21 | }, 22 | "mushroom_island": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:mushroom_fields" 26 | } 27 | }, 28 | "jungle": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:jungle" 32 | } 33 | }, 34 | "bamboo_jungle": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:bamboo_jungle" 38 | } 39 | }, 40 | "rainforest": { 41 | "trigger": "minecraft:location", 42 | "conditions": { 43 | "biome": "minecraft:rainforest" 44 | } 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_taiga_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:pine", 10 | "chance": 0.33333334 11 | }, 12 | { 13 | "feature": "minecraft:spruce", 14 | "chance": 0.666 15 | }, 16 | { 17 | "feature": "minecraft:fancy_oak", 18 | "chance": 0.1 19 | } 20 | ], 21 | "default": "minecraft:oak" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": { 44 | "base": 0, 45 | "spread": 6, 46 | "minBase": 0, 47 | "maxBase": 0, 48 | "maxSpread": 6 49 | } 50 | }, 51 | "type": "minecraft:count_multilayer" 52 | } 53 | }, 54 | "type": "minecraft:decorated" 55 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_giant.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:mega_spruce", 10 | "chance": 0.025641026 11 | }, 12 | { 13 | "feature": "minecraft:mega_pine", 14 | "chance": 0.30769232 15 | }, 16 | { 17 | "feature": "minecraft:pine", 18 | "chance": 0.33333334 19 | } 20 | ], 21 | "default": "minecraft:spruce" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": { 44 | "base": 1, 45 | "spread": 8, 46 | "minBase": 1, 47 | "maxBase": 1, 48 | "maxSpread": 8 49 | } 50 | }, 51 | "type": "minecraft:count_multilayer" 52 | } 53 | }, 54 | "type": "minecraft:decorated" 55 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.1 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.5 15 | }, 16 | { 17 | "feature": "minecraft:mega_jungle_tree", 18 | "chance": 0.33333334 19 | } 20 | ], 21 | "default": "minecraft:jungle_tree" 22 | }, 23 | "type": "minecraft:random_selector" 24 | }, 25 | "decorator": { 26 | "config": { 27 | "outer": { 28 | "config": {}, 29 | "type": "minecraft:square" 30 | }, 31 | "inner": { 32 | "config": {}, 33 | "type": "minecraft:heightmap" 34 | } 35 | }, 36 | "type": "minecraft:decorated" 37 | } 38 | }, 39 | "type": "minecraft:decorated" 40 | }, 41 | "decorator": { 42 | "config": { 43 | "count": { 44 | "base": 6, 45 | "spread": 8, 46 | "minBase": 6, 47 | "maxBase": 6, 48 | "maxSpread": 8 49 | } 50 | }, 51 | "type": "minecraft:count_multilayer" 52 | } 53 | }, 54 | "type": "minecraft:decorated" 55 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_air_127.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:stone", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:air" 15 | }, 16 | "size": 64 17 | }, 18 | "type": "minecraft:ore", 19 | "name": "minecraft:ore" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "bottom_offset": 130, 24 | "top_offset": 0, 25 | "maximum": 20 26 | }, 27 | "type": "minecraft:range", 28 | "name": "minecraft:range" 29 | } 30 | }, 31 | "type": "minecraft:decorated", 32 | "name": "minecraft:decorated" 33 | }, 34 | "decorator": { 35 | "config": {}, 36 | "type": "minecraft:square", 37 | "name": "minecraft:square" 38 | } 39 | }, 40 | "type": "minecraft:decorated", 41 | "name": "minecraft:decorated" 42 | }, 43 | "decorator": { 44 | "config": { 45 | "count": 80 46 | }, 47 | "type": "minecraft:count", 48 | "name": "minecraft:count" 49 | } 50 | }, 51 | "type": "minecraft:decorated", 52 | "name": "minecraft:decorated" 53 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_dirt_127.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:stone", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Name": "minecraft:dirt" 15 | }, 16 | "size": 64 17 | }, 18 | "type": "minecraft:ore", 19 | "name": "minecraft:ore" 20 | }, 21 | "decorator": { 22 | "config": { 23 | "bottom_offset": 127, 24 | "top_offset": 0, 25 | "maximum": 20 26 | }, 27 | "type": "minecraft:range", 28 | "name": "minecraft:range" 29 | } 30 | }, 31 | "type": "minecraft:decorated", 32 | "name": "minecraft:decorated" 33 | }, 34 | "decorator": { 35 | "config": {}, 36 | "type": "minecraft:square", 37 | "name": "minecraft:square" 38 | } 39 | }, 40 | "type": "minecraft:decorated", 41 | "name": "minecraft:decorated" 42 | }, 43 | "decorator": { 44 | "config": { 45 | "count": 70 46 | }, 47 | "type": "minecraft:count", 48 | "name": "minecraft:count" 49 | } 50 | }, 51 | "type": "minecraft:decorated", 52 | "name": "minecraft:decorated" 53 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_sugar_cane_marsh.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "can_replace": false, 8 | "project": false, 9 | "need_water": true, 10 | "xspread": 15, 11 | "yspread": 0, 12 | "zspread": 15, 13 | "whitelist": [], 14 | "blacklist": [], 15 | "tries": 50, 16 | "state_provider": { 17 | "state": { 18 | "Properties": { 19 | "age": "0" 20 | }, 21 | "Name": "minecraft:sugar_cane" 22 | }, 23 | "type": "minecraft:simple_state_provider" 24 | }, 25 | "block_placer": { 26 | "min_size": 1, 27 | "extra_size": 1, 28 | "type": "minecraft:column_placer" 29 | } 30 | }, 31 | "type": "minecraft:random_patch" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "outer": { 36 | "config": {}, 37 | "type": "minecraft:square" 38 | }, 39 | "inner": { 40 | "config": {}, 41 | "type": "minecraft:heightmap_spread_double" 42 | } 43 | }, 44 | "type": "minecraft:decorated" 45 | } 46 | }, 47 | "type": "minecraft:decorated" 48 | }, 49 | "decorator": { 50 | "config": { 51 | "count": 100 52 | }, 53 | "type": "minecraft:count" 54 | } 55 | }, 56 | "type": "minecraft:decorated" 57 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/grass_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:soul_sand", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Properties": { 15 | "snowy": "false" 16 | }, 17 | "Name": "minecraft:grass_block" 18 | }, 19 | "size": 64 20 | }, 21 | "type": "minecraft:ore", 22 | "name": "minecraft:ore" 23 | }, 24 | "decorator": { 25 | "config": { 26 | "bottom_offset": 62, 27 | "top_offset": 62, 28 | "maximum": 66 29 | }, 30 | "type": "minecraft:range", 31 | "name": "minecraft:range" 32 | } 33 | }, 34 | "type": "minecraft:decorated", 35 | "name": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": {}, 39 | "type": "minecraft:square", 40 | "name": "minecraft:square" 41 | } 42 | }, 43 | "type": "minecraft:decorated", 44 | "name": "minecraft:decorated" 45 | }, 46 | "decorator": { 47 | "config": { 48 | "count": 70 49 | }, 50 | "type": "minecraft:count", 51 | "name": "minecraft:count" 52 | } 53 | }, 54 | "type": "minecraft:decorated", 55 | "name": "minecraft:decorated" 56 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/ore_replace_gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "target": { 10 | "block": "minecraft:gravel", 11 | "predicate_type": "minecraft:block_match" 12 | }, 13 | "state": { 14 | "Properties": { 15 | "snowy": "false" 16 | }, 17 | "Name": "minecraft:grass_block" 18 | }, 19 | "size": 64 20 | }, 21 | "type": "minecraft:ore", 22 | "name": "minecraft:ore" 23 | }, 24 | "decorator": { 25 | "config": { 26 | "bottom_offset": 65, 27 | "top_offset": 65, 28 | "maximum": 66 29 | }, 30 | "type": "minecraft:range", 31 | "name": "minecraft:range" 32 | } 33 | }, 34 | "type": "minecraft:decorated", 35 | "name": "minecraft:decorated" 36 | }, 37 | "decorator": { 38 | "config": {}, 39 | "type": "minecraft:square", 40 | "name": "minecraft:square" 41 | } 42 | }, 43 | "type": "minecraft:decorated", 44 | "name": "minecraft:decorated" 45 | }, 46 | "decorator": { 47 | "config": { 48 | "count": 70 49 | }, 50 | "type": "minecraft:count", 51 | "name": "minecraft:count" 52 | } 53 | }, 54 | "type": "minecraft:decorated", 55 | "name": "minecraft:decorated" 56 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/warm_feet.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:dead_bush" 5 | }, 6 | "title": {"translate":"Warm Feet"}, 7 | "description": {"translate":"Discover every dry biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/cold_feet", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/warm_feet" 14 | }, 15 | "criteria": { 16 | "desert": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:desert" 20 | } 21 | }, 22 | "desert_river": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:desert_river" 26 | } 27 | }, 28 | "mesa": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:badlands" 32 | } 33 | }, 34 | "savanna": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:savanna" 38 | } 39 | }, 40 | "savanna": { 41 | "trigger": "minecraft:location", 42 | "conditions": { 43 | "biome": "minecraft:savanna_grassland" 44 | } 45 | }, 46 | "mesa_clear_rock": { 47 | "trigger": "minecraft:location", 48 | "conditions": { 49 | "biome": "minecraft:badlands_plateau" 50 | } 51 | } 52 | } 53 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_dark_forest_brown_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:huge_brown_mushroom", 10 | "chance": 0.025 11 | }, 12 | { 13 | "feature": "minecraft:huge_red_mushroom", 14 | "chance": 0.05 15 | }, 16 | { 17 | "feature": "minecraft:dark_oak", 18 | "chance": 0.6666667 19 | }, 20 | { 21 | "feature": "minecraft:birch", 22 | "chance": 0.2 23 | }, 24 | { 25 | "feature": "minecraft:fancy_oak", 26 | "chance": 0.1 27 | } 28 | ], 29 | "default": "minecraft:oak" 30 | }, 31 | "type": "minecraft:random_selector" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "outer": { 36 | "config": {}, 37 | "type": "minecraft:square" 38 | }, 39 | "inner": { 40 | "config": {}, 41 | "type": "minecraft:heightmap" 42 | } 43 | }, 44 | "type": "minecraft:decorated" 45 | } 46 | }, 47 | "type": "minecraft:decorated" 48 | }, 49 | "decorator": { 50 | "config": { 51 | "count": 0, 52 | "extra_chance": 0.1, 53 | "extra_count": 1 54 | }, 55 | "type": "minecraft:count_extra" 56 | } 57 | }, 58 | "type": "minecraft:decorated" 59 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/one_with_the_forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:oak_sapling" 5 | }, 6 | "title": {"translate":"One with the forest"}, 7 | "description": {"translate":"Discover every forest biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/kilometre_walk", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/one_with_the_forest" 14 | }, 15 | "criteria": { 16 | "forest": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:forest" 20 | } 21 | }, 22 | "plains": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:plains" 26 | } 27 | }, 28 | "roofed_forest": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:dark_forest" 32 | } 33 | }, 34 | "birch_forest": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:birch_forest" 38 | } 39 | }, 40 | "seasonal_forest": { 41 | "trigger": "minecraft:location", 42 | "conditions": { 43 | "biome": "minecraft:seasonal_forest" 44 | } 45 | }, 46 | "shrubland": { 47 | "trigger": "minecraft:location", 48 | "conditions": { 49 | "biome": "minecraft:shrubland" 50 | } 51 | } 52 | } 53 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_dark_forest_brown.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:huge_brown_mushroom", 10 | "chance": 0.025 11 | }, 12 | { 13 | "feature": "minecraft:huge_red_mushroom", 14 | "chance": 0.05 15 | }, 16 | { 17 | "feature": "minecraft:dark_oak", 18 | "chance": 0.6666667 19 | }, 20 | { 21 | "feature": "minecraft:birch", 22 | "chance": 0.2 23 | }, 24 | { 25 | "feature": "minecraft:fancy_oak", 26 | "chance": 0.1 27 | } 28 | ], 29 | "default": "minecraft:oak" 30 | }, 31 | "type": "minecraft:random_selector" 32 | }, 33 | "decorator": { 34 | "config": { 35 | "outer": { 36 | "config": {}, 37 | "type": "minecraft:square" 38 | }, 39 | "inner": { 40 | "config": {}, 41 | "type": "minecraft:heightmap" 42 | } 43 | }, 44 | "type": "minecraft:decorated" 45 | } 46 | }, 47 | "type": "minecraft:decorated" 48 | }, 49 | "decorator": { 50 | "config": { 51 | "count": { 52 | "base": 6, 53 | "spread": 8, 54 | "minBase": 6, 55 | "maxBase": 6, 56 | "maxSpread": 8 57 | } 58 | }, 59 | "type": "minecraft:count_multilayer" 60 | } 61 | }, 62 | "type": "minecraft:decorated" 63 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_grass_rainforest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "can_replace": false, 8 | "project": true, 9 | "need_water": false, 10 | "xspread": 7, 11 | "yspread": 3, 12 | "zspread": 7, 13 | "whitelist": [], 14 | "blacklist": [ 15 | { 16 | "Properties": { 17 | "snowy": "false" 18 | }, 19 | "Name": "minecraft:podzol" 20 | } 21 | ], 22 | "tries": 32, 23 | "state_provider": { 24 | "entries": [ 25 | { 26 | "weight": 3, 27 | "data": { 28 | "Name": "minecraft:grass" 29 | } 30 | }, 31 | { 32 | "weight": 1, 33 | "data": { 34 | "Name": "minecraft:fern" 35 | } 36 | } 37 | ], 38 | "type": "minecraft:weighted_state_provider" 39 | }, 40 | "block_placer": { 41 | "type": "minecraft:simple_block_placer" 42 | } 43 | }, 44 | "type": "minecraft:random_patch" 45 | }, 46 | "decorator": { 47 | "config": { 48 | "outer": { 49 | "config": {}, 50 | "type": "minecraft:square" 51 | }, 52 | "inner": { 53 | "config": {}, 54 | "type": "minecraft:heightmap_spread_double" 55 | } 56 | }, 57 | "type": "minecraft:decorated" 58 | } 59 | }, 60 | "type": "minecraft:decorated" 61 | }, 62 | "decorator": { 63 | "config": { 64 | "count": 15 65 | }, 66 | "type": "minecraft:count" 67 | } 68 | }, 69 | "type": "minecraft:decorated" 70 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/bush_shrubland.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "max_water_depth": 0, 8 | "ignore_vines": false, 9 | "heightmap": "MOTION_BLOCKING_NO_LEAVES", 10 | "minimum_size": { 11 | "limit": 0, 12 | "lower_size": 0, 13 | "upper_size": 0, 14 | "type": "minecraft:two_layers_feature_size" 15 | }, 16 | "decorators": [], 17 | "trunk_provider": { 18 | "state": { 19 | "Properties": { 20 | "axis": "y" 21 | }, 22 | "Name": "minecraft:oak_log" 23 | }, 24 | "type": "minecraft:simple_state_provider" 25 | }, 26 | "leaves_provider": { 27 | "state": { 28 | "Properties": { 29 | "persistent": "false", 30 | "distance": "7" 31 | }, 32 | "Name": "minecraft:oak_leaves" 33 | }, 34 | "type": "minecraft:simple_state_provider" 35 | }, 36 | "foliage_placer": { 37 | "radius": 2, 38 | "offset": 1, 39 | "height": 2, 40 | "type": "minecraft:bush_foliage_placer" 41 | }, 42 | "trunk_placer": { 43 | "base_height": 1, 44 | "height_rand_a": 0, 45 | "height_rand_b": 0, 46 | "type": "minecraft:straight_trunk_placer" 47 | } 48 | }, 49 | "type": "minecraft:tree" 50 | }, 51 | "decorator": { 52 | "config": { 53 | "outer": { 54 | "config": {}, 55 | "type": "minecraft:square" 56 | }, 57 | "inner": { 58 | "config": {}, 59 | "type": "minecraft:heightmap" 60 | } 61 | }, 62 | "type": "minecraft:decorated" 63 | } 64 | }, 65 | "type": "minecraft:decorated" 66 | }, 67 | "decorator": { 68 | "config": { 69 | "count": { 70 | "base": 0, 71 | "spread": 2, 72 | "minBase": 0, 73 | "maxBase": 0, 74 | "maxSpread": 2 75 | } 76 | }, 77 | "type": "minecraft:count_multilayer" 78 | } 79 | }, 80 | "type": "minecraft:decorated" 81 | } 82 | 83 | -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_grass_marsh.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "can_replace": true, 10 | "project": false, 11 | "need_water": false, 12 | "xspread": 7, 13 | "yspread": 0, 14 | "zspread": 7, 15 | "whitelist": [ 16 | { 17 | "Name": "minecraft:dirt" 18 | } 19 | ], 20 | "blacklist": [], 21 | "tries": 32, 22 | "state_provider": { 23 | "state": { 24 | "Properties": { 25 | "snowy": "false" 26 | }, 27 | "Name": "minecraft:grass_block" 28 | }, 29 | "type": "minecraft:simple_state_provider" 30 | }, 31 | "block_placer": { 32 | "type": "minecraft:simple_block_placer" 33 | } 34 | }, 35 | "type": "minecraft:random_patch" 36 | }, 37 | "decorator": { 38 | "config": { 39 | "bottom_offset": 63, 40 | "top_offset": 0, 41 | "maximum": 1 42 | }, 43 | "type": "minecraft:range" 44 | } 45 | }, 46 | "type": "minecraft:decorated" 47 | }, 48 | "decorator": { 49 | "config": { 50 | "outer": { 51 | "config": {}, 52 | "type": "minecraft:square" 53 | }, 54 | "inner": { 55 | "config": {}, 56 | "type": "minecraft:heightmap_spread_double" 57 | } 58 | }, 59 | "type": "minecraft:decorated" 60 | } 61 | }, 62 | "type": "minecraft:decorated" 63 | }, 64 | "decorator": { 65 | "config": { 66 | "count": 4 67 | }, 68 | "type": "minecraft:count" 69 | } 70 | }, 71 | "type": "minecraft:decorated" 72 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "can_replace": false, 8 | "project": true, 9 | "need_water": false, 10 | "xspread": 10, 11 | "yspread": 5, 12 | "zspread": 10, 13 | "whitelist": [ 14 | { 15 | "Properties": { 16 | "snowy": "false" 17 | }, 18 | "Name": "minecraft:grass_block" 19 | } 20 | ], 21 | "blacklist": [ 22 | { 23 | "Name": "minecraft:sand" 24 | }, 25 | { 26 | "Name": "minecraft:gravel" 27 | } 28 | ], 29 | "tries": 32, 30 | "state_provider": { 31 | "state": { 32 | "Name": "minecraft:grass" 33 | }, 34 | "type": "minecraft:simple_state_provider", 35 | "name": "minecraft:simple_state_provider" 36 | }, 37 | "block_placer": { 38 | "type": "minecraft:simple_block_placer", 39 | "name": "minecraft:simple_block_placer" 40 | } 41 | }, 42 | "type": "minecraft:random_patch", 43 | "name": "minecraft:random_patch" 44 | }, 45 | "decorator": { 46 | "config": { 47 | "outer": { 48 | "config": {}, 49 | "type": "minecraft:square", 50 | "name": "minecraft:square" 51 | }, 52 | "inner": { 53 | "config": {}, 54 | "type": "minecraft:heightmap_spread_double", 55 | "name": "minecraft:heightmap_spread_double" 56 | } 57 | }, 58 | "type": "minecraft:decorated", 59 | "name": "minecraft:decorated" 60 | } 61 | }, 62 | "type": "minecraft:decorated", 63 | "name": "minecraft:decorated" 64 | }, 65 | "decorator": { 66 | "config": { 67 | "count": 1 68 | }, 69 | "type": "minecraft:count", 70 | "name": "minecraft:count" 71 | } 72 | }, 73 | "type": "minecraft:decorated", 74 | "name": "minecraft:decorated" 75 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_gravel_air.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Name": "minecraft:air" 13 | }, 14 | "place_on": [ 15 | { 16 | "Name": "minecraft:gravel" 17 | } 18 | ], 19 | "place_in": [ 20 | { 21 | "Name": "minecraft:gravel" 22 | } 23 | ], 24 | "place_under": [ 25 | { 26 | "Name": "minecraft:air" 27 | } 28 | ] 29 | }, 30 | "type": "minecraft:simple_block" 31 | }, 32 | "decorator": { 33 | "config": { 34 | "bottom_offset": 65, 35 | "top_offset": 0, 36 | "maximum": 1 37 | }, 38 | "type": "minecraft:range" 39 | } 40 | }, 41 | "type": "minecraft:decorated" 42 | }, 43 | "decorator": { 44 | "config": { 45 | "outer": { 46 | "config": {}, 47 | "type": "minecraft:square" 48 | }, 49 | "inner": { 50 | "config": {}, 51 | "type": "minecraft:heightmap_spread_double" 52 | } 53 | }, 54 | "type": "minecraft:decorated" 55 | } 56 | }, 57 | "type": "minecraft:decorated" 58 | }, 59 | "decorator": { 60 | "config": { 61 | "count": 128, 62 | "extra_chance": 1.0, 63 | "extra_count": 128 64 | }, 65 | "type": "minecraft:count_extra" 66 | } 67 | }, 68 | "type": "minecraft:decorated" 69 | }, 70 | "decorator": { 71 | "config": { 72 | "count": 10 73 | }, 74 | "type": "minecraft:count" 75 | } 76 | }, 77 | "type": "minecraft:decorated" 78 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_gravel_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Name": "minecraft:sand" 13 | }, 14 | "place_on": [ 15 | { 16 | "Name": "minecraft:gravel" 17 | } 18 | ], 19 | "place_in": [ 20 | { 21 | "Name": "minecraft:gravel" 22 | } 23 | ], 24 | "place_under": [ 25 | { 26 | "Name": "minecraft:air" 27 | } 28 | ] 29 | }, 30 | "type": "minecraft:simple_block" 31 | }, 32 | "decorator": { 33 | "config": { 34 | "bottom_offset": 63, 35 | "top_offset": 0, 36 | "maximum": 4 37 | }, 38 | "type": "minecraft:range" 39 | } 40 | }, 41 | "type": "minecraft:decorated" 42 | }, 43 | "decorator": { 44 | "config": { 45 | "outer": { 46 | "config": {}, 47 | "type": "minecraft:square" 48 | }, 49 | "inner": { 50 | "config": {}, 51 | "type": "minecraft:heightmap_spread_double" 52 | } 53 | }, 54 | "type": "minecraft:decorated" 55 | } 56 | }, 57 | "type": "minecraft:decorated" 58 | }, 59 | "decorator": { 60 | "config": { 61 | "count": 128, 62 | "extra_chance": 1.0, 63 | "extra_count": 128 64 | }, 65 | "type": "minecraft:count_extra" 66 | } 67 | }, 68 | "type": "minecraft:decorated" 69 | }, 70 | "decorator": { 71 | "config": { 72 | "count": 1 73 | }, 74 | "type": "minecraft:count" 75 | } 76 | }, 77 | "type": "minecraft:decorated" 78 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_grass_127.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Properties": { 13 | "snowy": "false" 14 | }, 15 | "Name": "minecraft:grass_block" 16 | }, 17 | "place_on": [ 18 | { 19 | "Name": "minecraft:dirt" 20 | } 21 | ], 22 | "place_in": [ 23 | { 24 | "Name": "minecraft:dirt" 25 | } 26 | ], 27 | "place_under": [ 28 | { 29 | "Name": "minecraft:air" 30 | } 31 | ] 32 | }, 33 | "type": "minecraft:simple_block" 34 | }, 35 | "decorator": { 36 | "config": { 37 | "bottom_offset": 127, 38 | "top_offset": 0, 39 | "maximum": 20 40 | }, 41 | "type": "minecraft:range" 42 | } 43 | }, 44 | "type": "minecraft:decorated" 45 | }, 46 | "decorator": { 47 | "config": { 48 | "outer": { 49 | "config": {}, 50 | "type": "minecraft:square" 51 | }, 52 | "inner": { 53 | "config": {}, 54 | "type": "minecraft:heightmap_spread_double" 55 | } 56 | }, 57 | "type": "minecraft:decorated" 58 | } 59 | }, 60 | "type": "minecraft:decorated" 61 | }, 62 | "decorator": { 63 | "config": { 64 | "count": 128, 65 | "extra_chance": 1.0, 66 | "extra_count": 128 67 | }, 68 | "type": "minecraft:count_extra" 69 | } 70 | }, 71 | "type": "minecraft:decorated" 72 | }, 73 | "decorator": { 74 | "config": { 75 | "count": 30 76 | }, 77 | "type": "minecraft:count" 78 | } 79 | }, 80 | "type": "minecraft:decorated" 81 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/bush_rainforest.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "max_water_depth": 0, 8 | "ignore_vines": false, 9 | "heightmap": "MOTION_BLOCKING_NO_LEAVES", 10 | "minimum_size": { 11 | "limit": 0, 12 | "lower_size": 0, 13 | "upper_size": 0, 14 | "type": "minecraft:two_layers_feature_size", 15 | "name": "minecraft:two_layers_feature_size" 16 | }, 17 | "decorators": [], 18 | "trunk_provider": { 19 | "state": { 20 | "Properties": { 21 | "axis": "y" 22 | }, 23 | "Name": "minecraft:oak_log" 24 | }, 25 | "type": "minecraft:simple_state_provider", 26 | "name": "minecraft:simple_state_provider" 27 | }, 28 | "leaves_provider": { 29 | "state": { 30 | "Properties": { 31 | "persistent": "false", 32 | "distance": "7" 33 | }, 34 | "Name": "minecraft:oak_leaves" 35 | }, 36 | "type": "minecraft:simple_state_provider", 37 | "name": "minecraft:simple_state_provider" 38 | }, 39 | "foliage_placer": { 40 | "radius": 2, 41 | "offset": 1, 42 | "height": 2, 43 | "type": "minecraft:bush_foliage_placer", 44 | "name": "minecraft:bush_foliage_placer" 45 | }, 46 | "trunk_placer": { 47 | "base_height": 1, 48 | "height_rand_a": 0, 49 | "height_rand_b": 0, 50 | "type": "minecraft:straight_trunk_placer", 51 | "name": "minecraft:straight_trunk_placer" 52 | } 53 | }, 54 | "type": "minecraft:tree", 55 | "name": "minecraft:tree" 56 | }, 57 | "decorator": { 58 | "config": { 59 | "outer": { 60 | "config": {}, 61 | "type": "minecraft:square", 62 | "name": "minecraft:square" 63 | }, 64 | "inner": { 65 | "config": {}, 66 | "type": "minecraft:heightmap", 67 | "name": "minecraft:heightmap" 68 | } 69 | }, 70 | "type": "minecraft:decorated", 71 | "name": "minecraft:decorated" 72 | } 73 | }, 74 | "type": "minecraft:decorated", 75 | "name": "minecraft:decorated" 76 | }, 77 | "decorator": { 78 | "config": { 79 | "count": 0, 80 | "extra_chance": 0.5, 81 | "extra_count": 1 82 | }, 83 | "type": "minecraft:count_extra", 84 | "name": "minecraft:count_extra" 85 | } 86 | }, 87 | "type": "minecraft:decorated", 88 | "name": "minecraft:decorated" 89 | } 90 | 91 | -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_sand_desert.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Name": "minecraft:sand" 13 | }, 14 | "place_on": [ 15 | { 16 | "Name": "minecraft:dirt" 17 | } 18 | ], 19 | "place_in": [ 20 | { 21 | "Properties": { 22 | "snowy": "false" 23 | }, 24 | "Name": "minecraft:grass_block" 25 | } 26 | ], 27 | "place_under": [ 28 | { 29 | "Name": "minecraft:air" 30 | } 31 | ] 32 | }, 33 | "type": "minecraft:simple_block" 34 | }, 35 | "decorator": { 36 | "config": { 37 | "bottom_offset": 64, 38 | "top_offset": 0, 39 | "maximum": 64 40 | }, 41 | "type": "minecraft:range" 42 | } 43 | }, 44 | "type": "minecraft:decorated" 45 | }, 46 | "decorator": { 47 | "config": { 48 | "outer": { 49 | "config": {}, 50 | "type": "minecraft:square" 51 | }, 52 | "inner": { 53 | "config": {}, 54 | "type": "minecraft:heightmap_spread_double" 55 | } 56 | }, 57 | "type": "minecraft:decorated" 58 | } 59 | }, 60 | "type": "minecraft:decorated" 61 | }, 62 | "decorator": { 63 | "config": { 64 | "count": 128, 65 | "extra_chance": 1.0, 66 | "extra_count": 128 67 | }, 68 | "type": "minecraft:count_extra" 69 | } 70 | }, 71 | "type": "minecraft:decorated" 72 | }, 73 | "decorator": { 74 | "config": { 75 | "count": 25 76 | }, 77 | "type": "minecraft:count" 78 | } 79 | }, 80 | "type": "minecraft:decorated" 81 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_tall_grass_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "can_replace": false, 12 | "project": false, 13 | "need_water": false, 14 | "xspread": 7, 15 | "yspread": 3, 16 | "zspread": 7, 17 | "whitelist": [], 18 | "blacklist": [], 19 | "tries": 64, 20 | "state_provider": { 21 | "state": { 22 | "Properties": { 23 | "half": "lower" 24 | }, 25 | "Name": "minecraft:tall_grass" 26 | }, 27 | "type": "minecraft:simple_state_provider", 28 | "name": "minecraft:simple_state_provider" 29 | }, 30 | "block_placer": { 31 | "type": "minecraft:double_plant_placer", 32 | "name": "minecraft:double_plant_placer" 33 | } 34 | }, 35 | "type": "minecraft:random_patch", 36 | "name": "minecraft:random_patch" 37 | }, 38 | "decorator": { 39 | "config": {}, 40 | "type": "minecraft:spread_32_above", 41 | "name": "minecraft:spread_32_above" 42 | } 43 | }, 44 | "type": "minecraft:decorated", 45 | "name": "minecraft:decorated" 46 | }, 47 | "decorator": { 48 | "config": {}, 49 | "type": "minecraft:heightmap", 50 | "name": "minecraft:heightmap" 51 | } 52 | }, 53 | "type": "minecraft:decorated", 54 | "name": "minecraft:decorated" 55 | }, 56 | "decorator": { 57 | "config": {}, 58 | "type": "minecraft:square", 59 | "name": "minecraft:square" 60 | } 61 | }, 62 | "type": "minecraft:decorated", 63 | "name": "minecraft:decorated" 64 | }, 65 | "decorator": { 66 | "config": { 67 | "noise_level": -0.8, 68 | "below_noise": 0, 69 | "above_noise": 3 70 | }, 71 | "type": "minecraft:count_noise", 72 | "name": "minecraft:count_noise" 73 | } 74 | }, 75 | "type": "minecraft:decorated", 76 | "name": "minecraft:decorated" 77 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/mushroom_fields.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:stronghold", 5 | "minecraft:ruined_portal" 6 | ], 7 | "spawners": { 8 | "monster": [], 9 | "creature": [ 10 | { 11 | "type": "minecraft:mooshroom", 12 | "weight": 8, 13 | "minCount": 4, 14 | "maxCount": 8 15 | } 16 | ], 17 | "ambient": [ 18 | { 19 | "type": "minecraft:bat", 20 | "weight": 10, 21 | "minCount": 8, 22 | "maxCount": 8 23 | } 24 | ], 25 | "water_creature": [ 26 | { 27 | "type": "minecraft:squid", 28 | "weight": 10, 29 | "minCount": 4, 30 | "maxCount": 4 31 | } 32 | ], 33 | "water_ambient": [], 34 | "misc": [] 35 | }, 36 | "spawn_costs": {}, 37 | "surface_builder": "minecraft:mycelium", 38 | "carvers": { 39 | "air": [ 40 | "minecraft:cave", 41 | "minecraft:canyon" 42 | ] 43 | }, 44 | "features": [ 45 | [], 46 | [ 47 | "minecraft:lake_water", 48 | "minecraft:lake_lava" 49 | ], 50 | [], 51 | [ 52 | "minecraft:monster_room" 53 | ], 54 | [], 55 | [], 56 | [ 57 | "modern_beta:ore_dirt", 58 | "modern_beta:ore_gravel", 59 | "minecraft:ore_granite", 60 | "minecraft:ore_diorite", 61 | "minecraft:ore_andesite", 62 | "minecraft:ore_coal", 63 | "minecraft:ore_iron", 64 | "minecraft:ore_gold", 65 | "minecraft:ore_redstone", 66 | "minecraft:ore_diamond", 67 | "minecraft:ore_lapis", 68 | "modern_beta:sand_beach", 69 | "modern_beta:ore_clay" 70 | ], 71 | [], 72 | [ 73 | "minecraft:mushroom_field_vegetation", 74 | "minecraft:brown_mushroom_taiga", 75 | "minecraft:red_mushroom_taiga", 76 | "minecraft:brown_mushroom_normal", 77 | "minecraft:red_mushroom_normal", 78 | "minecraft:patch_sugar_cane", 79 | "minecraft:patch_pumpkin", 80 | "minecraft:spring_water", 81 | "minecraft:spring_lava" 82 | ], 83 | [ 84 | "minecraft:freeze_top_layer" 85 | ] 86 | ], 87 | "scale": 0.3, 88 | "temperature": 0.9, 89 | "downfall": 1.0, 90 | "effects": { 91 | "mood_sound": { 92 | "sound": "minecraft:ambient.cave", 93 | "tick_delay": 6000, 94 | "block_search_extent": 8, 95 | "offset": 2.0 96 | }, 97 | "sky_color": 9158143, 98 | "fog_color": 12638463, 99 | "water_color": 4159204, 100 | "water_fog_color": 329011 101 | }, 102 | "precipitation": "rain", 103 | "category": "mushroom", 104 | "depth": 0.3 105 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_bamboo_jungle_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.05 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.15 15 | }, 16 | { 17 | "feature": "minecraft:mega_jungle_tree", 18 | "chance": 0.7 19 | } 20 | ], 21 | "default": { 22 | "config": { 23 | "can_replace": false, 24 | "project": true, 25 | "need_water": false, 26 | "xspread": 7, 27 | "yspread": 3, 28 | "zspread": 7, 29 | "whitelist": [], 30 | "blacklist": [ 31 | { 32 | "Properties": { 33 | "snowy": "false" 34 | }, 35 | "Name": "minecraft:podzol" 36 | } 37 | ], 38 | "tries": 32, 39 | "state_provider": { 40 | "entries": [ 41 | { 42 | "weight": 3, 43 | "data": { 44 | "Name": "minecraft:grass" 45 | } 46 | }, 47 | { 48 | "weight": 1, 49 | "data": { 50 | "Name": "minecraft:fern" 51 | } 52 | } 53 | ], 54 | "type": "minecraft:weighted_state_provider" 55 | }, 56 | "block_placer": { 57 | "type": "minecraft:simple_block_placer" 58 | } 59 | }, 60 | "type": "minecraft:random_patch" 61 | } 62 | }, 63 | "type": "minecraft:random_selector" 64 | }, 65 | "decorator": { 66 | "config": { 67 | "outer": { 68 | "config": {}, 69 | "type": "minecraft:square" 70 | }, 71 | "inner": { 72 | "config": {}, 73 | "type": "minecraft:heightmap" 74 | } 75 | }, 76 | "type": "minecraft:decorated" 77 | } 78 | }, 79 | "type": "minecraft:decorated" 80 | }, 81 | "decorator": { 82 | "config": { 83 | "count": 0, 84 | "extra_chance": 0.1, 85 | "extra_count": 1 86 | }, 87 | "type": "minecraft:count_extra" 88 | } 89 | }, 90 | "type": "minecraft:decorated" 91 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Name": "minecraft:sandstone" 13 | }, 14 | "place_on": [ 15 | { 16 | "Name": "minecraft:stone" 17 | }, 18 | { 19 | "Name": "minecraft:cave_air" 20 | }, 21 | { 22 | "Name": "minecraft:air" 23 | } 24 | ], 25 | "place_in": [ 26 | { 27 | "Name": "minecraft:stone" 28 | }, 29 | { 30 | "Name": "minecraft:cave_air" 31 | }, 32 | { 33 | "Name": "minecraft:air" 34 | } 35 | ], 36 | "place_under": [ 37 | { 38 | "Name": "minecraft:sand" 39 | } 40 | ] 41 | }, 42 | "type": "minecraft:simple_block" 43 | }, 44 | "decorator": { 45 | "config": { 46 | "bottom_offset": 55, 47 | "top_offset": 0, 48 | "maximum": 8 49 | }, 50 | "type": "minecraft:range" 51 | } 52 | }, 53 | "type": "minecraft:decorated" 54 | }, 55 | "decorator": { 56 | "config": { 57 | "outer": { 58 | "config": {}, 59 | "type": "minecraft:square" 60 | }, 61 | "inner": { 62 | "config": {}, 63 | "type": "minecraft:heightmap_spread_double" 64 | } 65 | }, 66 | "type": "minecraft:decorated" 67 | } 68 | }, 69 | "type": "minecraft:decorated" 70 | }, 71 | "decorator": { 72 | "config": { 73 | "count": 128, 74 | "extra_chance": 1.0, 75 | "extra_count": 128 76 | }, 77 | "type": "minecraft:count_extra" 78 | } 79 | }, 80 | "type": "minecraft:decorated" 81 | }, 82 | "decorator": { 83 | "config": { 84 | "count": 60 85 | }, 86 | "type": "minecraft:count" 87 | } 88 | }, 89 | "type": "minecraft:decorated" 90 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_sandstone_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Name": "minecraft:sandstone" 13 | }, 14 | "place_on": [ 15 | { 16 | "Name": "minecraft:stone" 17 | }, 18 | { 19 | "Name": "minecraft:cave_air" 20 | }, 21 | { 22 | "Name": "minecraft:air" 23 | } 24 | ], 25 | "place_in": [ 26 | { 27 | "Name": "minecraft:stone" 28 | }, 29 | { 30 | "Name": "minecraft:cave_air" 31 | }, 32 | { 33 | "Name": "minecraft:air" 34 | } 35 | ], 36 | "place_under": [ 37 | { 38 | "Name": "minecraft:sandstone" 39 | } 40 | ] 41 | }, 42 | "type": "minecraft:simple_block" 43 | }, 44 | "decorator": { 45 | "config": { 46 | "bottom_offset": 55, 47 | "top_offset": 0, 48 | "maximum": 8 49 | }, 50 | "type": "minecraft:range" 51 | } 52 | }, 53 | "type": "minecraft:decorated" 54 | }, 55 | "decorator": { 56 | "config": { 57 | "outer": { 58 | "config": {}, 59 | "type": "minecraft:square" 60 | }, 61 | "inner": { 62 | "config": {}, 63 | "type": "minecraft:heightmap_spread_double" 64 | } 65 | }, 66 | "type": "minecraft:decorated" 67 | } 68 | }, 69 | "type": "minecraft:decorated" 70 | }, 71 | "decorator": { 72 | "config": { 73 | "count": 128, 74 | "extra_chance": 1.0, 75 | "extra_count": 128 76 | }, 77 | "type": "minecraft:count_extra" 78 | } 79 | }, 80 | "type": "minecraft:decorated" 81 | }, 82 | "decorator": { 83 | "config": { 84 | "count": 40 85 | }, 86 | "type": "minecraft:count" 87 | } 88 | }, 89 | "type": "minecraft:decorated" 90 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/trees_bamboo_jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "features": [ 8 | { 9 | "feature": "minecraft:fancy_oak", 10 | "chance": 0.05 11 | }, 12 | { 13 | "feature": "minecraft:jungle_bush", 14 | "chance": 0.15 15 | }, 16 | { 17 | "feature": "minecraft:mega_jungle_tree", 18 | "chance": 0.7 19 | } 20 | ], 21 | "default": { 22 | "config": { 23 | "can_replace": false, 24 | "project": true, 25 | "need_water": false, 26 | "xspread": 7, 27 | "yspread": 3, 28 | "zspread": 7, 29 | "whitelist": [], 30 | "blacklist": [ 31 | { 32 | "Properties": { 33 | "snowy": "false" 34 | }, 35 | "Name": "minecraft:podzol" 36 | } 37 | ], 38 | "tries": 32, 39 | "state_provider": { 40 | "entries": [ 41 | { 42 | "weight": 3, 43 | "data": { 44 | "Name": "minecraft:grass" 45 | } 46 | }, 47 | { 48 | "weight": 1, 49 | "data": { 50 | "Name": "minecraft:fern" 51 | } 52 | } 53 | ], 54 | "type": "minecraft:weighted_state_provider" 55 | }, 56 | "block_placer": { 57 | "type": "minecraft:simple_block_placer" 58 | } 59 | }, 60 | "type": "minecraft:random_patch" 61 | } 62 | }, 63 | "type": "minecraft:random_selector" 64 | }, 65 | "decorator": { 66 | "config": { 67 | "outer": { 68 | "config": {}, 69 | "type": "minecraft:square" 70 | }, 71 | "inner": { 72 | "config": {}, 73 | "type": "minecraft:heightmap" 74 | } 75 | }, 76 | "type": "minecraft:decorated" 77 | } 78 | }, 79 | "type": "minecraft:decorated" 80 | }, 81 | "decorator": { 82 | "config": { 83 | "count": { 84 | "base": 4, 85 | "spread": 8, 86 | "minBase": 4, 87 | "maxBase": 4, 88 | "maxSpread": 8 89 | } 90 | }, 91 | "type": "minecraft:count_multilayer" 92 | } 93 | }, 94 | "type": "minecraft:decorated" 95 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/configured_feature/patch_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "feature": { 4 | "config": { 5 | "feature": { 6 | "config": { 7 | "feature": { 8 | "config": { 9 | "feature": { 10 | "config": { 11 | "to_place": { 12 | "Properties": { 13 | "snowy": "false" 14 | }, 15 | "Name": "minecraft:grass_block" 16 | }, 17 | "place_on": [ 18 | { 19 | "Name": "minecraft:dirt" 20 | }, 21 | { 22 | "Name": "minecraft:cave_air" 23 | }, 24 | { 25 | "Name": "minecraft:air" 26 | }, 27 | { 28 | "Properties": { 29 | "level": "0" 30 | }, 31 | "Name": "minecraft:water" 32 | } 33 | ], 34 | "place_in": [ 35 | { 36 | "Name": "minecraft:gravel" 37 | } 38 | ], 39 | "place_under": [ 40 | { 41 | "Name": "minecraft:air" 42 | } 43 | ] 44 | }, 45 | "type": "minecraft:simple_block" 46 | }, 47 | "decorator": { 48 | "config": { 49 | "bottom_offset": 62, 50 | "top_offset": 0, 51 | "maximum": 4 52 | }, 53 | "type": "minecraft:range" 54 | } 55 | }, 56 | "type": "minecraft:decorated" 57 | }, 58 | "decorator": { 59 | "config": { 60 | "outer": { 61 | "config": {}, 62 | "type": "minecraft:square" 63 | }, 64 | "inner": { 65 | "config": {}, 66 | "type": "minecraft:heightmap_spread_double" 67 | } 68 | }, 69 | "type": "minecraft:decorated" 70 | } 71 | }, 72 | "type": "minecraft:decorated" 73 | }, 74 | "decorator": { 75 | "config": { 76 | "count": 128, 77 | "extra_chance": 1.0, 78 | "extra_count": 128 79 | }, 80 | "type": "minecraft:count_extra" 81 | } 82 | }, 83 | "type": "minecraft:decorated" 84 | }, 85 | "decorator": { 86 | "config": { 87 | "count": 35 88 | }, 89 | "type": "minecraft:count" 90 | } 91 | }, 92 | "type": "minecraft:decorated" 93 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/the_sea_calls_you.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:seagrass" 5 | }, 6 | "title": {"translate":"The sea calls you..."}, 7 | "description": {"translate":"Find an ocean"} 8 | }, 9 | "parent": "blazeandcave:biomes/just_keep_swimming", 10 | "rewards": { 11 | "function": "bc_rewards:biomes/the_sea_calls_you" 12 | }, 13 | "criteria": { 14 | "deep_ocean": { 15 | "trigger": "minecraft:location", 16 | "conditions": { 17 | "biome": "minecraft:deep_ocean" 18 | } 19 | }, 20 | "ocean": { 21 | "trigger": "minecraft:location", 22 | "conditions": { 23 | "biome": "minecraft:ocean" 24 | } 25 | }, 26 | "deep_frozen_ocean": { 27 | "trigger": "minecraft:location", 28 | "conditions": { 29 | "biome": "minecraft:deep_frozen_ocean" 30 | } 31 | }, 32 | "frozen_ocean": { 33 | "trigger": "minecraft:location", 34 | "conditions": { 35 | "biome": "minecraft:frozen_ocean" 36 | } 37 | }, 38 | "cold_ocean": { 39 | "trigger": "minecraft:location", 40 | "conditions": { 41 | "biome": "minecraft:cold_ocean" 42 | } 43 | }, 44 | "deep_cold_ocean": { 45 | "trigger": "minecraft:location", 46 | "conditions": { 47 | "biome": "minecraft:deep_cold_ocean" 48 | } 49 | }, 50 | "lukewarm_ocean": { 51 | "trigger": "minecraft:location", 52 | "conditions": { 53 | "biome": "minecraft:lukewarm_ocean" 54 | } 55 | }, 56 | "deep_lukewarm_ocean": { 57 | "trigger": "minecraft:location", 58 | "conditions": { 59 | "biome": "minecraft:deep_lukewarm_ocean" 60 | } 61 | }, 62 | "warm_ocean": { 63 | "trigger": "minecraft:location", 64 | "conditions": { 65 | "biome": "minecraft:warm_ocean" 66 | } 67 | }, 68 | "deep_warm_ocean": { 69 | "trigger": "minecraft:location", 70 | "conditions": { 71 | "biome": "minecraft:deep_warm_ocean" 72 | } 73 | }, 74 | "river": { 75 | "trigger": "minecraft:location", 76 | "conditions": { 77 | "biome": "minecraft:river" 78 | } 79 | }, 80 | "lukewarm_river": { 81 | "trigger": "minecraft:location", 82 | "conditions": { 83 | "biome": "minecraft:lukewarm_river" 84 | } 85 | } 86 | }, 87 | "requirements": [ 88 | [ 89 | "deep_ocean", 90 | "ocean", 91 | "deep_frozen_ocean", 92 | "frozen_ocean", 93 | "cold_ocean", 94 | "deep_cold_ocean", 95 | "lukewarm_ocean", 96 | "deep_lukewarm_ocean", 97 | "warm_ocean", 98 | "deep_warm_ocean", 99 | "river", 100 | "lukewarm_river" 101 | ] 102 | ] 103 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/noise_settings/sky.json: -------------------------------------------------------------------------------- 1 | { 2 | "bedrock_roof_position": -10, 3 | "bedrock_floor_position": -10, 4 | "sea_level": 0, 5 | "disable_mob_generation": false, 6 | "structures": { 7 | "stronghold": { 8 | "distance": 32, 9 | "spread": 3, 10 | "count": 128 11 | }, 12 | "structures": { 13 | "minecraft:nether_fossil": { 14 | "spacing": 2, 15 | "separation": 1, 16 | "salt": 14357921 17 | }, 18 | "minecraft:jungle_pyramid": { 19 | "spacing": 32, 20 | "separation": 8, 21 | "salt": 14357619 22 | }, 23 | "minecraft:ocean_ruin": { 24 | "spacing": 20, 25 | "separation": 8, 26 | "salt": 14357621 27 | }, 28 | "minecraft:bastion_remnant": { 29 | "spacing": 27, 30 | "separation": 4, 31 | "salt": 30084232 32 | }, 33 | "minecraft:ruined_portal": { 34 | "spacing": 40, 35 | "separation": 15, 36 | "salt": 34222645 37 | }, 38 | "minecraft:village": { 39 | "spacing": 32, 40 | "separation": 8, 41 | "salt": 10387312 42 | }, 43 | "minecraft:pillager_outpost": { 44 | "spacing": 32, 45 | "separation": 8, 46 | "salt": 165745296 47 | }, 48 | "minecraft:endcity": { 49 | "spacing": 10, 50 | "separation": 5, 51 | "salt": 10387313 52 | }, 53 | "minecraft:buried_treasure": { 54 | "spacing": 1, 55 | "separation": 0, 56 | "salt": 0 57 | }, 58 | "minecraft:monument": { 59 | "spacing": 32, 60 | "separation": 5, 61 | "salt": 10387313 62 | }, 63 | "minecraft:fortress": { 64 | "spacing": 27, 65 | "separation": 4, 66 | "salt": 30084232 67 | }, 68 | "minecraft:shipwreck": { 69 | "spacing": 24, 70 | "separation": 4, 71 | "salt": 165745295 72 | }, 73 | "minecraft:igloo": { 74 | "spacing": 32, 75 | "separation": 8, 76 | "salt": 14357618 77 | }, 78 | "minecraft:mineshaft": { 79 | "spacing": 1, 80 | "separation": 0, 81 | "salt": 0 82 | }, 83 | "minecraft:desert_pyramid": { 84 | "spacing": 32, 85 | "separation": 8, 86 | "salt": 14357617 87 | }, 88 | "minecraft:mansion": { 89 | "spacing": 80, 90 | "separation": 20, 91 | "salt": 10387319 92 | }, 93 | "minecraft:swamp_hut": { 94 | "spacing": 32, 95 | "separation": 8, 96 | "salt": 14357620 97 | }, 98 | "minecraft:stronghold": { 99 | "spacing": 1, 100 | "separation": 0, 101 | "salt": 0 102 | } 103 | } 104 | }, 105 | "noise": { 106 | "random_density_offset": true, 107 | "density_factor": 0.0, 108 | "density_offset": 0.0, 109 | "simplex_surface_noise": true, 110 | "bottom_slide": { 111 | "target": -30, 112 | "size": 7, 113 | "offset": 1 114 | }, 115 | "size_horizontal": 2, 116 | "size_vertical": 1, 117 | "height": 128, 118 | "sampling": { 119 | "xz_scale": 2.0, 120 | "y_scale": 1.0, 121 | "xz_factor": 80.0, 122 | "y_factor": 160.0 123 | }, 124 | "top_slide": { 125 | "target": -300, 126 | "size": 78, 127 | "offset": -46 128 | } 129 | }, 130 | "default_block": { 131 | "Name": "minecraft:stone" 132 | }, 133 | "default_fluid": { 134 | "Properties": { 135 | "level": "0" 136 | }, 137 | "Name": "minecraft:water" 138 | } 139 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/noise_settings/overworld.json: -------------------------------------------------------------------------------- 1 | { 2 | "bedrock_roof_position": -10, 3 | "bedrock_floor_position": 0, 4 | "sea_level": 64, 5 | "disable_mob_generation": false, 6 | "structures": { 7 | "stronghold": { 8 | "distance": 32, 9 | "spread": 3, 10 | "count": 128 11 | }, 12 | "structures": { 13 | "minecraft:nether_fossil": { 14 | "spacing": 2, 15 | "separation": 1, 16 | "salt": 14357921 17 | }, 18 | "minecraft:jungle_pyramid": { 19 | "spacing": 32, 20 | "separation": 8, 21 | "salt": 14357619 22 | }, 23 | "minecraft:ocean_ruin": { 24 | "spacing": 20, 25 | "separation": 8, 26 | "salt": 14357621 27 | }, 28 | "minecraft:bastion_remnant": { 29 | "spacing": 27, 30 | "separation": 4, 31 | "salt": 30084232 32 | }, 33 | "minecraft:ruined_portal": { 34 | "spacing": 40, 35 | "separation": 15, 36 | "salt": 34222645 37 | }, 38 | "minecraft:village": { 39 | "spacing": 32, 40 | "separation": 8, 41 | "salt": 10387312 42 | }, 43 | "minecraft:pillager_outpost": { 44 | "spacing": 32, 45 | "separation": 8, 46 | "salt": 165745296 47 | }, 48 | "minecraft:endcity": { 49 | "spacing": 20, 50 | "separation": 11, 51 | "salt": 10387313 52 | }, 53 | "minecraft:buried_treasure": { 54 | "spacing": 1, 55 | "separation": 0, 56 | "salt": 0 57 | }, 58 | "minecraft:monument": { 59 | "spacing": 32, 60 | "separation": 5, 61 | "salt": 10387313 62 | }, 63 | "minecraft:fortress": { 64 | "spacing": 27, 65 | "separation": 4, 66 | "salt": 30084232 67 | }, 68 | "minecraft:shipwreck": { 69 | "spacing": 24, 70 | "separation": 4, 71 | "salt": 165745295 72 | }, 73 | "minecraft:igloo": { 74 | "spacing": 32, 75 | "separation": 8, 76 | "salt": 14357618 77 | }, 78 | "minecraft:mineshaft": { 79 | "spacing": 1, 80 | "separation": 0, 81 | "salt": 0 82 | }, 83 | "minecraft:desert_pyramid": { 84 | "spacing": 32, 85 | "separation": 8, 86 | "salt": 14357617 87 | }, 88 | "minecraft:mansion": { 89 | "spacing": 80, 90 | "separation": 20, 91 | "salt": 10387319 92 | }, 93 | "minecraft:swamp_hut": { 94 | "spacing": 32, 95 | "separation": 8, 96 | "salt": 14357620 97 | }, 98 | "minecraft:stronghold": { 99 | "spacing": 1, 100 | "separation": 0, 101 | "salt": 0 102 | } 103 | } 104 | }, 105 | "noise": { 106 | "random_density_offset": true, 107 | "density_factor": 1.0, 108 | "density_offset": -0.46875, 109 | "simplex_surface_noise": false, 110 | "bottom_slide": { 111 | "target": -30, 112 | "size": 0, 113 | "offset": 0 114 | }, 115 | "size_horizontal": 1, 116 | "size_vertical": 2, 117 | "height": 256, 118 | "sampling": { 119 | "xz_scale": 0.9999999814507745, 120 | "y_scale": 0.9999999814507745, 121 | "xz_factor": 80.0, 122 | "y_factor": 160.0 123 | }, 124 | "top_slide": { 125 | "target": -10, 126 | "size": 3, 127 | "offset": 0 128 | } 129 | }, 130 | "default_block": { 131 | "Name": "minecraft:stone" 132 | }, 133 | "default_fluid": { 134 | "Properties": { 135 | "level": "0" 136 | }, 137 | "Name": "minecraft:water" 138 | } 139 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/badlands_plateau.json: -------------------------------------------------------------------------------- 1 | { 2 | "scale": 0.025, 3 | "effects": { 4 | "mood_sound": { 5 | "sound": "minecraft:ambient.cave", 6 | "tick_delay": 6000, 7 | "block_search_extent": 8, 8 | "offset": 2.0 9 | }, 10 | "sky_color": 7254527, 11 | "foliage_color": 10387789, 12 | "grass_color": 9470285, 13 | "fog_color": 12638463, 14 | "water_color": 4159204, 15 | "water_fog_color": 329011 16 | }, 17 | "surface_builder": "minecraft:badlands", 18 | "carvers": { 19 | "air": [ 20 | "minecraft:cave", 21 | "minecraft:canyon" 22 | ] 23 | }, 24 | "features": [ 25 | [], 26 | [ 27 | "minecraft:lake_water", 28 | "minecraft:lake_lava" 29 | ], 30 | [], 31 | [ 32 | "minecraft:monster_room" 33 | ], 34 | [], 35 | [], 36 | [ 37 | "modern_beta:ore_dirt", 38 | "modern_beta:ore_gravel", 39 | "minecraft:ore_granite", 40 | "minecraft:ore_diorite", 41 | "minecraft:ore_andesite", 42 | "minecraft:ore_coal", 43 | "minecraft:ore_iron", 44 | "minecraft:ore_gold", 45 | "minecraft:ore_redstone", 46 | "minecraft:ore_diamond", 47 | "minecraft:ore_lapis", 48 | "minecraft:ore_gold_extra", 49 | "modern_beta:sand_beach", 50 | "modern_beta:ore_clay" 51 | ], 52 | [], 53 | [ 54 | "minecraft:patch_grass_badlands", 55 | "minecraft:patch_dead_bush_badlands", 56 | "minecraft:brown_mushroom_normal", 57 | "minecraft:red_mushroom_normal", 58 | "minecraft:patch_sugar_cane_badlands", 59 | "minecraft:patch_pumpkin", 60 | "minecraft:patch_cactus_decorated", 61 | "minecraft:spring_water", 62 | "minecraft:spring_lava" 63 | ], 64 | [ 65 | "minecraft:freeze_top_layer" 66 | ] 67 | ], 68 | "starts": [ 69 | "minecraft:mineshaft_mesa", 70 | "minecraft:stronghold", 71 | "minecraft:ruined_portal_mountain" 72 | ], 73 | "spawners": { 74 | "monster": [ 75 | { 76 | "type": "minecraft:spider", 77 | "weight": 100, 78 | "minCount": 4, 79 | "maxCount": 4 80 | }, 81 | { 82 | "type": "minecraft:zombie", 83 | "weight": 95, 84 | "minCount": 4, 85 | "maxCount": 4 86 | }, 87 | { 88 | "type": "minecraft:zombie_villager", 89 | "weight": 5, 90 | "minCount": 1, 91 | "maxCount": 1 92 | }, 93 | { 94 | "type": "minecraft:skeleton", 95 | "weight": 100, 96 | "minCount": 4, 97 | "maxCount": 4 98 | }, 99 | { 100 | "type": "minecraft:creeper", 101 | "weight": 100, 102 | "minCount": 4, 103 | "maxCount": 4 104 | }, 105 | { 106 | "type": "minecraft:slime", 107 | "weight": 100, 108 | "minCount": 4, 109 | "maxCount": 4 110 | }, 111 | { 112 | "type": "minecraft:enderman", 113 | "weight": 10, 114 | "minCount": 1, 115 | "maxCount": 4 116 | }, 117 | { 118 | "type": "minecraft:witch", 119 | "weight": 5, 120 | "minCount": 1, 121 | "maxCount": 1 122 | } 123 | ], 124 | "creature": [], 125 | "ambient": [ 126 | { 127 | "type": "minecraft:bat", 128 | "weight": 10, 129 | "minCount": 8, 130 | "maxCount": 8 131 | } 132 | ], 133 | "water_creature": [], 134 | "water_ambient": [], 135 | "misc": [] 136 | }, 137 | "spawn_costs": {}, 138 | "player_spawn_friendly": false, 139 | "precipitation": "none", 140 | "temperature": 2.0, 141 | "downfall": 0.0, 142 | "category": "mesa", 143 | "depth": 1.5 144 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/badlands.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft_mesa", 4 | "minecraft:stronghold", 5 | "minecraft:ruined_portal" 6 | ], 7 | "spawners": { 8 | "monster": [ 9 | { 10 | "type": "minecraft:spider", 11 | "weight": 100, 12 | "minCount": 4, 13 | "maxCount": 4 14 | }, 15 | { 16 | "type": "minecraft:zombie", 17 | "weight": 95, 18 | "minCount": 4, 19 | "maxCount": 4 20 | }, 21 | { 22 | "type": "minecraft:zombie_villager", 23 | "weight": 5, 24 | "minCount": 1, 25 | "maxCount": 1 26 | }, 27 | { 28 | "type": "minecraft:skeleton", 29 | "weight": 100, 30 | "minCount": 4, 31 | "maxCount": 4 32 | }, 33 | { 34 | "type": "minecraft:creeper", 35 | "weight": 100, 36 | "minCount": 4, 37 | "maxCount": 4 38 | }, 39 | { 40 | "type": "minecraft:slime", 41 | "weight": 100, 42 | "minCount": 4, 43 | "maxCount": 4 44 | }, 45 | { 46 | "type": "minecraft:enderman", 47 | "weight": 10, 48 | "minCount": 1, 49 | "maxCount": 4 50 | }, 51 | { 52 | "type": "minecraft:witch", 53 | "weight": 5, 54 | "minCount": 1, 55 | "maxCount": 1 56 | } 57 | ], 58 | "creature": [], 59 | "ambient": [ 60 | { 61 | "type": "minecraft:bat", 62 | "weight": 10, 63 | "minCount": 8, 64 | "maxCount": 8 65 | } 66 | ], 67 | "water_creature": [ 68 | { 69 | "type": "minecraft:squid", 70 | "weight": 10, 71 | "minCount": 4, 72 | "maxCount": 4 73 | } 74 | ], 75 | "water_ambient": [], 76 | "misc": [] 77 | }, 78 | "spawn_costs": {}, 79 | "surface_builder": "minecraft:eroded_badlands", 80 | "carvers": { 81 | "air": [ 82 | "minecraft:cave", 83 | "minecraft:canyon" 84 | ] 85 | }, 86 | "features": [ 87 | [], 88 | [ 89 | "minecraft:lake_water", 90 | "minecraft:lake_lava" 91 | ], 92 | [], 93 | [ 94 | "minecraft:monster_room" 95 | ], 96 | [], 97 | [], 98 | [ 99 | "modern_beta:ore_dirt", 100 | "modern_beta:ore_gravel", 101 | "minecraft:ore_granite", 102 | "minecraft:ore_diorite", 103 | "minecraft:ore_andesite", 104 | "minecraft:ore_coal", 105 | "minecraft:ore_iron", 106 | "minecraft:ore_gold", 107 | "minecraft:ore_redstone", 108 | "minecraft:ore_diamond", 109 | "minecraft:ore_lapis", 110 | "minecraft:ore_gold_extra", 111 | "modern_beta:sand_beach", 112 | "modern_beta:ore_clay" 113 | ], 114 | [], 115 | [ 116 | "minecraft:patch_grass_badlands", 117 | "minecraft:patch_dead_bush_badlands", 118 | "minecraft:brown_mushroom_normal", 119 | "minecraft:red_mushroom_normal", 120 | "minecraft:patch_sugar_cane_badlands", 121 | "minecraft:patch_pumpkin", 122 | "minecraft:patch_cactus_decorated", 123 | "minecraft:spring_water", 124 | "minecraft:spring_lava" 125 | ], 126 | [ 127 | "minecraft:freeze_top_layer" 128 | ] 129 | ], 130 | "scale": 0.2, 131 | "temperature": 2.0, 132 | "downfall": 0.0, 133 | "effects": { 134 | "mood_sound": { 135 | "sound": "minecraft:ambient.cave", 136 | "tick_delay": 6000, 137 | "block_search_extent": 8, 138 | "offset": 2.0 139 | }, 140 | "sky_color": 7254527, 141 | "fog_color": 12638463, 142 | "water_color": 4159204, 143 | "water_fog_color": 329011 144 | }, 145 | "precipitation": "none", 146 | "category": "mesa", 147 | "depth": 0.37 148 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/ice_desert.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:pillager_outpost", 4 | "minecraft:desert_pyramid", 5 | "minecraft:mineshaft", 6 | "minecraft:stronghold", 7 | "minecraft:ruined_portal_desert" 8 | ], 9 | "spawners": { 10 | "monster": [ 11 | { 12 | "type": "minecraft:spider", 13 | "weight": 100, 14 | "minCount": 4, 15 | "maxCount": 4 16 | }, 17 | { 18 | "type": "minecraft:zombie", 19 | "weight": 95, 20 | "minCount": 4, 21 | "maxCount": 4 22 | }, 23 | { 24 | "type": "minecraft:zombie_villager", 25 | "weight": 5, 26 | "minCount": 1, 27 | "maxCount": 1 28 | }, 29 | { 30 | "type": "minecraft:skeleton", 31 | "weight": 20, 32 | "minCount": 4, 33 | "maxCount": 4 34 | }, 35 | { 36 | "type": "minecraft:creeper", 37 | "weight": 100, 38 | "minCount": 4, 39 | "maxCount": 4 40 | }, 41 | { 42 | "type": "minecraft:slime", 43 | "weight": 100, 44 | "minCount": 4, 45 | "maxCount": 4 46 | }, 47 | { 48 | "type": "minecraft:enderman", 49 | "weight": 10, 50 | "minCount": 1, 51 | "maxCount": 4 52 | }, 53 | { 54 | "type": "minecraft:witch", 55 | "weight": 5, 56 | "minCount": 1, 57 | "maxCount": 1 58 | }, 59 | { 60 | "type": "minecraft:stray", 61 | "weight": 80, 62 | "minCount": 4, 63 | "maxCount": 4 64 | } 65 | ], 66 | "creature": [], 67 | "ambient": [ 68 | { 69 | "type": "minecraft:bat", 70 | "weight": 10, 71 | "minCount": 8, 72 | "maxCount": 8 73 | } 74 | ], 75 | "water_creature": [ 76 | { 77 | "type": "minecraft:squid", 78 | "weight": 10, 79 | "minCount": 4, 80 | "maxCount": 4 81 | } 82 | ], 83 | "water_ambient": [], 84 | "misc": [] 85 | }, 86 | "spawn_costs": {}, 87 | "surface_builder": "minecraft:desert", 88 | "carvers": { 89 | "air": [ 90 | "minecraft:cave", 91 | "minecraft:canyon" 92 | ] 93 | }, 94 | "features": [ 95 | [], 96 | [ 97 | "minecraft:lake_lava" 98 | ], 99 | [], 100 | [ 101 | "minecraft:fossil", 102 | "minecraft:monster_room" 103 | ], 104 | [ 105 | "minecraft:desert_well" 106 | ], 107 | [], 108 | [ 109 | "modern_beta:ore_dirt", 110 | "modern_beta:ore_gravel", 111 | "minecraft:ore_granite", 112 | "minecraft:ore_diorite", 113 | "minecraft:ore_andesite", 114 | "minecraft:ore_coal", 115 | "minecraft:ore_iron", 116 | "minecraft:ore_gold", 117 | "minecraft:ore_redstone", 118 | "minecraft:ore_diamond", 119 | "minecraft:ore_lapis", 120 | "modern_beta:sand_beach", 121 | "modern_beta:ore_clay" 122 | ], 123 | [], 124 | [ 125 | "minecraft:brown_mushroom_normal", 126 | "minecraft:red_mushroom_normal", 127 | "minecraft:patch_sugar_cane_desert", 128 | "minecraft:patch_pumpkin", 129 | "minecraft:spring_water", 130 | "minecraft:spring_lava" 131 | ], 132 | [ 133 | "minecraft:freeze_top_layer" 134 | ] 135 | ], 136 | "scale": 0.2, 137 | "temperature": 0.0, 138 | "downfall": 0.5, 139 | "effects": { 140 | "mood_sound": { 141 | "sound": "minecraft:ambient.cave", 142 | "tick_delay": 6000, 143 | "block_search_extent": 8, 144 | "offset": 2.0 145 | }, 146 | "sky_color": 8625919, 147 | "fog_color": 12638463, 148 | "water_color": 3750089, 149 | "water_fog_color": 329011 150 | }, 151 | "precipitation": "snow", 152 | "category": "icy", 153 | "depth": 0.3 154 | } -------------------------------------------------------------------------------- /Modern Beta BAC Compatibility/data/blazeandcave/advancements/biomes/wet_feet.json: -------------------------------------------------------------------------------- 1 | { 2 | "display": { 3 | "icon": { 4 | "item": "minecraft:water_bucket" 5 | }, 6 | "title": {"translate":"Wet Feet"}, 7 | "description": {"translate":"Discover every water biome"}, 8 | "frame": "goal" 9 | }, 10 | "parent": "blazeandcave:biomes/overgrown", 11 | "rewards": { 12 | "experience": 100, 13 | "function": "bc_rewards:biomes/wet_feet" 14 | }, 15 | "criteria": { 16 | "marsh": { 17 | "trigger": "minecraft:location", 18 | "conditions": { 19 | "biome": "minecraft:marsh" 20 | } 21 | }, 22 | "deep_ocean": { 23 | "trigger": "minecraft:location", 24 | "conditions": { 25 | "biome": "minecraft:deep_ocean" 26 | } 27 | }, 28 | "ocean": { 29 | "trigger": "minecraft:location", 30 | "conditions": { 31 | "biome": "minecraft:ocean" 32 | } 33 | }, 34 | "cold_beach": { 35 | "trigger": "minecraft:location", 36 | "conditions": { 37 | "biome": "minecraft:cold_beach" 38 | } 39 | }, 40 | "beaches": { 41 | "trigger": "minecraft:location", 42 | "conditions": { 43 | "biome": "minecraft:beach" 44 | } 45 | }, 46 | "lukewarm_beach": { 47 | "trigger": "minecraft:location", 48 | "conditions": { 49 | "biome": "minecraft:lukewarm_beach" 50 | } 51 | }, 52 | "warm_beach": { 53 | "trigger": "minecraft:location", 54 | "conditions": { 55 | "biome": "minecraft:warm_beach" 56 | } 57 | }, 58 | "deep_frozen_ocean": { 59 | "trigger": "minecraft:location", 60 | "conditions": { 61 | "biome": "minecraft:deep_frozen_ocean" 62 | } 63 | }, 64 | "frozen_ocean": { 65 | "trigger": "minecraft:location", 66 | "conditions": { 67 | "biome": "minecraft:frozen_ocean" 68 | } 69 | }, 70 | "cold_ocean": { 71 | "trigger": "minecraft:location", 72 | "conditions": { 73 | "biome": "minecraft:cold_ocean" 74 | } 75 | }, 76 | "deep_cold_ocean": { 77 | "trigger": "minecraft:location", 78 | "conditions": { 79 | "biome": "minecraft:deep_cold_ocean" 80 | } 81 | }, 82 | "lukewarm_ocean": { 83 | "trigger": "minecraft:location", 84 | "conditions": { 85 | "biome": "minecraft:lukewarm_ocean" 86 | } 87 | }, 88 | "deep_lukewarm_ocean": { 89 | "trigger": "minecraft:location", 90 | "conditions": { 91 | "biome": "minecraft:deep_lukewarm_ocean" 92 | } 93 | }, 94 | "warm_ocean": { 95 | "trigger": "minecraft:location", 96 | "conditions": { 97 | "biome": "minecraft:warm_ocean" 98 | } 99 | }, 100 | "deep_warm_ocean": { 101 | "trigger": "minecraft:location", 102 | "conditions": { 103 | "biome": "minecraft:deep_warm_ocean" 104 | } 105 | }, 106 | "river": { 107 | "trigger": "minecraft:location", 108 | "conditions": { 109 | "biome": "minecraft:river" 110 | } 111 | }, 112 | "lukewarm_river": { 113 | "trigger": "minecraft:location", 114 | "conditions": { 115 | "biome": "minecraft:lukewarm_river" 116 | } 117 | } 118 | } 119 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/desert_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:ruined_portal" 5 | ], 6 | "spawners": { 7 | "monster": [ 8 | { 9 | "type": "minecraft:spider", 10 | "weight": 100, 11 | "minCount": 4, 12 | "maxCount": 4 13 | }, 14 | { 15 | "type": "minecraft:zombie", 16 | "weight": 95, 17 | "minCount": 4, 18 | "maxCount": 4 19 | }, 20 | { 21 | "type": "minecraft:zombie_villager", 22 | "weight": 5, 23 | "minCount": 1, 24 | "maxCount": 1 25 | }, 26 | { 27 | "type": "minecraft:skeleton", 28 | "weight": 100, 29 | "minCount": 4, 30 | "maxCount": 4 31 | }, 32 | { 33 | "type": "minecraft:creeper", 34 | "weight": 100, 35 | "minCount": 4, 36 | "maxCount": 4 37 | }, 38 | { 39 | "type": "minecraft:slime", 40 | "weight": 100, 41 | "minCount": 4, 42 | "maxCount": 4 43 | }, 44 | { 45 | "type": "minecraft:enderman", 46 | "weight": 10, 47 | "minCount": 1, 48 | "maxCount": 4 49 | }, 50 | { 51 | "type": "minecraft:witch", 52 | "weight": 5, 53 | "minCount": 1, 54 | "maxCount": 1 55 | }, 56 | { 57 | "type": "minecraft:drowned", 58 | "weight": 100, 59 | "minCount": 1, 60 | "maxCount": 1 61 | } 62 | ], 63 | "creature": [], 64 | "ambient": [ 65 | { 66 | "type": "minecraft:bat", 67 | "weight": 10, 68 | "minCount": 8, 69 | "maxCount": 8 70 | } 71 | ], 72 | "water_creature": [ 73 | { 74 | "type": "minecraft:squid", 75 | "weight": 2, 76 | "minCount": 1, 77 | "maxCount": 4 78 | } 79 | ], 80 | "water_ambient": [ 81 | { 82 | "type": "minecraft:salmon", 83 | "weight": 5, 84 | "minCount": 1, 85 | "maxCount": 5 86 | } 87 | ], 88 | "misc": [] 89 | }, 90 | "spawn_costs": {}, 91 | "surface_builder": "minecraft:desert", 92 | "carvers": { 93 | "air": [ 94 | "minecraft:cave", 95 | "minecraft:canyon" 96 | ] 97 | }, 98 | "features": [ 99 | [], 100 | [ 101 | "minecraft:lake_water", 102 | "minecraft:lake_lava" 103 | ], 104 | [], 105 | [ 106 | "minecraft:monster_room" 107 | ], 108 | [], 109 | [], 110 | [ 111 | "minecraft:ore_dirt", 112 | "minecraft:ore_gravel", 113 | "minecraft:ore_granite", 114 | "minecraft:ore_diorite", 115 | "minecraft:ore_andesite", 116 | "minecraft:ore_coal", 117 | "minecraft:ore_iron", 118 | "minecraft:ore_gold", 119 | "minecraft:ore_redstone", 120 | "minecraft:ore_diamond", 121 | "minecraft:ore_lapis", 122 | "modern_beta:grass_beach" 123 | ], 124 | [], 125 | [ 126 | "minecraft:trees_water", 127 | "minecraft:flower_default", 128 | "minecraft:patch_grass_badlands", 129 | "minecraft:brown_mushroom_normal", 130 | "minecraft:red_mushroom_normal", 131 | "minecraft:patch_sugar_cane", 132 | "minecraft:patch_pumpkin", 133 | "minecraft:spring_water", 134 | "minecraft:spring_lava", 135 | "minecraft:seagrass_river" 136 | ], 137 | [ 138 | "minecraft:freeze_top_layer" 139 | ] 140 | ], 141 | "scale": 0.0, 142 | "temperature": 2.0, 143 | "downfall": 0.0, 144 | "effects": { 145 | "mood_sound": { 146 | "sound": "minecraft:ambient.cave", 147 | "tick_delay": 6000, 148 | "block_search_extent": 8, 149 | "offset": 2.0 150 | }, 151 | "sky_color": 7254527, 152 | "fog_color": 12638463, 153 | "water_color": 4159204, 154 | "water_fog_color": 329011 155 | }, 156 | "precipitation": "rain", 157 | "category": "river", 158 | "depth": -0.5 159 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/sky.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:stronghold" 4 | ], 5 | "spawners": { 6 | "monster": [ 7 | { 8 | "type": "minecraft:spider", 9 | "weight": 100, 10 | "minCount": 4, 11 | "maxCount": 4 12 | }, 13 | { 14 | "type": "minecraft:zombie", 15 | "weight": 95, 16 | "minCount": 4, 17 | "maxCount": 4 18 | }, 19 | { 20 | "type": "minecraft:zombie_villager", 21 | "weight": 5, 22 | "minCount": 1, 23 | "maxCount": 1 24 | }, 25 | { 26 | "type": "minecraft:skeleton", 27 | "weight": 100, 28 | "minCount": 4, 29 | "maxCount": 4 30 | }, 31 | { 32 | "type": "minecraft:creeper", 33 | "weight": 100, 34 | "minCount": 4, 35 | "maxCount": 4 36 | }, 37 | { 38 | "type": "minecraft:enderman", 39 | "weight": 10, 40 | "minCount": 1, 41 | "maxCount": 4 42 | }, 43 | { 44 | "type": "minecraft:witch", 45 | "weight": 5, 46 | "minCount": 1, 47 | "maxCount": 1 48 | }, 49 | { 50 | "type": "minecraft:evoker", 51 | "weight": 25, 52 | "minCount": 1, 53 | "maxCount": 1 54 | } 55 | ], 56 | "creature": [ 57 | { 58 | "type": "minecraft:sheep", 59 | "weight": 12, 60 | "minCount": 4, 61 | "maxCount": 4 62 | }, 63 | { 64 | "type": "minecraft:pig", 65 | "weight": 10, 66 | "minCount": 4, 67 | "maxCount": 4 68 | }, 69 | { 70 | "type": "minecraft:chicken", 71 | "weight": 10, 72 | "minCount": 4, 73 | "maxCount": 4 74 | }, 75 | { 76 | "type": "minecraft:cow", 77 | "weight": 8, 78 | "minCount": 4, 79 | "maxCount": 4 80 | }, 81 | { 82 | "type": "minecraft:wolf", 83 | "weight": 8, 84 | "minCount": 4, 85 | "maxCount": 4 86 | } 87 | ], 88 | "ambient": [ 89 | { 90 | "type": "minecraft:bat", 91 | "weight": 10, 92 | "minCount": 8, 93 | "maxCount": 8 94 | } 95 | ], 96 | "water_creature": [], 97 | "water_ambient": [], 98 | "misc": [] 99 | }, 100 | "spawn_costs": {}, 101 | "surface_builder": "minecraft:grass", 102 | "carvers": { 103 | "air": [ 104 | "minecraft:cave" 105 | ] 106 | }, 107 | "features": [ 108 | [], 109 | [ 110 | "minecraft:lake_water", 111 | "minecraft:lake_lava" 112 | ], 113 | [], 114 | [ 115 | "minecraft:monster_room" 116 | ], 117 | [], 118 | [], 119 | [ 120 | "minecraft:ore_dirt", 121 | "minecraft:ore_gravel", 122 | "minecraft:ore_coal", 123 | "minecraft:ore_iron", 124 | "minecraft:ore_gold", 125 | "minecraft:ore_redstone", 126 | "minecraft:ore_diamond", 127 | "minecraft:ore_lapis" 128 | ], 129 | [], 130 | [ 131 | "minecraft:trees_water", 132 | "minecraft:flower_default", 133 | "minecraft:brown_mushroom_normal", 134 | "minecraft:red_mushroom_normal", 135 | "minecraft:patch_sugar_cane", 136 | "minecraft:patch_pumpkin", 137 | "minecraft:spring_water", 138 | "minecraft:spring_lava" 139 | ], 140 | [ 141 | "minecraft:freeze_top_layer" 142 | ] 143 | ], 144 | "scale": 0.5, 145 | "temperature": 0.15, 146 | "downfall": 0.5, 147 | "effects": { 148 | "mood_sound": { 149 | "sound": "minecraft:ambient.cave", 150 | "tick_delay": 6000, 151 | "block_search_extent": 8, 152 | "offset": 2.0 153 | }, 154 | "grass_color": 10532470, 155 | "foliage_color": 8889171, 156 | "sky_color": 12632319, 157 | "fog_color": 9605819, 158 | "water_color": 4159204, 159 | "water_fog_color": 329011 160 | }, 161 | "precipitation": "rain", 162 | "category": "taiga", 163 | "depth": 0.37 164 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/river.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:ruined_portal" 5 | ], 6 | "spawners": { 7 | "monster": [ 8 | { 9 | "type": "minecraft:spider", 10 | "weight": 100, 11 | "minCount": 4, 12 | "maxCount": 4 13 | }, 14 | { 15 | "type": "minecraft:zombie", 16 | "weight": 95, 17 | "minCount": 4, 18 | "maxCount": 4 19 | }, 20 | { 21 | "type": "minecraft:zombie_villager", 22 | "weight": 5, 23 | "minCount": 1, 24 | "maxCount": 1 25 | }, 26 | { 27 | "type": "minecraft:skeleton", 28 | "weight": 100, 29 | "minCount": 4, 30 | "maxCount": 4 31 | }, 32 | { 33 | "type": "minecraft:creeper", 34 | "weight": 100, 35 | "minCount": 4, 36 | "maxCount": 4 37 | }, 38 | { 39 | "type": "minecraft:slime", 40 | "weight": 100, 41 | "minCount": 4, 42 | "maxCount": 4 43 | }, 44 | { 45 | "type": "minecraft:enderman", 46 | "weight": 10, 47 | "minCount": 1, 48 | "maxCount": 4 49 | }, 50 | { 51 | "type": "minecraft:witch", 52 | "weight": 5, 53 | "minCount": 1, 54 | "maxCount": 1 55 | }, 56 | { 57 | "type": "minecraft:drowned", 58 | "weight": 100, 59 | "minCount": 1, 60 | "maxCount": 1 61 | } 62 | ], 63 | "creature": [], 64 | "ambient": [ 65 | { 66 | "type": "minecraft:bat", 67 | "weight": 10, 68 | "minCount": 8, 69 | "maxCount": 8 70 | } 71 | ], 72 | "water_creature": [ 73 | { 74 | "type": "minecraft:squid", 75 | "weight": 2, 76 | "minCount": 1, 77 | "maxCount": 4 78 | } 79 | ], 80 | "water_ambient": [ 81 | { 82 | "type": "minecraft:salmon", 83 | "weight": 5, 84 | "minCount": 1, 85 | "maxCount": 5 86 | } 87 | ], 88 | "misc": [] 89 | }, 90 | "spawn_costs": {}, 91 | "surface_builder": "modern_beta:beach", 92 | "carvers": { 93 | "air": [ 94 | "minecraft:cave", 95 | "minecraft:canyon" 96 | ] 97 | }, 98 | "features": [ 99 | [], 100 | [ 101 | "minecraft:lake_water", 102 | "minecraft:lake_lava" 103 | ], 104 | [], 105 | [ 106 | "minecraft:monster_room" 107 | ], 108 | [], 109 | [], 110 | [ 111 | "minecraft:ore_dirt", 112 | "minecraft:ore_gravel", 113 | "minecraft:ore_granite", 114 | "minecraft:ore_diorite", 115 | "minecraft:ore_andesite", 116 | "minecraft:ore_coal", 117 | "minecraft:ore_iron", 118 | "minecraft:ore_gold", 119 | "minecraft:ore_redstone", 120 | "minecraft:ore_diamond", 121 | "minecraft:ore_lapis", 122 | "modern_beta:sand_beach", 123 | "modern_beta:ore_clay", 124 | "modern_beta:patch_sandstone", 125 | "modern_beta:patch_sandstone_extra", 126 | "modern_beta:patch_grass_block" 127 | ], 128 | [], 129 | [ 130 | "minecraft:trees_water", 131 | "minecraft:flower_default", 132 | "minecraft:patch_grass_badlands", 133 | "minecraft:brown_mushroom_normal", 134 | "minecraft:red_mushroom_normal", 135 | "minecraft:patch_sugar_cane", 136 | "minecraft:patch_pumpkin", 137 | "minecraft:spring_water", 138 | "minecraft:spring_lava", 139 | "minecraft:seagrass_river" 140 | ], 141 | [ 142 | "minecraft:freeze_top_layer" 143 | ] 144 | ], 145 | "scale": 0.0, 146 | "temperature": 0.7, 147 | "downfall": 0.8, 148 | "effects": { 149 | "mood_sound": { 150 | "sound": "minecraft:ambient.cave", 151 | "tick_delay": 6000, 152 | "block_search_extent": 8, 153 | "offset": 2.0 154 | }, 155 | "sky_color": 9158143, 156 | "fog_color": 12638463, 157 | "water_color": 4159204, 158 | "water_fog_color": 329011 159 | }, 160 | "precipitation": "rain", 161 | "category": "river", 162 | "depth": -0.5 163 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/cold_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:ruined_portal" 5 | ], 6 | "spawners": { 7 | "monster": [ 8 | { 9 | "type": "minecraft:spider", 10 | "weight": 100, 11 | "minCount": 4, 12 | "maxCount": 4 13 | }, 14 | { 15 | "type": "minecraft:zombie", 16 | "weight": 95, 17 | "minCount": 4, 18 | "maxCount": 4 19 | }, 20 | { 21 | "type": "minecraft:zombie_villager", 22 | "weight": 5, 23 | "minCount": 1, 24 | "maxCount": 1 25 | }, 26 | { 27 | "type": "minecraft:skeleton", 28 | "weight": 100, 29 | "minCount": 4, 30 | "maxCount": 4 31 | }, 32 | { 33 | "type": "minecraft:creeper", 34 | "weight": 100, 35 | "minCount": 4, 36 | "maxCount": 4 37 | }, 38 | { 39 | "type": "minecraft:slime", 40 | "weight": 100, 41 | "minCount": 4, 42 | "maxCount": 4 43 | }, 44 | { 45 | "type": "minecraft:enderman", 46 | "weight": 10, 47 | "minCount": 1, 48 | "maxCount": 4 49 | }, 50 | { 51 | "type": "minecraft:witch", 52 | "weight": 5, 53 | "minCount": 1, 54 | "maxCount": 1 55 | }, 56 | { 57 | "type": "minecraft:drowned", 58 | "weight": 100, 59 | "minCount": 1, 60 | "maxCount": 1 61 | } 62 | ], 63 | "creature": [], 64 | "ambient": [ 65 | { 66 | "type": "minecraft:bat", 67 | "weight": 10, 68 | "minCount": 8, 69 | "maxCount": 8 70 | } 71 | ], 72 | "water_creature": [ 73 | { 74 | "type": "minecraft:squid", 75 | "weight": 2, 76 | "minCount": 1, 77 | "maxCount": 4 78 | } 79 | ], 80 | "water_ambient": [ 81 | { 82 | "type": "minecraft:salmon", 83 | "weight": 5, 84 | "minCount": 1, 85 | "maxCount": 5 86 | } 87 | ], 88 | "misc": [] 89 | }, 90 | "spawn_costs": {}, 91 | "surface_builder": "modern_beta:beach", 92 | "carvers": { 93 | "air": [ 94 | "minecraft:cave", 95 | "minecraft:canyon" 96 | ] 97 | }, 98 | "features": [ 99 | [], 100 | [ 101 | "minecraft:lake_water", 102 | "minecraft:lake_lava" 103 | ], 104 | [], 105 | [ 106 | "minecraft:monster_room" 107 | ], 108 | [], 109 | [], 110 | [ 111 | "minecraft:ore_dirt", 112 | "minecraft:ore_gravel", 113 | "minecraft:ore_granite", 114 | "minecraft:ore_diorite", 115 | "minecraft:ore_andesite", 116 | "minecraft:ore_coal", 117 | "minecraft:ore_iron", 118 | "minecraft:ore_gold", 119 | "minecraft:ore_redstone", 120 | "minecraft:ore_diamond", 121 | "minecraft:ore_lapis", 122 | "modern_beta:sand_beach", 123 | "modern_beta:ore_clay", 124 | "modern_beta:patch_sandstone", 125 | "modern_beta:patch_sandstone_extra", 126 | "modern_beta:patch_grass_block" 127 | ], 128 | [], 129 | [ 130 | "minecraft:trees_water", 131 | "minecraft:flower_default", 132 | "minecraft:patch_grass_badlands", 133 | "minecraft:brown_mushroom_normal", 134 | "minecraft:red_mushroom_normal", 135 | "minecraft:patch_sugar_cane", 136 | "minecraft:patch_pumpkin", 137 | "minecraft:spring_water", 138 | "minecraft:spring_lava", 139 | "minecraft:seagrass_river" 140 | ], 141 | [ 142 | "minecraft:freeze_top_layer" 143 | ] 144 | ], 145 | "scale": 0.0, 146 | "temperature": 0.2, 147 | "downfall": 0.3, 148 | "effects": { 149 | "mood_sound": { 150 | "sound": "minecraft:ambient.cave", 151 | "tick_delay": 6000, 152 | "block_search_extent": 8, 153 | "offset": 2.0 154 | }, 155 | "sky_color": 8364543, 156 | "fog_color": 12638463, 157 | "water_color": 4020182, 158 | "water_fog_color": 329011 159 | }, 160 | "precipitation": "rain", 161 | "category": "river", 162 | "depth": -0.5 163 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/frozen_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "scale": 0.0, 3 | "effects": { 4 | "mood_sound": { 5 | "sound": "minecraft:ambient.cave", 6 | "tick_delay": 6000, 7 | "block_search_extent": 8, 8 | "offset": 2.0 9 | }, 10 | "sky_color": 8364543, 11 | "fog_color": 12638463, 12 | "water_color": 3750089, 13 | "water_fog_color": 329011 14 | }, 15 | "surface_builder": "modern_beta:beach", 16 | "carvers": { 17 | "air": [ 18 | "minecraft:cave", 19 | "minecraft:canyon" 20 | ] 21 | }, 22 | "features": [ 23 | [], 24 | [ 25 | "minecraft:lake_water", 26 | "minecraft:lake_lava" 27 | ], 28 | [], 29 | [ 30 | "minecraft:monster_room" 31 | ], 32 | [], 33 | [], 34 | [ 35 | "minecraft:ore_dirt", 36 | "minecraft:ore_gravel", 37 | "minecraft:ore_granite", 38 | "minecraft:ore_diorite", 39 | "minecraft:ore_andesite", 40 | "minecraft:ore_coal", 41 | "minecraft:ore_iron", 42 | "minecraft:ore_gold", 43 | "minecraft:ore_redstone", 44 | "minecraft:ore_diamond", 45 | "minecraft:ore_lapis", 46 | "modern_beta:sand_beach", 47 | "modern_beta:ore_clay", 48 | "modern_beta:patch_sandstone", 49 | "modern_beta:patch_sandstone_extra", 50 | "modern_beta:patch_grass_block" 51 | ], 52 | [], 53 | [ 54 | "minecraft:trees_water", 55 | "minecraft:flower_default", 56 | "minecraft:patch_grass_badlands", 57 | "minecraft:brown_mushroom_normal", 58 | "minecraft:red_mushroom_normal", 59 | "minecraft:patch_sugar_cane", 60 | "minecraft:patch_pumpkin", 61 | "minecraft:spring_water", 62 | "minecraft:spring_lava" 63 | ], 64 | [ 65 | "minecraft:freeze_top_layer" 66 | ] 67 | ], 68 | "starts": [ 69 | "minecraft:mineshaft", 70 | "minecraft:ruined_portal" 71 | ], 72 | "spawners": { 73 | "monster": [ 74 | { 75 | "type": "minecraft:spider", 76 | "weight": 100, 77 | "minCount": 4, 78 | "maxCount": 4 79 | }, 80 | { 81 | "type": "minecraft:zombie", 82 | "weight": 95, 83 | "minCount": 4, 84 | "maxCount": 4 85 | }, 86 | { 87 | "type": "minecraft:zombie_villager", 88 | "weight": 5, 89 | "minCount": 1, 90 | "maxCount": 1 91 | }, 92 | { 93 | "type": "minecraft:skeleton", 94 | "weight": 100, 95 | "minCount": 4, 96 | "maxCount": 4 97 | }, 98 | { 99 | "type": "minecraft:creeper", 100 | "weight": 100, 101 | "minCount": 4, 102 | "maxCount": 4 103 | }, 104 | { 105 | "type": "minecraft:slime", 106 | "weight": 100, 107 | "minCount": 4, 108 | "maxCount": 4 109 | }, 110 | { 111 | "type": "minecraft:enderman", 112 | "weight": 10, 113 | "minCount": 1, 114 | "maxCount": 4 115 | }, 116 | { 117 | "type": "minecraft:witch", 118 | "weight": 5, 119 | "minCount": 1, 120 | "maxCount": 1 121 | }, 122 | { 123 | "type": "minecraft:drowned", 124 | "weight": 1, 125 | "minCount": 1, 126 | "maxCount": 1 127 | } 128 | ], 129 | "creature": [], 130 | "ambient": [ 131 | { 132 | "type": "minecraft:bat", 133 | "weight": 10, 134 | "minCount": 8, 135 | "maxCount": 8 136 | } 137 | ], 138 | "water_creature": [ 139 | { 140 | "type": "minecraft:squid", 141 | "weight": 2, 142 | "minCount": 1, 143 | "maxCount": 4 144 | } 145 | ], 146 | "water_ambient": [ 147 | { 148 | "type": "minecraft:salmon", 149 | "weight": 5, 150 | "minCount": 1, 151 | "maxCount": 5 152 | } 153 | ], 154 | "misc": [] 155 | }, 156 | "spawn_costs": {}, 157 | "player_spawn_friendly": false, 158 | "precipitation": "snow", 159 | "temperature": 0.0, 160 | "downfall": 0.5, 161 | "category": "river", 162 | "depth": -0.5 163 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/lukewarm_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:ruined_portal" 5 | ], 6 | "spawners": { 7 | "monster": [ 8 | { 9 | "type": "minecraft:spider", 10 | "weight": 100, 11 | "minCount": 4, 12 | "maxCount": 4 13 | }, 14 | { 15 | "type": "minecraft:zombie", 16 | "weight": 95, 17 | "minCount": 4, 18 | "maxCount": 4 19 | }, 20 | { 21 | "type": "minecraft:zombie_villager", 22 | "weight": 5, 23 | "minCount": 1, 24 | "maxCount": 1 25 | }, 26 | { 27 | "type": "minecraft:skeleton", 28 | "weight": 100, 29 | "minCount": 4, 30 | "maxCount": 4 31 | }, 32 | { 33 | "type": "minecraft:creeper", 34 | "weight": 100, 35 | "minCount": 4, 36 | "maxCount": 4 37 | }, 38 | { 39 | "type": "minecraft:slime", 40 | "weight": 100, 41 | "minCount": 4, 42 | "maxCount": 4 43 | }, 44 | { 45 | "type": "minecraft:enderman", 46 | "weight": 10, 47 | "minCount": 1, 48 | "maxCount": 4 49 | }, 50 | { 51 | "type": "minecraft:witch", 52 | "weight": 5, 53 | "minCount": 1, 54 | "maxCount": 1 55 | }, 56 | { 57 | "type": "minecraft:drowned", 58 | "weight": 100, 59 | "minCount": 1, 60 | "maxCount": 1 61 | } 62 | ], 63 | "creature": [], 64 | "ambient": [ 65 | { 66 | "type": "minecraft:bat", 67 | "weight": 10, 68 | "minCount": 8, 69 | "maxCount": 8 70 | } 71 | ], 72 | "water_creature": [ 73 | { 74 | "type": "minecraft:squid", 75 | "weight": 2, 76 | "minCount": 1, 77 | "maxCount": 4 78 | } 79 | ], 80 | "water_ambient": [ 81 | { 82 | "type": "minecraft:salmon", 83 | "weight": 5, 84 | "minCount": 1, 85 | "maxCount": 5 86 | } 87 | ], 88 | "misc": [] 89 | }, 90 | "spawn_costs": {}, 91 | "surface_builder": "modern_beta:beach", 92 | "carvers": { 93 | "air": [ 94 | "minecraft:cave", 95 | "minecraft:canyon" 96 | ] 97 | }, 98 | "features": [ 99 | [], 100 | [ 101 | "minecraft:lake_water", 102 | "minecraft:lake_lava" 103 | ], 104 | [], 105 | [ 106 | "minecraft:monster_room" 107 | ], 108 | [], 109 | [], 110 | [ 111 | "minecraft:ore_dirt", 112 | "minecraft:ore_gravel", 113 | "minecraft:ore_granite", 114 | "minecraft:ore_diorite", 115 | "minecraft:ore_andesite", 116 | "minecraft:ore_coal", 117 | "minecraft:ore_iron", 118 | "minecraft:ore_gold", 119 | "minecraft:ore_redstone", 120 | "minecraft:ore_diamond", 121 | "minecraft:ore_lapis", 122 | "modern_beta:sand_beach", 123 | "modern_beta:ore_clay", 124 | "modern_beta:patch_sandstone", 125 | "modern_beta:patch_sandstone_extra", 126 | "modern_beta:patch_grass_block" 127 | ], 128 | [], 129 | [ 130 | "minecraft:trees_water", 131 | "minecraft:flower_default", 132 | "minecraft:patch_grass_badlands", 133 | "minecraft:brown_mushroom_normal", 134 | "minecraft:red_mushroom_normal", 135 | "minecraft:patch_sugar_cane", 136 | "minecraft:patch_pumpkin", 137 | "minecraft:spring_water", 138 | "minecraft:spring_lava", 139 | "minecraft:seagrass_river" 140 | ], 141 | [ 142 | "minecraft:freeze_top_layer" 143 | ] 144 | ], 145 | "scale": 0.0, 146 | "temperature": 0.9, 147 | "downfall": 0.85, 148 | "effects": { 149 | "mood_sound": { 150 | "sound": "minecraft:ambient.cave", 151 | "tick_delay": 6000, 152 | "block_search_extent": 8, 153 | "offset": 2.0 154 | }, 155 | "sky_color": 9158143, 156 | "fog_color": 12638463, 157 | "water_color": 4566514, 158 | "water_fog_color": 267827 159 | }, 160 | "precipitation": "rain", 161 | "category": "river", 162 | "depth": -0.5 163 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/desert.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:village_desert", 4 | "minecraft:pillager_outpost", 5 | "minecraft:desert_pyramid", 6 | "minecraft:mineshaft", 7 | "minecraft:stronghold", 8 | "minecraft:ruined_portal_desert" 9 | ], 10 | "spawners": { 11 | "monster": [ 12 | { 13 | "type": "minecraft:spider", 14 | "weight": 100, 15 | "minCount": 4, 16 | "maxCount": 4 17 | }, 18 | { 19 | "type": "minecraft:zombie", 20 | "weight": 19, 21 | "minCount": 4, 22 | "maxCount": 4 23 | }, 24 | { 25 | "type": "minecraft:zombie_villager", 26 | "weight": 1, 27 | "minCount": 1, 28 | "maxCount": 1 29 | }, 30 | { 31 | "type": "minecraft:skeleton", 32 | "weight": 100, 33 | "minCount": 4, 34 | "maxCount": 4 35 | }, 36 | { 37 | "type": "minecraft:creeper", 38 | "weight": 100, 39 | "minCount": 4, 40 | "maxCount": 4 41 | }, 42 | { 43 | "type": "minecraft:slime", 44 | "weight": 100, 45 | "minCount": 4, 46 | "maxCount": 4 47 | }, 48 | { 49 | "type": "minecraft:enderman", 50 | "weight": 10, 51 | "minCount": 1, 52 | "maxCount": 4 53 | }, 54 | { 55 | "type": "minecraft:witch", 56 | "weight": 5, 57 | "minCount": 1, 58 | "maxCount": 1 59 | }, 60 | { 61 | "type": "minecraft:husk", 62 | "weight": 80, 63 | "minCount": 4, 64 | "maxCount": 4 65 | } 66 | ], 67 | "creature": [ 68 | { 69 | "type": "minecraft:rabbit", 70 | "weight": 4, 71 | "minCount": 2, 72 | "maxCount": 3 73 | } 74 | ], 75 | "ambient": [ 76 | { 77 | "type": "minecraft:bat", 78 | "weight": 10, 79 | "minCount": 8, 80 | "maxCount": 8 81 | } 82 | ], 83 | "water_creature": [ 84 | { 85 | "type": "minecraft:squid", 86 | "weight": 10, 87 | "minCount": 4, 88 | "maxCount": 4 89 | } 90 | ], 91 | "water_ambient": [], 92 | "misc": [] 93 | }, 94 | "spawn_costs": {}, 95 | "surface_builder": "minecraft:desert", 96 | "carvers": { 97 | "air": [ 98 | "minecraft:cave", 99 | "minecraft:canyon" 100 | ] 101 | }, 102 | "features": [ 103 | [], 104 | [ 105 | "minecraft:lake_lava" 106 | ], 107 | [], 108 | [ 109 | "minecraft:fossil", 110 | "minecraft:monster_room" 111 | ], 112 | [ 113 | "minecraft:desert_well" 114 | ], 115 | [], 116 | [ 117 | "modern_beta:ore_dirt", 118 | "modern_beta:ore_gravel", 119 | "minecraft:ore_granite", 120 | "minecraft:ore_diorite", 121 | "minecraft:ore_andesite", 122 | "minecraft:ore_coal", 123 | "minecraft:ore_iron", 124 | "minecraft:ore_gold", 125 | "minecraft:ore_redstone", 126 | "minecraft:ore_diamond", 127 | "minecraft:ore_lapis", 128 | "modern_beta:sand_beach", 129 | "modern_beta:patch_sand_desert", 130 | "modern_beta:patch_grass_block" 131 | ], 132 | [], 133 | [ 134 | "minecraft:flower_default", 135 | "minecraft:patch_grass_badlands", 136 | "minecraft:patch_dead_bush_2", 137 | "minecraft:brown_mushroom_normal", 138 | "minecraft:red_mushroom_normal", 139 | "minecraft:patch_sugar_cane_desert", 140 | "minecraft:patch_pumpkin", 141 | "minecraft:patch_cactus_desert", 142 | "minecraft:spring_water", 143 | "minecraft:spring_lava" 144 | ], 145 | [ 146 | "minecraft:freeze_top_layer" 147 | ] 148 | ], 149 | "scale": 0.2, 150 | "temperature": 2.0, 151 | "downfall": 0.0, 152 | "effects": { 153 | "mood_sound": { 154 | "sound": "minecraft:ambient.cave", 155 | "tick_delay": 6000, 156 | "block_search_extent": 8, 157 | "offset": 2.0 158 | }, 159 | "sky_color": 7254527, 160 | "fog_color": 12638463, 161 | "water_color": 4159204, 162 | "water_fog_color": 329011 163 | }, 164 | "precipitation": "none", 165 | "category": "desert", 166 | "depth": 0.3 167 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/ice_spikes.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:stronghold", 5 | "minecraft:ruined_portal" 6 | ], 7 | "spawners": { 8 | "monster": [ 9 | { 10 | "type": "minecraft:spider", 11 | "weight": 100, 12 | "minCount": 4, 13 | "maxCount": 4 14 | }, 15 | { 16 | "type": "minecraft:zombie", 17 | "weight": 95, 18 | "minCount": 4, 19 | "maxCount": 4 20 | }, 21 | { 22 | "type": "minecraft:zombie_villager", 23 | "weight": 5, 24 | "minCount": 1, 25 | "maxCount": 1 26 | }, 27 | { 28 | "type": "minecraft:skeleton", 29 | "weight": 20, 30 | "minCount": 4, 31 | "maxCount": 4 32 | }, 33 | { 34 | "type": "minecraft:creeper", 35 | "weight": 100, 36 | "minCount": 4, 37 | "maxCount": 4 38 | }, 39 | { 40 | "type": "minecraft:slime", 41 | "weight": 100, 42 | "minCount": 4, 43 | "maxCount": 4 44 | }, 45 | { 46 | "type": "minecraft:enderman", 47 | "weight": 10, 48 | "minCount": 1, 49 | "maxCount": 4 50 | }, 51 | { 52 | "type": "minecraft:witch", 53 | "weight": 5, 54 | "minCount": 1, 55 | "maxCount": 1 56 | }, 57 | { 58 | "type": "minecraft:stray", 59 | "weight": 80, 60 | "minCount": 4, 61 | "maxCount": 4 62 | } 63 | ], 64 | "creature": [ 65 | { 66 | "type": "minecraft:rabbit", 67 | "weight": 10, 68 | "minCount": 2, 69 | "maxCount": 3 70 | }, 71 | { 72 | "type": "minecraft:polar_bear", 73 | "weight": 1, 74 | "minCount": 1, 75 | "maxCount": 2 76 | } 77 | ], 78 | "ambient": [ 79 | { 80 | "type": "minecraft:bat", 81 | "weight": 10, 82 | "minCount": 8, 83 | "maxCount": 8 84 | } 85 | ], 86 | "water_creature": [ 87 | { 88 | "type": "minecraft:squid", 89 | "weight": 10, 90 | "minCount": 4, 91 | "maxCount": 4 92 | } 93 | ], 94 | "water_ambient": [], 95 | "misc": [] 96 | }, 97 | "parent": "snowy_tundra", 98 | "spawn_costs": {}, 99 | "surface_builder": "minecraft:ice_spikes", 100 | "carvers": { 101 | "air": [ 102 | "minecraft:cave", 103 | "minecraft:canyon" 104 | ] 105 | }, 106 | "features": [ 107 | [], 108 | [ 109 | "minecraft:lake_water", 110 | "minecraft:lake_lava" 111 | ], 112 | [], 113 | [ 114 | "minecraft:monster_room" 115 | ], 116 | [ 117 | "minecraft:ice_spike", 118 | "minecraft:ice_patch" 119 | ], 120 | [], 121 | [ 122 | "modern_beta:ore_dirt", 123 | "modern_beta:ore_gravel", 124 | "minecraft:ore_granite", 125 | "minecraft:ore_diorite", 126 | "minecraft:ore_andesite", 127 | "minecraft:ore_coal", 128 | "minecraft:ore_iron", 129 | "minecraft:ore_gold", 130 | "minecraft:ore_redstone", 131 | "minecraft:ore_diamond", 132 | "minecraft:ore_lapis", 133 | "modern_beta:sand_beach", 134 | "modern_beta:ore_clay" 135 | ], 136 | [], 137 | [ 138 | "minecraft:spruce_snowy", 139 | "minecraft:flower_default", 140 | "minecraft:patch_grass_badlands", 141 | "minecraft:brown_mushroom_normal", 142 | "minecraft:red_mushroom_normal", 143 | "minecraft:patch_sugar_cane", 144 | "minecraft:patch_pumpkin", 145 | "minecraft:spring_water", 146 | "minecraft:spring_lava" 147 | ], 148 | [ 149 | "minecraft:freeze_top_layer" 150 | ] 151 | ], 152 | "scale": 0.2, 153 | "temperature": 0.0, 154 | "downfall": 0.5, 155 | "effects": { 156 | "mood_sound": { 157 | "sound": "minecraft:ambient.cave", 158 | "tick_delay": 6000, 159 | "block_search_extent": 8, 160 | "offset": 2.0 161 | }, 162 | "sky_color": 8625919, 163 | "fog_color": 12638463, 164 | "water_color": 4159204, 165 | "water_fog_color": 329011 166 | }, 167 | "precipitation": "snow", 168 | "category": "icy", 169 | "depth": 0.37 170 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/snowy_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:buried_treasure", 5 | "minecraft:shipwreck_beached", 6 | "minecraft:ruined_portal" 7 | ], 8 | "spawners": { 9 | "monster": [ 10 | { 11 | "type": "minecraft:spider", 12 | "weight": 100, 13 | "minCount": 4, 14 | "maxCount": 4 15 | }, 16 | { 17 | "type": "minecraft:zombie", 18 | "weight": 95, 19 | "minCount": 4, 20 | "maxCount": 4 21 | }, 22 | { 23 | "type": "minecraft:zombie_villager", 24 | "weight": 5, 25 | "minCount": 1, 26 | "maxCount": 1 27 | }, 28 | { 29 | "type": "minecraft:skeleton", 30 | "weight": 20, 31 | "minCount": 4, 32 | "maxCount": 4 33 | }, 34 | { 35 | "type": "minecraft:creeper", 36 | "weight": 100, 37 | "minCount": 4, 38 | "maxCount": 4 39 | }, 40 | { 41 | "type": "minecraft:slime", 42 | "weight": 100, 43 | "minCount": 4, 44 | "maxCount": 4 45 | }, 46 | { 47 | "type": "minecraft:enderman", 48 | "weight": 10, 49 | "minCount": 1, 50 | "maxCount": 4 51 | }, 52 | { 53 | "type": "minecraft:witch", 54 | "weight": 5, 55 | "minCount": 1, 56 | "maxCount": 1 57 | }, 58 | { 59 | "type": "minecraft:stray", 60 | "weight": 80, 61 | "minCount": 4, 62 | "maxCount": 4 63 | } 64 | ], 65 | "creature": [ 66 | { 67 | "type": "minecraft:rabbit", 68 | "weight": 10, 69 | "minCount": 2, 70 | "maxCount": 3 71 | }, 72 | { 73 | "type": "minecraft:polar_bear", 74 | "weight": 1, 75 | "minCount": 1, 76 | "maxCount": 2 77 | } 78 | ], 79 | "ambient": [ 80 | { 81 | "type": "minecraft:bat", 82 | "weight": 10, 83 | "minCount": 8, 84 | "maxCount": 8 85 | } 86 | ], 87 | "water_creature": [ 88 | { 89 | "type": "minecraft:squid", 90 | "weight": 10, 91 | "minCount": 4, 92 | "maxCount": 4 93 | } 94 | ], 95 | "water_ambient": [], 96 | "misc": [] 97 | }, 98 | "spawn_costs": {}, 99 | "surface_builder": "modern_beta:beach", 100 | "carvers": { 101 | "air": [ 102 | "minecraft:cave", 103 | "minecraft:canyon" 104 | ] 105 | }, 106 | "features": [ 107 | [], 108 | [ 109 | "minecraft:lake_water", 110 | "minecraft:lake_lava" 111 | ], 112 | [], 113 | [ 114 | "minecraft:monster_room" 115 | ], 116 | [], 117 | [], 118 | [ 119 | "modern_beta:ore_dirt", 120 | "modern_beta:ore_gravel", 121 | "minecraft:ore_granite", 122 | "minecraft:ore_diorite", 123 | "minecraft:ore_andesite", 124 | "minecraft:ore_coal", 125 | "minecraft:ore_iron", 126 | "minecraft:ore_gold", 127 | "minecraft:ore_redstone", 128 | "minecraft:ore_diamond", 129 | "minecraft:ore_lapis", 130 | "modern_beta:sand_beach", 131 | "modern_beta:ore_clay", 132 | "modern_beta:patch_sandstone", 133 | "modern_beta:patch_sandstone_extra", 134 | "modern_beta:patch_grass_block" 135 | ], 136 | [], 137 | [ 138 | "modern_beta:trees_snowy_taiga_beach", 139 | "modern_beta:trees_snowy_taiga_beach_extra", 140 | "minecraft:brown_mushroom_normal", 141 | "minecraft:red_mushroom_normal", 142 | "minecraft:patch_sugar_cane", 143 | "minecraft:patch_pumpkin", 144 | "minecraft:spring_water", 145 | "minecraft:spring_lava" 146 | ], 147 | [ 148 | "minecraft:freeze_top_layer" 149 | ] 150 | ], 151 | "scale": 0.1, 152 | "temperature": 0.0, 153 | "downfall": 0.5, 154 | "effects": { 155 | "mood_sound": { 156 | "sound": "minecraft:ambient.cave", 157 | "tick_delay": 6000, 158 | "block_search_extent": 8, 159 | "offset": 2.0 160 | }, 161 | "sky_color": 8625919, 162 | "fog_color": 12638463, 163 | "water_color": 3750089, 164 | "water_fog_color": 329011 165 | }, 166 | "precipitation": "snow", 167 | "category": "icy", 168 | "depth": 0.0 169 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/snowy_tundra.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:village_snowy", 4 | "minecraft:igloo", 5 | "minecraft:mineshaft", 6 | "minecraft:stronghold", 7 | "minecraft:pillager_outpost", 8 | "minecraft:ruined_portal" 9 | ], 10 | "spawners": { 11 | "monster": [ 12 | { 13 | "type": "minecraft:spider", 14 | "weight": 100, 15 | "minCount": 4, 16 | "maxCount": 4 17 | }, 18 | { 19 | "type": "minecraft:zombie", 20 | "weight": 95, 21 | "minCount": 4, 22 | "maxCount": 4 23 | }, 24 | { 25 | "type": "minecraft:zombie_villager", 26 | "weight": 5, 27 | "minCount": 1, 28 | "maxCount": 1 29 | }, 30 | { 31 | "type": "minecraft:skeleton", 32 | "weight": 20, 33 | "minCount": 4, 34 | "maxCount": 4 35 | }, 36 | { 37 | "type": "minecraft:creeper", 38 | "weight": 100, 39 | "minCount": 4, 40 | "maxCount": 4 41 | }, 42 | { 43 | "type": "minecraft:slime", 44 | "weight": 100, 45 | "minCount": 4, 46 | "maxCount": 4 47 | }, 48 | { 49 | "type": "minecraft:enderman", 50 | "weight": 10, 51 | "minCount": 1, 52 | "maxCount": 4 53 | }, 54 | { 55 | "type": "minecraft:witch", 56 | "weight": 5, 57 | "minCount": 1, 58 | "maxCount": 1 59 | }, 60 | { 61 | "type": "minecraft:stray", 62 | "weight": 80, 63 | "minCount": 4, 64 | "maxCount": 4 65 | } 66 | ], 67 | "creature": [ 68 | { 69 | "type": "minecraft:rabbit", 70 | "weight": 10, 71 | "minCount": 2, 72 | "maxCount": 3 73 | }, 74 | { 75 | "type": "minecraft:polar_bear", 76 | "weight": 1, 77 | "minCount": 1, 78 | "maxCount": 2 79 | } 80 | ], 81 | "ambient": [ 82 | { 83 | "type": "minecraft:bat", 84 | "weight": 10, 85 | "minCount": 8, 86 | "maxCount": 8 87 | } 88 | ], 89 | "water_creature": [ 90 | { 91 | "type": "minecraft:squid", 92 | "weight": 10, 93 | "minCount": 4, 94 | "maxCount": 4 95 | } 96 | ], 97 | "water_ambient": [], 98 | "misc": [] 99 | }, 100 | "spawn_costs": {}, 101 | "surface_builder": "modern_beta:beach", 102 | "carvers": { 103 | "air": [ 104 | "minecraft:cave", 105 | "minecraft:canyon" 106 | ] 107 | }, 108 | "features": [ 109 | [], 110 | [ 111 | "minecraft:lake_water", 112 | "minecraft:lake_lava" 113 | ], 114 | [], 115 | [ 116 | "minecraft:monster_room" 117 | ], 118 | [], 119 | [], 120 | [ 121 | "modern_beta:ore_dirt", 122 | "modern_beta:ore_gravel", 123 | "minecraft:ore_granite", 124 | "minecraft:ore_diorite", 125 | "minecraft:ore_andesite", 126 | "minecraft:ore_coal", 127 | "minecraft:ore_iron", 128 | "minecraft:ore_gold", 129 | "minecraft:ore_redstone", 130 | "minecraft:ore_diamond", 131 | "minecraft:ore_lapis", 132 | "modern_beta:sand_beach", 133 | "modern_beta:ore_clay", 134 | "modern_beta:patch_sandstone", 135 | "modern_beta:patch_sandstone_extra", 136 | "modern_beta:patch_grass_block" 137 | ], 138 | [], 139 | [ 140 | "minecraft:spruce_snowy", 141 | "minecraft:flower_default", 142 | "minecraft:brown_mushroom_normal", 143 | "minecraft:red_mushroom_normal", 144 | "minecraft:patch_sugar_cane", 145 | "minecraft:patch_pumpkin", 146 | "minecraft:spring_water", 147 | "minecraft:spring_lava" 148 | ], 149 | [ 150 | "minecraft:freeze_top_layer" 151 | ] 152 | ], 153 | "scale": 0.2, 154 | "temperature": 0.0, 155 | "downfall": 0.5, 156 | "effects": { 157 | "mood_sound": { 158 | "sound": "minecraft:ambient.cave", 159 | "tick_delay": 6000, 160 | "block_search_extent": 8, 161 | "offset": 2.0 162 | }, 163 | "sky_color": 8625919, 164 | "fog_color": 12638463, 165 | "water_color": 3750089, 166 | "water_fog_color": 329011 167 | }, 168 | "precipitation": "snow", 169 | "category": "icy", 170 | "depth": 0.3 171 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/deep_frozen_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:ocean_ruin_cold", 4 | "minecraft:monument", 5 | "minecraft:mineshaft", 6 | "minecraft:shipwreck", 7 | "minecraft:ruined_portal_ocean" 8 | ], 9 | "spawners": { 10 | "monster": [ 11 | { 12 | "type": "minecraft:spider", 13 | "weight": 100, 14 | "minCount": 4, 15 | "maxCount": 4 16 | }, 17 | { 18 | "type": "minecraft:zombie", 19 | "weight": 95, 20 | "minCount": 4, 21 | "maxCount": 4 22 | }, 23 | { 24 | "type": "minecraft:zombie_villager", 25 | "weight": 5, 26 | "minCount": 1, 27 | "maxCount": 1 28 | }, 29 | { 30 | "type": "minecraft:skeleton", 31 | "weight": 100, 32 | "minCount": 4, 33 | "maxCount": 4 34 | }, 35 | { 36 | "type": "minecraft:creeper", 37 | "weight": 100, 38 | "minCount": 4, 39 | "maxCount": 4 40 | }, 41 | { 42 | "type": "minecraft:slime", 43 | "weight": 100, 44 | "minCount": 4, 45 | "maxCount": 4 46 | }, 47 | { 48 | "type": "minecraft:enderman", 49 | "weight": 10, 50 | "minCount": 1, 51 | "maxCount": 4 52 | }, 53 | { 54 | "type": "minecraft:witch", 55 | "weight": 5, 56 | "minCount": 1, 57 | "maxCount": 1 58 | }, 59 | { 60 | "type": "minecraft:drowned", 61 | "weight": 5, 62 | "minCount": 1, 63 | "maxCount": 1 64 | } 65 | ], 66 | "creature": [ 67 | { 68 | "type": "minecraft:polar_bear", 69 | "weight": 1, 70 | "minCount": 1, 71 | "maxCount": 2 72 | } 73 | ], 74 | "ambient": [ 75 | { 76 | "type": "minecraft:bat", 77 | "weight": 10, 78 | "minCount": 8, 79 | "maxCount": 8 80 | } 81 | ], 82 | "water_creature": [ 83 | { 84 | "type": "minecraft:squid", 85 | "weight": 1, 86 | "minCount": 1, 87 | "maxCount": 4 88 | } 89 | ], 90 | "water_ambient": [ 91 | { 92 | "type": "minecraft:salmon", 93 | "weight": 15, 94 | "minCount": 1, 95 | "maxCount": 5 96 | } 97 | ], 98 | "misc": [] 99 | }, 100 | "spawn_costs": {}, 101 | "surface_builder": "minecraft:frozen_ocean", 102 | "carvers": { 103 | "air": [ 104 | "minecraft:ocean_cave", 105 | "minecraft:canyon" 106 | ], 107 | "liquid": [ 108 | "minecraft:underwater_canyon", 109 | "minecraft:underwater_cave" 110 | ] 111 | }, 112 | "features": [ 113 | [], 114 | [ 115 | "minecraft:lake_water", 116 | "minecraft:lake_lava" 117 | ], 118 | [ 119 | "minecraft:iceberg_packed", 120 | "minecraft:iceberg_blue" 121 | ], 122 | [ 123 | "minecraft:monster_room" 124 | ], 125 | [ 126 | "minecraft:blue_ice" 127 | ], 128 | [], 129 | [ 130 | "modern_beta:ore_dirt", 131 | "modern_beta:ore_gravel", 132 | "minecraft:ore_granite", 133 | "minecraft:ore_diorite", 134 | "minecraft:ore_andesite", 135 | "minecraft:ore_coal", 136 | "minecraft:ore_iron", 137 | "minecraft:ore_gold", 138 | "minecraft:ore_redstone", 139 | "minecraft:ore_diamond", 140 | "minecraft:ore_lapis" 141 | ], 142 | [], 143 | [ 144 | "minecraft:trees_water", 145 | "minecraft:flower_default", 146 | "minecraft:patch_grass_badlands", 147 | "minecraft:brown_mushroom_normal", 148 | "minecraft:red_mushroom_normal", 149 | "minecraft:patch_sugar_cane", 150 | "minecraft:patch_pumpkin", 151 | "minecraft:spring_water", 152 | "minecraft:spring_lava" 153 | ], 154 | [ 155 | "minecraft:freeze_top_layer" 156 | ] 157 | ], 158 | "scale": 0.1, 159 | "temperature": 0.5, 160 | "downfall": 0.5, 161 | "effects": { 162 | "mood_sound": { 163 | "sound": "minecraft:ambient.cave", 164 | "tick_delay": 6000, 165 | "block_search_extent": 8, 166 | "offset": 2.0 167 | }, 168 | "sky_color": 8625919, 169 | "fog_color": 12638463, 170 | "water_color": 3750089, 171 | "water_fog_color": 329011 172 | }, 173 | "precipitation": "rain", 174 | "category": "ocean", 175 | "depth": -1.8 176 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/mountains.json: -------------------------------------------------------------------------------- 1 | { 2 | "scale": 1.225, 3 | "effects": { 4 | "mood_sound": { 5 | "sound": "minecraft:ambient.cave", 6 | "tick_delay": 6000, 7 | "block_search_extent": 8, 8 | "offset": 2.0 9 | }, 10 | "sky_color": 8233727, 11 | "fog_color": 12638463, 12 | "water_color": 4159204, 13 | "water_fog_color": 329011 14 | }, 15 | "surface_builder": "minecraft:mountain", 16 | "carvers": { 17 | "air": [ 18 | "minecraft:cave", 19 | "minecraft:canyon" 20 | ] 21 | }, 22 | "features": [ 23 | [], 24 | [ 25 | "minecraft:lake_water", 26 | "minecraft:lake_lava" 27 | ], 28 | [], 29 | [ 30 | "minecraft:monster_room" 31 | ], 32 | [], 33 | [], 34 | [ 35 | "modern_beta:ore_dirt", 36 | "modern_beta:ore_gravel", 37 | "minecraft:ore_granite", 38 | "minecraft:ore_diorite", 39 | "minecraft:ore_andesite", 40 | "minecraft:ore_coal", 41 | "minecraft:ore_iron", 42 | "minecraft:ore_gold", 43 | "minecraft:ore_redstone", 44 | "minecraft:ore_diamond", 45 | "minecraft:ore_lapis", 46 | "minecraft:disk_sand", 47 | "minecraft:disk_clay", 48 | "minecraft:disk_gravel", 49 | "minecraft:ore_emerald" 50 | ], 51 | [ 52 | "minecraft:ore_infested" 53 | ], 54 | [ 55 | "minecraft:trees_mountain", 56 | "minecraft:flower_default", 57 | "minecraft:patch_grass_badlands", 58 | "minecraft:brown_mushroom_normal", 59 | "minecraft:red_mushroom_normal", 60 | "minecraft:patch_sugar_cane", 61 | "minecraft:patch_pumpkin", 62 | "minecraft:spring_water", 63 | "minecraft:spring_lava" 64 | ], 65 | [ 66 | "minecraft:freeze_top_layer" 67 | ] 68 | ], 69 | "starts": [ 70 | "minecraft:mineshaft", 71 | "minecraft:stronghold", 72 | "minecraft:ruined_portal_mountain" 73 | ], 74 | "spawners": { 75 | "monster": [ 76 | { 77 | "type": "minecraft:spider", 78 | "weight": 100, 79 | "minCount": 4, 80 | "maxCount": 4 81 | }, 82 | { 83 | "type": "minecraft:zombie", 84 | "weight": 95, 85 | "minCount": 4, 86 | "maxCount": 4 87 | }, 88 | { 89 | "type": "minecraft:zombie_villager", 90 | "weight": 5, 91 | "minCount": 1, 92 | "maxCount": 1 93 | }, 94 | { 95 | "type": "minecraft:skeleton", 96 | "weight": 100, 97 | "minCount": 4, 98 | "maxCount": 4 99 | }, 100 | { 101 | "type": "minecraft:creeper", 102 | "weight": 100, 103 | "minCount": 4, 104 | "maxCount": 4 105 | }, 106 | { 107 | "type": "minecraft:slime", 108 | "weight": 100, 109 | "minCount": 4, 110 | "maxCount": 4 111 | }, 112 | { 113 | "type": "minecraft:enderman", 114 | "weight": 10, 115 | "minCount": 1, 116 | "maxCount": 4 117 | }, 118 | { 119 | "type": "minecraft:witch", 120 | "weight": 5, 121 | "minCount": 1, 122 | "maxCount": 1 123 | } 124 | ], 125 | "creature": [ 126 | { 127 | "type": "minecraft:sheep", 128 | "weight": 12, 129 | "minCount": 4, 130 | "maxCount": 4 131 | }, 132 | { 133 | "type": "minecraft:pig", 134 | "weight": 10, 135 | "minCount": 4, 136 | "maxCount": 4 137 | }, 138 | { 139 | "type": "minecraft:chicken", 140 | "weight": 10, 141 | "minCount": 4, 142 | "maxCount": 4 143 | }, 144 | { 145 | "type": "minecraft:cow", 146 | "weight": 8, 147 | "minCount": 4, 148 | "maxCount": 4 149 | }, 150 | { 151 | "type": "minecraft:llama", 152 | "weight": 5, 153 | "minCount": 4, 154 | "maxCount": 6 155 | } 156 | ], 157 | "ambient": [ 158 | { 159 | "type": "minecraft:bat", 160 | "weight": 10, 161 | "minCount": 8, 162 | "maxCount": 8 163 | } 164 | ], 165 | "water_creature": [], 166 | "water_ambient": [], 167 | "misc": [] 168 | }, 169 | "spawn_costs": {}, 170 | "player_spawn_friendly": false, 171 | "precipitation": "rain", 172 | "temperature": 0.2, 173 | "downfall": 0.3, 174 | "category": "extreme_hills", 175 | "depth": 8.0 176 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/cold_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:shipwreck", 5 | "minecraft:ocean_ruin_cold", 6 | "minecraft:ruined_portal_ocean" 7 | ], 8 | "spawners": { 9 | "monster": [ 10 | { 11 | "type": "minecraft:spider", 12 | "weight": 100, 13 | "minCount": 4, 14 | "maxCount": 4 15 | }, 16 | { 17 | "type": "minecraft:zombie", 18 | "weight": 95, 19 | "minCount": 4, 20 | "maxCount": 4 21 | }, 22 | { 23 | "type": "minecraft:zombie_villager", 24 | "weight": 5, 25 | "minCount": 1, 26 | "maxCount": 1 27 | }, 28 | { 29 | "type": "minecraft:skeleton", 30 | "weight": 100, 31 | "minCount": 4, 32 | "maxCount": 4 33 | }, 34 | { 35 | "type": "minecraft:creeper", 36 | "weight": 100, 37 | "minCount": 4, 38 | "maxCount": 4 39 | }, 40 | { 41 | "type": "minecraft:slime", 42 | "weight": 100, 43 | "minCount": 4, 44 | "maxCount": 4 45 | }, 46 | { 47 | "type": "minecraft:enderman", 48 | "weight": 10, 49 | "minCount": 1, 50 | "maxCount": 4 51 | }, 52 | { 53 | "type": "minecraft:witch", 54 | "weight": 5, 55 | "minCount": 1, 56 | "maxCount": 1 57 | }, 58 | { 59 | "type": "minecraft:drowned", 60 | "weight": 5, 61 | "minCount": 1, 62 | "maxCount": 1 63 | } 64 | ], 65 | "creature": [], 66 | "ambient": [ 67 | { 68 | "type": "minecraft:bat", 69 | "weight": 10, 70 | "minCount": 8, 71 | "maxCount": 8 72 | } 73 | ], 74 | "water_creature": [ 75 | { 76 | "type": "minecraft:squid", 77 | "weight": 3, 78 | "minCount": 1, 79 | "maxCount": 4 80 | } 81 | ], 82 | "water_ambient": [ 83 | { 84 | "type": "minecraft:cod", 85 | "weight": 15, 86 | "minCount": 3, 87 | "maxCount": 6 88 | }, 89 | { 90 | "type": "minecraft:salmon", 91 | "weight": 15, 92 | "minCount": 1, 93 | "maxCount": 5 94 | } 95 | ], 96 | "misc": [] 97 | }, 98 | "spawn_costs": {}, 99 | "surface_builder": "modern_beta:beach", 100 | "carvers": { 101 | "air": [ 102 | "minecraft:ocean_cave", 103 | "minecraft:canyon" 104 | ], 105 | "liquid": [ 106 | "minecraft:underwater_canyon", 107 | "minecraft:underwater_cave" 108 | ] 109 | }, 110 | "features": [ 111 | [], 112 | [ 113 | "minecraft:lake_water", 114 | "minecraft:lake_lava" 115 | ], 116 | [], 117 | [ 118 | "minecraft:monster_room" 119 | ], 120 | [], 121 | [], 122 | [ 123 | "modern_beta:ore_dirt", 124 | "modern_beta:ore_gravel", 125 | "minecraft:ore_granite", 126 | "minecraft:ore_diorite", 127 | "minecraft:ore_andesite", 128 | "minecraft:ore_coal", 129 | "minecraft:ore_iron", 130 | "minecraft:ore_gold", 131 | "minecraft:ore_redstone", 132 | "minecraft:ore_diamond", 133 | "minecraft:ore_lapis", 134 | "modern_beta:patch_grass_block", 135 | "modern_beta:gravel_beach", 136 | "modern_beta:patch_gravel_air" 137 | ], 138 | [], 139 | [ 140 | "minecraft:trees_water", 141 | "minecraft:flower_default", 142 | "minecraft:patch_grass_badlands", 143 | "minecraft:brown_mushroom_normal", 144 | "minecraft:red_mushroom_normal", 145 | "minecraft:patch_sugar_cane", 146 | "minecraft:patch_pumpkin", 147 | "minecraft:spring_water", 148 | "minecraft:spring_lava", 149 | "minecraft:seagrass_cold", 150 | "minecraft:seagrass_simple", 151 | "minecraft:kelp_cold" 152 | ], 153 | [ 154 | "minecraft:freeze_top_layer" 155 | ] 156 | ], 157 | "scale": 0.1, 158 | "temperature": 0.25, 159 | "downfall": 0.8, 160 | "effects": { 161 | "mood_sound": { 162 | "sound": "minecraft:ambient.cave", 163 | "tick_delay": 6000, 164 | "block_search_extent": 8, 165 | "offset": 2.0 166 | }, 167 | "sky_color": 8364543, 168 | "fog_color": 12638463, 169 | "water_color": 4020182, 170 | "water_fog_color": 329011 171 | }, 172 | "precipitation": "rain", 173 | "category": "ocean", 174 | "depth": -1.0 175 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/frozen_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:ocean_ruin_cold", 4 | "minecraft:mineshaft", 5 | "minecraft:shipwreck", 6 | "minecraft:ruined_portal_ocean" 7 | ], 8 | "spawners": { 9 | "monster": [ 10 | { 11 | "type": "minecraft:spider", 12 | "weight": 100, 13 | "minCount": 4, 14 | "maxCount": 4 15 | }, 16 | { 17 | "type": "minecraft:zombie", 18 | "weight": 95, 19 | "minCount": 4, 20 | "maxCount": 4 21 | }, 22 | { 23 | "type": "minecraft:zombie_villager", 24 | "weight": 5, 25 | "minCount": 1, 26 | "maxCount": 1 27 | }, 28 | { 29 | "type": "minecraft:skeleton", 30 | "weight": 100, 31 | "minCount": 4, 32 | "maxCount": 4 33 | }, 34 | { 35 | "type": "minecraft:creeper", 36 | "weight": 100, 37 | "minCount": 4, 38 | "maxCount": 4 39 | }, 40 | { 41 | "type": "minecraft:slime", 42 | "weight": 100, 43 | "minCount": 4, 44 | "maxCount": 4 45 | }, 46 | { 47 | "type": "minecraft:enderman", 48 | "weight": 10, 49 | "minCount": 1, 50 | "maxCount": 4 51 | }, 52 | { 53 | "type": "minecraft:witch", 54 | "weight": 5, 55 | "minCount": 1, 56 | "maxCount": 1 57 | }, 58 | { 59 | "type": "minecraft:drowned", 60 | "weight": 5, 61 | "minCount": 1, 62 | "maxCount": 1 63 | } 64 | ], 65 | "creature": [ 66 | { 67 | "type": "minecraft:polar_bear", 68 | "weight": 1, 69 | "minCount": 1, 70 | "maxCount": 2 71 | } 72 | ], 73 | "ambient": [ 74 | { 75 | "type": "minecraft:bat", 76 | "weight": 10, 77 | "minCount": 8, 78 | "maxCount": 8 79 | } 80 | ], 81 | "water_creature": [ 82 | { 83 | "type": "minecraft:squid", 84 | "weight": 1, 85 | "minCount": 1, 86 | "maxCount": 4 87 | } 88 | ], 89 | "water_ambient": [ 90 | { 91 | "type": "minecraft:salmon", 92 | "weight": 15, 93 | "minCount": 1, 94 | "maxCount": 5 95 | } 96 | ], 97 | "misc": [] 98 | }, 99 | "spawn_costs": {}, 100 | "surface_builder": "minecraft:frozen_ocean", 101 | "carvers": { 102 | "air": [ 103 | "minecraft:ocean_cave", 104 | "minecraft:canyon" 105 | ], 106 | "liquid": [ 107 | "minecraft:underwater_canyon", 108 | "minecraft:underwater_cave" 109 | ] 110 | }, 111 | "features": [ 112 | [], 113 | [ 114 | "minecraft:lake_water", 115 | "minecraft:lake_lava" 116 | ], 117 | [ 118 | "minecraft:iceberg_packed", 119 | "minecraft:iceberg_blue" 120 | ], 121 | [ 122 | "minecraft:monster_room" 123 | ], 124 | [ 125 | "minecraft:blue_ice" 126 | ], 127 | [], 128 | [ 129 | "modern_beta:ore_dirt", 130 | "modern_beta:ore_gravel", 131 | "minecraft:ore_granite", 132 | "minecraft:ore_diorite", 133 | "minecraft:ore_andesite", 134 | "minecraft:ore_coal", 135 | "minecraft:ore_iron", 136 | "minecraft:ore_gold", 137 | "minecraft:ore_redstone", 138 | "minecraft:ore_diamond", 139 | "minecraft:ore_lapis", 140 | "modern_beta:sand_beach", 141 | "modern_beta:ore_clay" 142 | ], 143 | [], 144 | [ 145 | "minecraft:trees_water", 146 | "minecraft:flower_default", 147 | "minecraft:patch_grass_badlands", 148 | "minecraft:brown_mushroom_normal", 149 | "minecraft:red_mushroom_normal", 150 | "minecraft:patch_sugar_cane", 151 | "minecraft:patch_pumpkin", 152 | "minecraft:spring_water", 153 | "minecraft:spring_lava" 154 | ], 155 | [ 156 | "minecraft:freeze_top_layer" 157 | ] 158 | ], 159 | "scale": 0.1, 160 | "temperature": 0.0, 161 | "downfall": 0.5, 162 | "effects": { 163 | "mood_sound": { 164 | "sound": "minecraft:ambient.cave", 165 | "tick_delay": 6000, 166 | "block_search_extent": 8, 167 | "offset": 2.0 168 | }, 169 | "sky_color": 8625919, 170 | "fog_color": 12638463, 171 | "water_color": 3750089, 172 | "water_fog_color": 329011 173 | }, 174 | "precipitation": "snow", 175 | "category": "ocean", 176 | "temperature_modifier": "frozen", 177 | "depth": -1.0 178 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:mineshaft", 4 | "minecraft:shipwreck", 5 | "minecraft:ocean_ruin_cold", 6 | "minecraft:ruined_portal_ocean" 7 | ], 8 | "spawners": { 9 | "monster": [ 10 | { 11 | "type": "minecraft:spider", 12 | "weight": 100, 13 | "minCount": 4, 14 | "maxCount": 4 15 | }, 16 | { 17 | "type": "minecraft:zombie", 18 | "weight": 95, 19 | "minCount": 4, 20 | "maxCount": 4 21 | }, 22 | { 23 | "type": "minecraft:zombie_villager", 24 | "weight": 5, 25 | "minCount": 1, 26 | "maxCount": 1 27 | }, 28 | { 29 | "type": "minecraft:skeleton", 30 | "weight": 100, 31 | "minCount": 4, 32 | "maxCount": 4 33 | }, 34 | { 35 | "type": "minecraft:creeper", 36 | "weight": 100, 37 | "minCount": 4, 38 | "maxCount": 4 39 | }, 40 | { 41 | "type": "minecraft:slime", 42 | "weight": 100, 43 | "minCount": 4, 44 | "maxCount": 4 45 | }, 46 | { 47 | "type": "minecraft:enderman", 48 | "weight": 10, 49 | "minCount": 1, 50 | "maxCount": 4 51 | }, 52 | { 53 | "type": "minecraft:witch", 54 | "weight": 5, 55 | "minCount": 1, 56 | "maxCount": 1 57 | }, 58 | { 59 | "type": "minecraft:drowned", 60 | "weight": 5, 61 | "minCount": 1, 62 | "maxCount": 1 63 | } 64 | ], 65 | "creature": [], 66 | "ambient": [ 67 | { 68 | "type": "minecraft:bat", 69 | "weight": 10, 70 | "minCount": 8, 71 | "maxCount": 8 72 | } 73 | ], 74 | "water_creature": [ 75 | { 76 | "type": "minecraft:squid", 77 | "weight": 1, 78 | "minCount": 1, 79 | "maxCount": 4 80 | }, 81 | { 82 | "type": "minecraft:dolphin", 83 | "weight": 1, 84 | "minCount": 1, 85 | "maxCount": 2 86 | } 87 | ], 88 | "water_ambient": [ 89 | { 90 | "type": "minecraft:cod", 91 | "weight": 10, 92 | "minCount": 3, 93 | "maxCount": 6 94 | } 95 | ], 96 | "misc": [] 97 | }, 98 | "spawn_costs": {}, 99 | "surface_builder": "modern_beta:beach", 100 | "carvers": { 101 | "air": [ 102 | "minecraft:ocean_cave", 103 | "minecraft:canyon" 104 | ], 105 | "liquid": [ 106 | "minecraft:underwater_canyon", 107 | "minecraft:underwater_cave" 108 | ] 109 | }, 110 | "features": [ 111 | [], 112 | [ 113 | "minecraft:lake_water", 114 | "minecraft:lake_lava" 115 | ], 116 | [], 117 | [ 118 | "minecraft:monster_room" 119 | ], 120 | [], 121 | [], 122 | [ 123 | "modern_beta:ore_dirt", 124 | "modern_beta:ore_gravel", 125 | "minecraft:ore_granite", 126 | "minecraft:ore_diorite", 127 | "minecraft:ore_andesite", 128 | "minecraft:ore_coal", 129 | "minecraft:ore_iron", 130 | "minecraft:ore_gold", 131 | "minecraft:ore_redstone", 132 | "minecraft:ore_diamond", 133 | "minecraft:ore_lapis", 134 | "modern_beta:sand_beach", 135 | "modern_beta:ore_clay", 136 | "modern_beta:patch_sandstone", 137 | "modern_beta:patch_sandstone_extra", 138 | "modern_beta:patch_grass_block" 139 | ], 140 | [], 141 | [ 142 | "minecraft:trees_water", 143 | "minecraft:flower_default", 144 | "minecraft:patch_grass_badlands", 145 | "minecraft:brown_mushroom_normal", 146 | "minecraft:red_mushroom_normal", 147 | "minecraft:patch_sugar_cane", 148 | "minecraft:patch_pumpkin", 149 | "minecraft:spring_water", 150 | "minecraft:spring_lava", 151 | "minecraft:seagrass_normal", 152 | "minecraft:seagrass_simple", 153 | "minecraft:kelp_cold" 154 | ], 155 | [ 156 | "minecraft:freeze_top_layer" 157 | ] 158 | ], 159 | "scale": 0.1, 160 | "temperature": 0.7, 161 | "downfall": 0.8, 162 | "effects": { 163 | "mood_sound": { 164 | "sound": "minecraft:ambient.cave", 165 | "tick_delay": 6000, 166 | "block_search_extent": 8, 167 | "offset": 2.0 168 | }, 169 | "sky_color": 9158143, 170 | "fog_color": 12638463, 171 | "water_color": 4159204, 172 | "water_fog_color": 329011 173 | }, 174 | "precipitation": "rain", 175 | "category": "ocean", 176 | "depth": -1.0 177 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/deep_warm_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:ocean_ruin_warm", 4 | "minecraft:monument", 5 | "minecraft:mineshaft", 6 | "minecraft:shipwreck", 7 | "minecraft:ruined_portal_ocean" 8 | ], 9 | "spawners": { 10 | "monster": [ 11 | { 12 | "type": "minecraft:spider", 13 | "weight": 100, 14 | "minCount": 4, 15 | "maxCount": 4 16 | }, 17 | { 18 | "type": "minecraft:zombie", 19 | "weight": 95, 20 | "minCount": 4, 21 | "maxCount": 4 22 | }, 23 | { 24 | "type": "minecraft:zombie_villager", 25 | "weight": 5, 26 | "minCount": 1, 27 | "maxCount": 1 28 | }, 29 | { 30 | "type": "minecraft:skeleton", 31 | "weight": 100, 32 | "minCount": 4, 33 | "maxCount": 4 34 | }, 35 | { 36 | "type": "minecraft:creeper", 37 | "weight": 100, 38 | "minCount": 4, 39 | "maxCount": 4 40 | }, 41 | { 42 | "type": "minecraft:slime", 43 | "weight": 100, 44 | "minCount": 4, 45 | "maxCount": 4 46 | }, 47 | { 48 | "type": "minecraft:enderman", 49 | "weight": 10, 50 | "minCount": 1, 51 | "maxCount": 4 52 | }, 53 | { 54 | "type": "minecraft:witch", 55 | "weight": 5, 56 | "minCount": 1, 57 | "maxCount": 1 58 | }, 59 | { 60 | "type": "minecraft:drowned", 61 | "weight": 5, 62 | "minCount": 1, 63 | "maxCount": 1 64 | } 65 | ], 66 | "creature": [], 67 | "ambient": [ 68 | { 69 | "type": "minecraft:bat", 70 | "weight": 10, 71 | "minCount": 8, 72 | "maxCount": 8 73 | } 74 | ], 75 | "water_creature": [ 76 | { 77 | "type": "minecraft:squid", 78 | "weight": 5, 79 | "minCount": 1, 80 | "maxCount": 4 81 | }, 82 | { 83 | "type": "minecraft:dolphin", 84 | "weight": 2, 85 | "minCount": 1, 86 | "maxCount": 2 87 | } 88 | ], 89 | "water_ambient": [ 90 | { 91 | "type": "minecraft:tropical_fish", 92 | "weight": 25, 93 | "minCount": 8, 94 | "maxCount": 8 95 | } 96 | ], 97 | "misc": [] 98 | }, 99 | "spawn_costs": {}, 100 | "surface_builder": "modern_beta:full_sand_beach", 101 | "carvers": { 102 | "air": [ 103 | "minecraft:ocean_cave", 104 | "minecraft:canyon" 105 | ], 106 | "liquid": [ 107 | "minecraft:underwater_canyon", 108 | "minecraft:underwater_cave" 109 | ] 110 | }, 111 | "features": [ 112 | [], 113 | [ 114 | "minecraft:lake_water", 115 | "minecraft:lake_lava" 116 | ], 117 | [], 118 | [ 119 | "minecraft:monster_room" 120 | ], 121 | [], 122 | [], 123 | [ 124 | "modern_beta:ore_dirt", 125 | "modern_beta:ore_gravel", 126 | "minecraft:ore_granite", 127 | "minecraft:ore_diorite", 128 | "minecraft:ore_andesite", 129 | "minecraft:ore_coal", 130 | "minecraft:ore_iron", 131 | "minecraft:ore_gold", 132 | "minecraft:ore_redstone", 133 | "minecraft:ore_diamond", 134 | "minecraft:ore_lapis", 135 | "modern_beta:sand_beach", 136 | "modern_beta:ore_clay", 137 | "modern_beta:patch_sandstone", 138 | "modern_beta:patch_sandstone_extra", 139 | "modern_beta:patch_grass_block" 140 | ], 141 | [], 142 | [ 143 | "minecraft:trees_water", 144 | "minecraft:flower_default", 145 | "minecraft:patch_grass_badlands", 146 | "minecraft:brown_mushroom_normal", 147 | "minecraft:red_mushroom_normal", 148 | "minecraft:patch_sugar_cane", 149 | "minecraft:patch_pumpkin", 150 | "minecraft:spring_water", 151 | "minecraft:spring_lava", 152 | "minecraft:seagrass_deep_warm", 153 | "minecraft:seagrass_simple" 154 | ], 155 | [ 156 | "minecraft:freeze_top_layer" 157 | ] 158 | ], 159 | "scale": 0.1, 160 | "temperature": 0.5, 161 | "downfall": 0.5, 162 | "effects": { 163 | "mood_sound": { 164 | "sound": "minecraft:ambient.cave", 165 | "tick_delay": 6000, 166 | "block_search_extent": 8, 167 | "offset": 2.0 168 | }, 169 | "sky_color": 7254527, 170 | "fog_color": 12638463, 171 | "water_color": 4445678, 172 | "water_fog_color": 270131 173 | }, 174 | "precipitation": "rain", 175 | "category": "ocean", 176 | "depth": -1.8 177 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/deep_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:monument", 4 | "minecraft:mineshaft", 5 | "minecraft:shipwreck", 6 | "minecraft:ocean_ruin_cold", 7 | "minecraft:ruined_portal_ocean" 8 | ], 9 | "spawners": { 10 | "monster": [ 11 | { 12 | "type": "minecraft:spider", 13 | "weight": 100, 14 | "minCount": 4, 15 | "maxCount": 4 16 | }, 17 | { 18 | "type": "minecraft:zombie", 19 | "weight": 95, 20 | "minCount": 4, 21 | "maxCount": 4 22 | }, 23 | { 24 | "type": "minecraft:zombie_villager", 25 | "weight": 5, 26 | "minCount": 1, 27 | "maxCount": 1 28 | }, 29 | { 30 | "type": "minecraft:skeleton", 31 | "weight": 100, 32 | "minCount": 4, 33 | "maxCount": 4 34 | }, 35 | { 36 | "type": "minecraft:creeper", 37 | "weight": 100, 38 | "minCount": 4, 39 | "maxCount": 4 40 | }, 41 | { 42 | "type": "minecraft:slime", 43 | "weight": 100, 44 | "minCount": 4, 45 | "maxCount": 4 46 | }, 47 | { 48 | "type": "minecraft:enderman", 49 | "weight": 10, 50 | "minCount": 1, 51 | "maxCount": 4 52 | }, 53 | { 54 | "type": "minecraft:witch", 55 | "weight": 5, 56 | "minCount": 1, 57 | "maxCount": 1 58 | }, 59 | { 60 | "type": "minecraft:drowned", 61 | "weight": 5, 62 | "minCount": 1, 63 | "maxCount": 1 64 | } 65 | ], 66 | "creature": [], 67 | "ambient": [ 68 | { 69 | "type": "minecraft:bat", 70 | "weight": 10, 71 | "minCount": 8, 72 | "maxCount": 8 73 | } 74 | ], 75 | "water_creature": [ 76 | { 77 | "type": "minecraft:squid", 78 | "weight": 1, 79 | "minCount": 1, 80 | "maxCount": 4 81 | }, 82 | { 83 | "type": "minecraft:dolphin", 84 | "weight": 1, 85 | "minCount": 1, 86 | "maxCount": 2 87 | } 88 | ], 89 | "water_ambient": [ 90 | { 91 | "type": "minecraft:cod", 92 | "weight": 10, 93 | "minCount": 3, 94 | "maxCount": 6 95 | } 96 | ], 97 | "misc": [] 98 | }, 99 | "spawn_costs": {}, 100 | "surface_builder": "modern_beta:beach", 101 | "carvers": { 102 | "air": [ 103 | "minecraft:ocean_cave", 104 | "minecraft:canyon" 105 | ], 106 | "liquid": [ 107 | "minecraft:underwater_canyon", 108 | "minecraft:underwater_cave" 109 | ] 110 | }, 111 | "features": [ 112 | [], 113 | [ 114 | "minecraft:lake_water", 115 | "minecraft:lake_lava" 116 | ], 117 | [], 118 | [ 119 | "minecraft:monster_room" 120 | ], 121 | [], 122 | [], 123 | [ 124 | "modern_beta:ore_dirt", 125 | "modern_beta:ore_gravel", 126 | "minecraft:ore_granite", 127 | "minecraft:ore_diorite", 128 | "minecraft:ore_andesite", 129 | "minecraft:ore_coal", 130 | "minecraft:ore_iron", 131 | "minecraft:ore_gold", 132 | "minecraft:ore_redstone", 133 | "minecraft:ore_diamond", 134 | "minecraft:ore_lapis", 135 | "modern_beta:sand_beach", 136 | "modern_beta:ore_clay", 137 | "modern_beta:patch_sandstone", 138 | "modern_beta:patch_sandstone_extra", 139 | "modern_beta:patch_grass_block" 140 | ], 141 | [], 142 | [ 143 | "minecraft:trees_water", 144 | "minecraft:flower_default", 145 | "minecraft:patch_grass_badlands", 146 | "minecraft:brown_mushroom_normal", 147 | "minecraft:red_mushroom_normal", 148 | "minecraft:patch_sugar_cane", 149 | "minecraft:patch_pumpkin", 150 | "minecraft:spring_water", 151 | "minecraft:spring_lava", 152 | "minecraft:seagrass_deep", 153 | "minecraft:seagrass_simple", 154 | "minecraft:kelp_cold" 155 | ], 156 | [ 157 | "minecraft:freeze_top_layer" 158 | ] 159 | ], 160 | "scale": 0.1, 161 | "temperature": 0.5, 162 | "downfall": 0.5, 163 | "effects": { 164 | "mood_sound": { 165 | "sound": "minecraft:ambient.cave", 166 | "tick_delay": 6000, 167 | "block_search_extent": 8, 168 | "offset": 2.0 169 | }, 170 | "sky_color": 9158143, 171 | "fog_color": 12638463, 172 | "water_color": 4159204, 173 | "water_fog_color": 329011 174 | }, 175 | "precipitation": "rain", 176 | "category": "ocean", 177 | "depth": -1.8 178 | } -------------------------------------------------------------------------------- /Modern Beta/data/modern_beta/worldgen/biome/warm_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "starts": [ 3 | "minecraft:ocean_ruin_warm", 4 | "minecraft:mineshaft", 5 | "minecraft:shipwreck", 6 | "minecraft:ruined_portal_ocean" 7 | ], 8 | "spawners": { 9 | "monster": [ 10 | { 11 | "type": "minecraft:spider", 12 | "weight": 100, 13 | "minCount": 4, 14 | "maxCount": 4 15 | }, 16 | { 17 | "type": "minecraft:zombie", 18 | "weight": 95, 19 | "minCount": 4, 20 | "maxCount": 4 21 | }, 22 | { 23 | "type": "minecraft:zombie_villager", 24 | "weight": 5, 25 | "minCount": 1, 26 | "maxCount": 1 27 | }, 28 | { 29 | "type": "minecraft:skeleton", 30 | "weight": 100, 31 | "minCount": 4, 32 | "maxCount": 4 33 | }, 34 | { 35 | "type": "minecraft:creeper", 36 | "weight": 100, 37 | "minCount": 4, 38 | "maxCount": 4 39 | }, 40 | { 41 | "type": "minecraft:slime", 42 | "weight": 100, 43 | "minCount": 4, 44 | "maxCount": 4 45 | }, 46 | { 47 | "type": "minecraft:enderman", 48 | "weight": 10, 49 | "minCount": 1, 50 | "maxCount": 4 51 | }, 52 | { 53 | "type": "minecraft:witch", 54 | "weight": 5, 55 | "minCount": 1, 56 | "maxCount": 1 57 | } 58 | ], 59 | "creature": [], 60 | "ambient": [ 61 | { 62 | "type": "minecraft:bat", 63 | "weight": 10, 64 | "minCount": 8, 65 | "maxCount": 8 66 | } 67 | ], 68 | "water_creature": [ 69 | { 70 | "type": "minecraft:squid", 71 | "weight": 10, 72 | "minCount": 4, 73 | "maxCount": 4 74 | }, 75 | { 76 | "type": "minecraft:dolphin", 77 | "weight": 2, 78 | "minCount": 1, 79 | "maxCount": 2 80 | } 81 | ], 82 | "water_ambient": [ 83 | { 84 | "type": "minecraft:pufferfish", 85 | "weight": 15, 86 | "minCount": 1, 87 | "maxCount": 3 88 | }, 89 | { 90 | "type": "minecraft:tropical_fish", 91 | "weight": 25, 92 | "minCount": 8, 93 | "maxCount": 8 94 | } 95 | ], 96 | "misc": [] 97 | }, 98 | "spawn_costs": {}, 99 | "surface_builder": "modern_beta:full_sand_beach", 100 | "carvers": { 101 | "air": [ 102 | "minecraft:ocean_cave", 103 | "minecraft:canyon" 104 | ], 105 | "liquid": [ 106 | "minecraft:underwater_canyon", 107 | "minecraft:underwater_cave" 108 | ] 109 | }, 110 | "features": [ 111 | [], 112 | [ 113 | "minecraft:lake_water", 114 | "minecraft:lake_lava" 115 | ], 116 | [], 117 | [ 118 | "minecraft:monster_room" 119 | ], 120 | [], 121 | [], 122 | [ 123 | "modern_beta:ore_dirt", 124 | "modern_beta:ore_gravel", 125 | "minecraft:ore_granite", 126 | "minecraft:ore_diorite", 127 | "minecraft:ore_andesite", 128 | "minecraft:ore_coal", 129 | "minecraft:ore_iron", 130 | "minecraft:ore_gold", 131 | "minecraft:ore_redstone", 132 | "minecraft:ore_diamond", 133 | "minecraft:ore_lapis", 134 | "modern_beta:sand_beach", 135 | "modern_beta:ore_clay", 136 | "modern_beta:patch_sandstone", 137 | "modern_beta:patch_sandstone_extra", 138 | "modern_beta:patch_grass_block" 139 | ], 140 | [], 141 | [ 142 | "minecraft:trees_water", 143 | "minecraft:flower_default", 144 | "minecraft:patch_grass_badlands", 145 | "minecraft:brown_mushroom_normal", 146 | "minecraft:red_mushroom_normal", 147 | "minecraft:patch_sugar_cane", 148 | "minecraft:patch_pumpkin", 149 | "minecraft:spring_water", 150 | "minecraft:spring_lava", 151 | "minecraft:warm_ocean_vegetation", 152 | "minecraft:seagrass_warm", 153 | "minecraft:sea_pickle" 154 | ], 155 | [ 156 | "minecraft:freeze_top_layer" 157 | ] 158 | ], 159 | "scale": 0.1, 160 | "temperature": 0.8, 161 | "downfall": 0.9, 162 | "effects": { 163 | "mood_sound": { 164 | "sound": "minecraft:ambient.cave", 165 | "tick_delay": 6000, 166 | "block_search_extent": 8, 167 | "offset": 2.0 168 | }, 169 | "sky_color": 7254527, 170 | "fog_color": 12638463, 171 | "water_color": 4445678, 172 | "water_fog_color": 270131 173 | }, 174 | "precipitation": "rain", 175 | "category": "ocean", 176 | "depth": -1.0 177 | } --------------------------------------------------------------------------------