Skip to content

Lunar Mob Spawn Info

Corgi Taco edited this page Aug 17, 2022 · 10 revisions

Defines mob spawning information.

  • use_biome_spawn_settings - true/false to use the biome's spawns.
  • force_surface_spawning - true/false to use force mob spawns on the surface.
  • slimes_spawn_everywhere - true/false to allow slimes to spawn everywhere if their spawning rules meet the requirement. Disregards full moon settings used in swamps and slime chunks.
  • mob_spawn_settings - Uses Mob Spawn Settings.

Example

"mob_spawn_settings": {
	"spawners": {
		"ambient": [],
		"axolotls": [],
		"creature": [],
		"misc": [],
		"monster": [
			{
			   "type": "minecraft:spider",
          		   "weight": 100,
          		   "minCount": 4,
	 		   "maxCount": 4
			},
			{
			  "type": "minecraft:zombie",
			  "weight": 95,
			  "minCount": 4,
			  "maxCount": 4
			}
		],
		"underground_water_creature": [],
		"water_ambient": [],
		"water_creature": []
	},
	"spawn_costs": {
		"minecraft:skeleton": {
			"energy_budget": 0.7,
			"charge": 0.15
		}
	},
	"creature_spawn_probability": 1.0
}