This commit is contained in:
Pyritie
2025-09-17 23:09:44 +01:00
parent 180a48412d
commit b1ea189f02
3 changed files with 881 additions and 748 deletions

View File

@@ -274,6 +274,7 @@ const registerAdAstraBlockTags = (event) => {
event.add('minecraft:animals_spawnable_on', '#tfg:mars_soil')
event.add('minecraft:animals_spawnable_on', '#tfg:mars_plants')
event.add('minecraft:animals_spawnable_on', '#forge:gravel')
event.add('minecraft:valid_spawn', '#minecraft:animals_spawnable_on')
event.add('tfc:can_carve', '#ad_astra:moon_stone_replaceables')
event.add('tfc:can_carve', '#ad_astra:mars_stone_replaceables')
@@ -372,6 +373,7 @@ const registerAdAstraBiomeTags = (event) => {
event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_dunes')
event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_deep_desert')
event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_mountains')
event.add('tfg:has_medium_sand_particles', 'tfg:mars/amber_plains')
event.add('tfg:has_medium_sand_particles', 'tfg:mars/amber_hills')
event.add('tfg:has_medium_sand_particles', 'tfg:mars/rusticus_plains')
@@ -382,7 +384,6 @@ const registerAdAstraBiomeTags = (event) => {
event.add('tfg:has_light_sand_particles', 'tfg:mars/amber_edge')
event.add('tfg:has_light_sand_particles', 'tfg:mars/rusticus_edge')
event.add('tfg:has_light_sand_particles', 'tfg:mars/sangnum_edge')
event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_mountains')
event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_river')
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
// priority: 0
"use strict";
TFCEvents.registerFaunas(event => {
event.replace("tfg:glacian_ram", "on_ground", "ocean_floor");
event.replace("tfg:sniffer", "on_ground", "ocean_floor");
event.replace("tfg:wraptor", "on_ground", "ocean_floor");
event.replace("species:goober", "on_ground", "ocean_floor");
event.replace("species:springling", "on_ground", "ocean_floor");
event.replace("wan_ancient_beasts:walker", "on_ground", "ocean_floor");
event.replace("wan_ancient_beasts:eater", "on_ground", "ocean_floor");
event.replace("wan_ancient_beasts:crusher", "on_ground", "ocean_floor");
event.replace("wan_ancient_beasts:soarer", "no_restrictions", "world_surface");
event.replace("wan_ancient_beasts:glider", "no_restrictions", "world_surface");
event.and("wan_ancient_beasts:surfer", "no_restrictions", "ocean_floor");
})