Skip to content

Commit

Permalink
Updated spawncaps
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticKoko committed Dec 8, 2024
1 parent 7c30fcb commit ea5ce36
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
import net.minecraft.entity.SpawnGroup;

public enum HybridAquaticSpawnGroup {
FISH("ha_fish", 12, true, false, 64),
FISH("ha_fish", 20, true, false, 64),

FISH_UNDERGROUND("ha_fish_underground", 6, true, false, 128),
FISH_UNDERGROUND("ha_fish_underground", 10, true, false, 64),

CEPHALOPOD("ha_cephalopod", 6, true, false, 64),
CEPHALOPOD("ha_cephalopod", 10, true, false, 64),

JELLY("ha_jelly", 5, true, true, 64),
JELLY("ha_jelly", 10, true, true, 64),

JELLY_UNDERGROUND("ha_jelly_underground", 5, true, true, 128),
JELLY_UNDERGROUND("ha_jelly_underground", 10, true, true, 64),

SHARK("ha_shark", 4, true, true, 128),
SHARK("ha_shark", 10, true, true, 64),

SHARK_UNDERGROUND("ha_shark_underground", 2, true, true, 128),
SHARK_UNDERGROUND("ha_shark_underground", 5, true, true, 64),

CRUSTACEAN("crustacean", 10, true, false, 64),
CRUSTACEAN("crustacean", 20, true, false, 64),

CRUSTACEAN_UNDERGROUND("crustacean_underground", 5, true, false, 128),
CRUSTACEAN_UNDERGROUND("crustacean_underground", 10, true, false, 64),

CRITTER("ha_critter", 10, true, false, 64),

MINIBOSS("ha_miniboss", 10, false, true, 64);
MINIBOSS("ha_miniboss", 10, false, true, 128);

public SpawnGroup spawnGroup;
public final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ object EntityBiomeModifications {
addJelly(HybridAquaticEntityTypes.NOMURA_JELLYFISH, listOf(HybridAquaticBiomeTags.ARCTIC_OCEANS, HybridAquaticBiomeTags.COLD_OCEANS), 1, 1, 2)
addJelly(HybridAquaticEntityTypes.LIONS_MANE_JELLYFISH, listOf(HybridAquaticBiomeTags.ARCTIC_OCEANS, HybridAquaticBiomeTags.COLD_OCEANS), 1, 1, 2)
addJelly(HybridAquaticEntityTypes.BOX_JELLYFISH, listOf(HybridAquaticBiomeTags.MANGROVES, HybridAquaticBiomeTags.REEF, HybridAquaticBiomeTags.TROPICAL_OCEANS, HybridAquaticBiomeTags.SANDY_BEACHES), 1, 1, 1)

// underground jellies
addUndergroundJelly(HybridAquaticEntityTypes.ATOLLA_JELLYFISH, listOf(BiomeTags.IS_DEEP_OCEAN), 1, 1, 1)
addUndergroundJelly(HybridAquaticEntityTypes.BIG_RED_JELLYFISH, listOf(BiomeTags.IS_DEEP_OCEAN), 2, 1, 1)
addUndergroundJelly(HybridAquaticEntityTypes.COSMIC_JELLYFISH, listOf(BiomeTags.IS_DEEP_OCEAN), 2, 1, 1)
Expand Down

0 comments on commit ea5ce36

Please sign in to comment.