added some underground mobs, martian raptor still needs a reskin

This commit is contained in:
Pyritie 2025-09-03 01:40:30 +01:00
parent 073e829383
commit 0a98ad4449
18 changed files with 407 additions and 100 deletions

View file

@ -106,6 +106,7 @@
"block.ad_astra.polished_glacio_stone_slab": "Polished Phonolite Slab",
"block.ad_astra.polished_glacio_stone_stairs": "Polished Phonolite Stairs",
"entity.ad_astra.corrupted_lunarian": "Lunar Zombie",
"entity.ad_astra.martian_raptor": "Skeletal Raptor",
"entity.ad_astra.tier_1_rocket": "R-Aluminosteel Rocket",
"entity.ad_astra.tier_2_rocket": "ASM 4914 Titanium Rocket",
"entity.ad_astra.tier_3_rocket": "45-Ti Tungstensteel Rocket",

View file

@ -16,6 +16,7 @@
"block.gtceu.ostrum_harvester": "Ostrum Harvester",
"block.gtceu.moon_dust_harvester": "Moon Dust Harvester",
"block.gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator",
"block.tfg.bioreactor": "Bioreactor",
"block.gtceu.copper_crate": "Copper Crate",
"block.gtceu.copper_drum": "Copper Drum",
"block.gtceu.black_bronze_crate": "Black Bronze Crate",
@ -41,6 +42,7 @@
"gtceu.ostrum_harvester": "Ostrum Harvester",
"gtceu.moon_dust_harvester": "Moon Dust Harvester",
"gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator",
"gtceu.bioreactor": "Bioreactor",
"item.gtceu.tiny_wood_dust": "Tiny Pile of Softwood Pulp",
"item.gtceu.small_wood_dust": "Small Pile of Softwood Pulp",
"item.gtceu.wood_dust": "Softwood Pulp",

View file

@ -318,6 +318,11 @@
"block.tfg.casings.machine_casing_green_solar_panel": "Advanced Solar Panel Casing",
"block.tfg.casings.machine_casing_red_solar_panel": "Elite Solar Panel Casing",
"block.tfg.machine_casing_aluminium_plated_steel": "Aluminium Plated Steel Machine Casing",
"block.tfg.casings.machine_casing_ultraviolet": "§dUltraviolet §fMachine Casing",
"block.tfg.casings.machine_casing_bioculture": "Bioculture Machine Casing",
"block.tfg.casings.machine_casing_bioculture_glass": "Bioculture Glass",
"block.tfg.casings.bioculture_rotor_primary": "Primary Bioculture Rotor",
"block.tfg.casings.bioculture_rotor_secondary": "Secondary Bioculture Rotor",
"block.tfg.sand.fluorapatite.blue": "Blue Fluorapatite Sand",
"block.tfg.sandstone.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone",
"block.tfg.sandstone.wall.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Wall",
@ -646,6 +651,8 @@
"item.tfg.flax_waste": "Scraped Flax",
"item.tfg.linen_thread": "Linen Thread",
"item.tfg.linen_cloth": "Linen Cloth",
"item.tfg.uv_led": "§dUltraviolet §fLED",
"item.tfg.smd_uv_led": "§fSMD §dUltraviolet §fLED",
"material.tfg.latex": "Latex",
"material.tfg.vulcanized_latex": "Vulcanized Latex",
"material.tfg.fluix": "Fluix",

View file

@ -52,7 +52,6 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.00003,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,
@ -69,6 +68,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -132,18 +139,6 @@
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:crimson_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:warped_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
@ -155,6 +150,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -74,6 +74,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -149,17 +157,29 @@
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "minecraft:enderman",
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -69,6 +69,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -155,6 +163,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -51,16 +51,48 @@
]
],
"has_precipitation": false,
"creature_spawn_probability": 0.00003,
"spawn_costs": {
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
"ambient": [],
"axolotls": [],
"creature": [],
"creature": [
{
"type": "species:stackatick",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],
"water_ambient": [],

View file

@ -56,7 +56,6 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.00003,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,
@ -73,6 +72,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -80,11 +87,17 @@
"axolotls": [],
"creature": [
{
"type": "wan_ancient_beasts:crusher",
"type": "species:stackatick",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "wan_ancient_beasts:crusher",
"maxCount": 2,
"minCount": 1,
"weight": 10
},
{
"type": "wan_ancient_beasts:glider",
"maxCount": 2,
@ -94,18 +107,6 @@
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:crimson_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:warped_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
@ -117,6 +118,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -50,31 +50,58 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.00006,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:warped_forest_enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:badlands_enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
"ambient": [],
"axolotls": [],
"creature": [],
"creature": [
{
"type": "species:stackatick",
"maxCount": 2,
"minCount": 1,
"weight": 100
}
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],
"water_ambient": [],

View file

@ -87,6 +87,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -144,17 +152,29 @@
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "minecraft:enderman",
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -65,6 +65,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -134,17 +142,29 @@
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "minecraft:enderman",
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -52,7 +52,6 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.00003,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,
@ -69,6 +68,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -132,18 +139,6 @@
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:crimson_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:warped_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
@ -155,6 +150,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -74,6 +74,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -149,17 +157,29 @@
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "minecraft:enderman",
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -69,6 +69,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -155,6 +163,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -52,7 +52,6 @@
"#tfg:mars_top_layer_modification"
],
"has_precipitation": false,
"creature_spawn_probability": 0.00003,
"spawn_costs": {
"endermanoverhaul:crimson_forest_enderman": {
"energy_budget": 0.05,
@ -69,6 +68,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -132,18 +139,6 @@
],
"misc": [],
"monster": [
{
"type": "endermanoverhaul:crimson_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:warped_forest_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
@ -155,6 +150,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -74,6 +74,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -149,17 +157,29 @@
"minCount": 1,
"weight": 100
},
{
"type": "endermanoverhaul:badlands_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 100
},
{
"type": "minecraft:enderman",
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -69,6 +69,14 @@
"minecraft:enderman": {
"energy_budget": 0.05,
"charge": 0.9
},
"endermanoverhaul:cave_enderman": {
"energy_budget": 0.15,
"charge": 0.7
},
"species:quake": {
"energy_budget": 0.2,
"charge": 0.7
}
},
"spawners": {
@ -155,6 +163,24 @@
"maxCount": 1,
"minCount": 1,
"weight": 20
},
{
"type": "endermanoverhaul:cave_enderman",
"maxCount": 1,
"minCount": 1,
"weight": 50
},
{
"type": "ad_astra:martian_raptor",
"maxCount": 2,
"minCount": 1,
"weight": 100
},
{
"type": "species:quake",
"maxCount": 1,
"minCount": 1,
"weight": 100
}
],
"underground_water_creature": [],

View file

@ -385,7 +385,7 @@ const registerAdAstraEntityTypeTags = (event) => {
'endermanoverhaul:spirit',
'endermanoverhaul:end_enderman',
'endermanoverhaul:end_islands_enderman',
// mars
'tfg:sniffer',
'tfg:glacian_ram',
'tfg:wraptor',
@ -393,9 +393,11 @@ const registerAdAstraEntityTypeTags = (event) => {
'species:cruncher',
'species:springling',
'species:quake',
'species:stackatick',
'endermanoverhaul:crimson_forest_enderman',
'endermanoverhaul:warped_forest_enderman',
'endermanoverhaul:badlands_enderman',
'endermanoverhaul:cave_enderman',
'wan_ancient_beasts:walker',
'wan_ancient_beasts:eater',
'wan_ancient_beasts:crusher',