Terraforming from Tomb to Gaia and from Nanite to Gaia/Hive/Machine

  • We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

mial42

Lt. General
21 Badges
Sep 28, 2020
1.434
3.024
  • Stellaris - Path to Destruction bundle
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Stellaris: Federations
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Stellaris: Megacorp
  • Stellaris: Distant Stars
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Stellaris: Synthetic Dawn
  • Crusader Kings II
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Stellaris
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Charlemagne
Right now, you can't terraform a tomb world into a Gaia world, or a nanite world directly to a Gaia/Hive/Machine world. This adds pointless micro and makes no sense (since you can go straight from barren worlds, with less ability to support life then a tomb world and canonically more difficult to terraform then nanites, to any of these three). This is also extremely easy to fix; you just need to add a few terraform links like so:
@gaiaCost = 7500
@gaiaTime = 3600

@machineCost = 10000
@machineTime = 7200

@hiveCost = 10000
@hiveTime = 7200

#Tomb to Gaia
terraform_link = {
from = "pc_nuked"
to = "pc_gaia"

energy = 10000
duration = 7200

potential = {
has_ascension_perk = "ap_world_shaper"
}
ai_weight = {
weight = 5
modifier = {
factor = 0
resource_stockpile_compare = { resource = energy value < 10000 }
}
modifier = {
factor = 0
OR = {
is_mechanical_empire = yes
is_cyborg_empire = yes
has_authority = auth_machine_intelligence
}
}
}
}

terraform_link = {
from = pc_gray_goo
to = pc_gaia
energy = 1000
duration = 360
potential = {
has_ascension_perk = "ap_world_shaper"
from = { has_modifier = terraforming_candidate }
}
ai_weight = {
weight = 5
modifier = {
factor = 0
resource_stockpile_compare = { resource = energy value < 3000 }
}
}
effect = { from = { remove_modifier = terraforming_candidate } }
}

terraform_link = {
from = pc_gray_goo
to = pc_machine
energy = 1000
duration = 360
potential = {
has_ascension_perk = ap_machine_worlds
from = { has_modifier = terraforming_candidate }
}
ai_weight = {
weight = 20
modifier = {
factor = 0
resource_stockpile_compare = { resource = energy value < 3000 }
}
}
effect = { from = { remove_modifier = terraforming_candidate } }
}

terraform_link = {
from = pc_gray_goo
to = pc_hive
energy = 1000
duration = 360
potential = {
has_ascension_perk = ap_hive_worlds
from = { has_modifier = terraforming_candidate }
}
ai_weight = {
weight = 20
modifier = {
factor = 0
resource_stockpile_compare = { resource = energy value < 3000 }
}
}
effect = { from = { remove_modifier = terraforming_candidate } }
}
 
  • 2Like
  • 1
Reactions: