From bd15e14b56611927c1da191192a66c5574f22a22 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 21:42:32 +0200 Subject: [PATCH 1/2] Spawn dolphins in deep oceans --- biomes/ocean/deep.json | 8 ++++++++ entities/dolphin.json | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 entities/dolphin.json diff --git a/biomes/ocean/deep.json b/biomes/ocean/deep.json index 5fa65e20..59a61262 100644 --- a/biomes/ocean/deep.json +++ b/biomes/ocean/deep.json @@ -134,5 +134,13 @@ "structures/shipupsidedownbackhalfdegraded" ] } + ], + "entityInitialSpawns": [ + { + "entity": "dolphin", + "maxSpawns": 7, + "minSpawns": 4, + "rarity": 100 + } ] } diff --git a/entities/dolphin.json b/entities/dolphin.json new file mode 100644 index 00000000..fa9e2066 --- /dev/null +++ b/entities/dolphin.json @@ -0,0 +1,3 @@ +{ + "type": "DOLPHIN" +} \ No newline at end of file From 833ed02b130da7128ca2142dd49be483a98931ff Mon Sep 17 00:00:00 2001 From: Brian Neumann-Fopiano <29320316+NextdoorPsycho@users.noreply.github.com> Date: Sun, 25 Jul 2021 20:46:44 -0700 Subject: [PATCH 2/2] Lowered init spawns, as water animals already spawn properly --- biomes/ocean/deep.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biomes/ocean/deep.json b/biomes/ocean/deep.json index 59a61262..0686905b 100644 --- a/biomes/ocean/deep.json +++ b/biomes/ocean/deep.json @@ -138,8 +138,8 @@ "entityInitialSpawns": [ { "entity": "dolphin", - "maxSpawns": 7, - "minSpawns": 4, + "maxSpawns": 5, + "minSpawns": 2, "rarity": 100 } ]