Skip to content

Commit

Permalink
shattered now spawns in Deeplands
Browse files Browse the repository at this point in the history
  • Loading branch information
NewJumper committed Oct 29, 2023
1 parent 5a5cc94 commit c922785
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// 1.20.1 2023-10-27T17:39:45.0208373 Registries
// 1.20.1 2023-10-29T12:06:36.0052427 Registries
67f8cd0621b1c3614da8c1910f6b7bcb61660293 data/deeperdarker/dimension_type/otherside.json
1087b644ded881bbbf5188fd66ce16f07cc59fbf data/deeperdarker/worldgen/biome/blooming_caverns.json
16372ebfc8f36cee32a93f72d13073bb98639882 data/deeperdarker/worldgen/biome/deeplands.json
4491dd6887a8760b77f9a28406c3e4c0535b108d data/deeperdarker/worldgen/biome/deeplands.json
bd2c433caf3a3f7dfff3668a68dbdf56fa994df5 data/deeperdarker/worldgen/biome/echoing_forest.json
06d29b9291ed3a63be90750a8c6f182e0c168b7b data/deeperdarker/worldgen/biome/overcast_columns.json
799c485ec1466bd9b459c4ca9e2e2d5963465cc3 data/deeperdarker/worldgen/configured_feature/blooming_sculk_patch.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
"minCount": 3,
"weight": 11
},
{
"type": "deeperdarker:shattered",
"maxCount": 4,
"minCount": 2,
"weight": 5
},
{
"type": "minecraft:phantom",
"maxCount": 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ private static Biome deeplands(HolderGetter<PlacedFeature> placedFeatures, Holde
MobSpawnSettings.Builder mobSpawnBuilder = new MobSpawnSettings.Builder();
mobSpawnBuilder.addSpawn(MobCategory.MONSTER, new MobSpawnSettings.SpawnerData(DDEntities.SCULK_CENTIPEDE.get(), 6, 1, 4));
mobSpawnBuilder.addSpawn(MobCategory.MONSTER, new MobSpawnSettings.SpawnerData(DDEntities.SCULK_SNAPPER.get(), 11, 3, 6));
mobSpawnBuilder.addSpawn(MobCategory.MONSTER, new MobSpawnSettings.SpawnerData(DDEntities.SHATTERED.get(), 5, 2, 4));
mobSpawnBuilder.addSpawn(MobCategory.MONSTER, new MobSpawnSettings.SpawnerData(EntityType.PHANTOM, 2, 1, 2));

BiomeGenerationSettings.Builder biomeBuilder = new BiomeGenerationSettings.Builder(placedFeatures, worldCarvers);
Expand Down

0 comments on commit c922785

Please sign in to comment.