Skip to content

Commit

Permalink
Some spawn setting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticKoko committed Jun 20, 2024
1 parent 3cd4aab commit cf5033d
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 93 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@
"creature": [],
"crustacean": [],
"crustacean_underground": [],
"ha_cephalopod": [],
"ha_cephalopod_underground": [],
"ha_critter": [],
"ha_fish": [],
"ha_fish_underground": [],
"ha_jelly": [],
"ha_jelly_underground": [],
"ha_miniboss": [],
"ha_shark": [],
"ha_squid": [],
"ha_squid_underground": [],
"misc": [],
"monster": [],
"underground_water_creature": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
"creature": [],
"crustacean": [],
"crustacean_underground": [],
"ha_cephalopod": [],
"ha_cephalopod_underground": [],
"ha_critter": [],
"ha_fish": [],
"ha_fish_underground": [],
"ha_jelly": [],
"ha_jelly_underground": [],
"ha_miniboss": [],
"ha_shark": [],
"ha_squid": [],
"ha_squid_underground": [],
"misc": [],
"monster": [],
"underground_water_creature": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
"creature": [],
"crustacean": [],
"crustacean_underground": [],
"ha_cephalopod": [],
"ha_cephalopod_underground": [],
"ha_critter": [],
"ha_fish": [],
"ha_fish_underground": [],
"ha_jelly": [],
"ha_jelly_underground": [],
"ha_miniboss": [],
"ha_shark": [],
"ha_squid": [],
"ha_squid_underground": [],
"misc": [],
"monster": [],
"underground_water_creature": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@
"creature": [],
"crustacean": [],
"crustacean_underground": [],
"ha_cephalopod": [],
"ha_cephalopod_underground": [],
"ha_critter": [],
"ha_fish": [],
"ha_fish_underground": [],
"ha_jelly": [],
"ha_jelly_underground": [],
"ha_miniboss": [],
"ha_shark": [],
"ha_squid": [],
"ha_squid_underground": [],
"misc": [],
"monster": [],
"underground_water_creature": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
import net.minecraft.entity.SpawnGroup;

public enum HybridAquaticSpawnGroup {
FISH("ha_fish", 3, true, false, 64),
FISH("ha_fish", 5, true, false, 64),
FISH_UNDERGROUND("ha_fish_underground", 3, true, false, 64),
CEPHALOPOD("ha_squid", 3, true, false, 64),
CEPHALOPOD_UNDERGROUND("ha_squid_underground", 3, true, false, 64),
JELLY("ha_jelly", 3, true, false, 64),
CEPHALOPOD("ha_cephalopod", 5, true, true, 64),
CEPHALOPOD_UNDERGROUND("ha_cephalopod_underground", 3, true, false, 64),
JELLY("ha_jelly", 5, true, false, 64),
JELLY_UNDERGROUND("ha_jelly_underground", 3, true, false, 64),
SHARK("ha_shark", 3, true, true, 64),
CRUSTACEAN("crustacean", 3, true, false, 64),
CRUSTACEAN("crustacean", 5, true, false, 64),
CRUSTACEAN_UNDERGROUND("crustacean_underground", 3, true, false, 64),
CRITTER("ha_critter", 3, true, false, 64),
MINIBOSS("ha_miniboss", 3, false, true, 640);
CRITTER("ha_critter", 5, true, false, 64),
MINIBOSS("ha_miniboss", 3, false, true, 64);

public SpawnGroup spawnGroup;
public final String name;
Expand Down
Loading

0 comments on commit cf5033d

Please sign in to comment.