This commit is contained in:
Pyritie 2025-09-18 02:27:18 +01:00
parent c4129126ec
commit 22166e7384
11 changed files with 21 additions and 9 deletions

View file

@ -44,7 +44,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -50,7 +50,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -45,7 +45,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -44,7 +44,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -50,7 +50,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -45,7 +45,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -44,7 +44,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -50,7 +50,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -45,7 +45,7 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.15,
"creature_spawn_probability": 0.2,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,

View file

@ -961,4 +961,14 @@ function registerTFGFauna(event) {
faunaData.solidGround(true)
},
"wan_ancient_beasts:glider")
event.fauna(
climate => {
climate.minTemp(-75)
climate.fuzzy(true)
},
faunaData => {
faunaData.solidGround(false)
},
"wan_ancient_beasts:surfer")
}

View file

@ -13,4 +13,6 @@ TFCEvents.registerFaunas(event => {
event.replace("wan_ancient_beasts:soarer", "no_restrictions", "world_surface");
event.replace("wan_ancient_beasts:glider", "no_restrictions", "world_surface");
event.replace("wan_ancient_beasts:surfer", "no_restrictions", "ocean_floor");
})