How would I go about modifying the default Sol System to make Mars and Venus desert and arid planets, respectively? I know there's a guide for adding new systems, but I want to replace/modify the vanilla one.
planet = {
name = "Mars"
class = "pc_desert"
orbit_distance = 20
orbit_angle = 60
size = 15
has_ring = no
entity = "barren_planet_mars_entity"
}
planet = {
name = "Mars"
class = "pc_desert"
orbit_distance = 20
orbit_angle = 60
size = 15
has_ring = no
entity = "barren_planet_mars_entity"
tile_blockers = none
init_effect = {
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_mountain_range"
}
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_active_volcano"
}
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_deep_sinkhole"
}
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_crater"
}
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_crater"
}
random_tile = {
limit = { has_blocker = no has_building = no }
set_blocker = "tb_quicksand_basin"
}
}
}
Thanks. So I just modify the file? Doesn't that risk being overridden by future patches?
Thank you for your help!
EDIT: Does this override the custom Mars texture? Can I set it to keep that texture as a desert planet, but lose it after being terraformed further?
EDIT2: And how do I add planet modifiers? I want Mars to have Weak Magnetic Field and Low Gravity, and Venus to have Tidal Locked.
init_effect = {
add_modifier = {
modifier = "stone_age_civilization"
days = -1
}
}
How would I go about modifying the default Sol System to make Mars and Venus desert and arid planets, respectively? I know there's a guide for adding new systems, but I want to replace/modify the vanilla one.