-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Badtz
committed
Oct 16, 2023
1 parent
035be2f
commit ab25485
Showing
24 changed files
with
156,070 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
206 changes: 206 additions & 0 deletions
206
src/main/resources/data/bone/worldgen/biome/mossy_forest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
{ | ||
"temperature": 0.25, | ||
"downfall": 0.8, | ||
"has_precipitation": true, | ||
"effects": { | ||
"sky_color": 14543357, | ||
"fog_color": 15790320, | ||
"water_color": 11779798, | ||
"water_fog_color": 7697796, | ||
"grass_color": 3701321, | ||
"foliage_color": 1782301, | ||
"mood_sound": { | ||
"sound": "minecraft:ambient.cave", | ||
"tick_delay": 6000, | ||
"block_search_extent": 8, | ||
"offset": 2 | ||
} | ||
}, | ||
"spawners": { | ||
"ambient": [ | ||
{ | ||
"type": "minecraft:bat", | ||
"weight": 10, | ||
"minCount": 8, | ||
"maxCount": 8 | ||
} | ||
], | ||
"axolotls": [], | ||
"creature": [ | ||
{ | ||
"type": "minecraft:sheep", | ||
"weight": 12, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:pig", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:chicken", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:cow", | ||
"weight": 8, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:wolf", | ||
"weight": 8, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:rabbit", | ||
"weight": 4, | ||
"minCount": 2, | ||
"maxCount": 3 | ||
}, | ||
{ | ||
"type": "minecraft:fox", | ||
"weight": 8, | ||
"minCount": 2, | ||
"maxCount": 4 | ||
} | ||
], | ||
"misc": [], | ||
"monster": [ | ||
{ | ||
"type": "minecraft:spider", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:zombie", | ||
"weight": 95, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:zombie_villager", | ||
"weight": 5, | ||
"minCount": 1, | ||
"maxCount": 1 | ||
}, | ||
{ | ||
"type": "minecraft:skeleton", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:creeper", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:slime", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:enderman", | ||
"weight": 10, | ||
"minCount": 1, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:witch", | ||
"weight": 5, | ||
"minCount": 1, | ||
"maxCount": 1 | ||
} | ||
], | ||
"underground_water_creature": [ | ||
{ | ||
"type": "minecraft:glow_squid", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 6 | ||
} | ||
], | ||
"water_ambient": [], | ||
"water_creature": [] | ||
}, | ||
"spawn_costs": {}, | ||
"carvers": { | ||
"air": [ | ||
"minecraft:cave", | ||
"minecraft:cave_extra_underground", | ||
"minecraft:canyon" | ||
] | ||
}, | ||
"features": [ | ||
[], | ||
[ | ||
"minecraft:lake_lava_underground", | ||
"minecraft:lake_lava_surface" | ||
], | ||
[ | ||
"minecraft:amethyst_geode" | ||
], | ||
[ | ||
"minecraft:monster_room", | ||
"minecraft:monster_room_deep" | ||
], | ||
[], | ||
[], | ||
[ | ||
"minecraft:ore_dirt", | ||
"minecraft:ore_gravel", | ||
"minecraft:ore_granite_upper", | ||
"minecraft:ore_granite_lower", | ||
"minecraft:ore_diorite_upper", | ||
"minecraft:ore_diorite_lower", | ||
"minecraft:ore_andesite_upper", | ||
"minecraft:ore_andesite_lower", | ||
"minecraft:ore_tuff", | ||
"minecraft:ore_coal_upper", | ||
"minecraft:ore_coal_lower", | ||
"minecraft:ore_iron_upper", | ||
"minecraft:ore_iron_middle", | ||
"minecraft:ore_iron_small", | ||
"minecraft:ore_gold", | ||
"minecraft:ore_gold_lower", | ||
"minecraft:ore_redstone", | ||
"minecraft:ore_redstone_lower", | ||
"minecraft:ore_diamond", | ||
"minecraft:ore_diamond_large", | ||
"minecraft:ore_diamond_buried", | ||
"minecraft:ore_lapis", | ||
"minecraft:ore_lapis_buried", | ||
"minecraft:ore_copper", | ||
"minecraft:underwater_magma", | ||
"minecraft:disk_sand", | ||
"minecraft:disk_clay", | ||
"minecraft:disk_gravel" | ||
], | ||
[], | ||
[ | ||
"minecraft:spring_water", | ||
"minecraft:spring_lava" | ||
], | ||
[ | ||
"minecraft:glow_lichen", | ||
"minecraft:patch_large_fern", | ||
"minecraft:trees_taiga", | ||
"minecraft:flower_default", | ||
"minecraft:patch_grass_taiga_2", | ||
"minecraft:brown_mushroom_taiga", | ||
"bone:trees_mossy" | ||
], | ||
[ | ||
"minecraft:freeze_top_layer" | ||
] | ||
] | ||
} |
182 changes: 182 additions & 0 deletions
182
src/main/resources/data/bone/worldgen/biome/snowy_forest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
{ | ||
"temperature": 0.123, | ||
"downfall": 0.8, | ||
"has_precipitation": true, | ||
"temperature_modifier": "frozen", | ||
"effects": { | ||
"sky_color": 14543357, | ||
"fog_color": 15790320, | ||
"water_color": 7392255, | ||
"water_fog_color": 7697796, | ||
"grass_color": 4612171, | ||
"foliage_color": 469010, | ||
"mood_sound": { | ||
"sound": "minecraft:ambient.cave", | ||
"tick_delay": 6000, | ||
"block_search_extent": 8, | ||
"offset": 2 | ||
} | ||
}, | ||
"spawners": { | ||
"ambient": [], | ||
"axolotls": [], | ||
"creature": [ | ||
{ | ||
"type": "minecraft:pig", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:chicken", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:cow", | ||
"weight": 8, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:wolf", | ||
"weight": 8, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:rabbit", | ||
"weight": 4, | ||
"minCount": 2, | ||
"maxCount": 3 | ||
}, | ||
{ | ||
"type": "minecraft:fox", | ||
"weight": 8, | ||
"minCount": 2, | ||
"maxCount": 4 | ||
} | ||
], | ||
"misc": [], | ||
"monster": [ | ||
{ | ||
"type": "minecraft:spider", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:zombie", | ||
"weight": 95, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:zombie_villager", | ||
"weight": 5, | ||
"minCount": 1, | ||
"maxCount": 1 | ||
}, | ||
{ | ||
"type": "minecraft:skeleton", | ||
"weight": 100, | ||
"minCount": 4, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:enderman", | ||
"weight": 10, | ||
"minCount": 1, | ||
"maxCount": 4 | ||
}, | ||
{ | ||
"type": "minecraft:witch", | ||
"weight": 5, | ||
"minCount": 1, | ||
"maxCount": 1 | ||
} | ||
], | ||
"underground_water_creature": [ | ||
{ | ||
"type": "minecraft:glow_squid", | ||
"weight": 10, | ||
"minCount": 4, | ||
"maxCount": 6 | ||
} | ||
], | ||
"water_ambient": [], | ||
"water_creature": [] | ||
}, | ||
"spawn_costs": {}, | ||
"carvers": { | ||
"air": [ | ||
"minecraft:cave", | ||
"minecraft:cave_extra_underground", | ||
"minecraft:canyon" | ||
] | ||
}, | ||
"features": [ | ||
[], | ||
[ | ||
"minecraft:lake_lava_underground", | ||
"minecraft:lake_lava_surface" | ||
], | ||
[ | ||
"minecraft:amethyst_geode" | ||
], | ||
[ | ||
"minecraft:monster_room", | ||
"minecraft:monster_room_deep" | ||
], | ||
[], | ||
[], | ||
[ | ||
"minecraft:ore_dirt", | ||
"minecraft:ore_gravel", | ||
"minecraft:ore_granite_upper", | ||
"minecraft:ore_granite_lower", | ||
"minecraft:ore_diorite_upper", | ||
"minecraft:ore_diorite_lower", | ||
"minecraft:ore_andesite_upper", | ||
"minecraft:ore_andesite_lower", | ||
"minecraft:ore_tuff", | ||
"minecraft:ore_coal_upper", | ||
"minecraft:ore_coal_lower", | ||
"minecraft:ore_iron_upper", | ||
"minecraft:ore_iron_middle", | ||
"minecraft:ore_iron_small", | ||
"minecraft:ore_gold", | ||
"minecraft:ore_gold_lower", | ||
"minecraft:ore_redstone", | ||
"minecraft:ore_redstone_lower", | ||
"minecraft:ore_diamond", | ||
"minecraft:ore_diamond_large", | ||
"minecraft:ore_diamond_buried", | ||
"minecraft:ore_lapis", | ||
"minecraft:ore_lapis_buried", | ||
"minecraft:ore_copper", | ||
"minecraft:underwater_magma", | ||
"minecraft:disk_sand", | ||
"minecraft:disk_clay", | ||
"minecraft:disk_gravel" | ||
], | ||
[], | ||
[ | ||
"minecraft:spring_water", | ||
"minecraft:spring_lava" | ||
], | ||
[ | ||
"minecraft:glow_lichen", | ||
"minecraft:patch_large_fern", | ||
"minecraft:trees_taiga", | ||
"minecraft:flower_default", | ||
"minecraft:patch_grass_taiga_2", | ||
"minecraft:brown_mushroom_taiga", | ||
"bone:trees_snowy" | ||
], | ||
[ | ||
"minecraft:freeze_top_layer" | ||
] | ||
] | ||
} |
Oops, something went wrong.