I have been fiddling around with the game trying everything i can think of to get a system initializer to force spawn an orbitally gathered resource on a specific planet.
I know that i'll need to customize my deposits in order to specify WHAT should be there, but in the meantime, i just cannot seem to get it to spawn anything, instead of random deposits, which tend to end up nothing, but sometimes give random deposits.
Heres what im using, inside of my system initializer, to test:
of course the issue cannot be with the mineral deposit itself, as this is a paradox-created deposit. This does not work.
Okay, so what does the wiki say? http://www.stellariswiki.com/Effects On the effects page, fourth entry down, shows add_deposit, saying "Adds a deposit to a tile or stellar object" However, the scope is limited to a planetary tile. Okay, since how you add resources to a planetary tile is by selecting a tile, and using add_resource command, so maybe this will work?
Unfortunately, this does not seem to work either. I even changed it to a random colonizeable, so i could check the tiles to see if maybe i was mistaken, and it adds the deposit to a tile, but this isnt the case either.
I'm close to pulling my hair out, why the hell is it so difficult/obfuscated to specify the orbital resource??
I know that i'll need to customize my deposits in order to specify WHAT should be there, but in the meantime, i just cannot seem to get it to spawn anything, instead of random deposits, which tend to end up nothing, but sometimes give random deposits.
Heres what im using, inside of my system initializer, to test:
Code:
planet = {
class = random_non_colonizable
orbit_distance = 20
size = {min = 15 max = 30}
add_deposit = d_immense_mineral_deposit
}
of course the issue cannot be with the mineral deposit itself, as this is a paradox-created deposit. This does not work.
Okay, so what does the wiki say? http://www.stellariswiki.com/Effects On the effects page, fourth entry down, shows add_deposit, saying "Adds a deposit to a tile or stellar object" However, the scope is limited to a planetary tile. Okay, since how you add resources to a planetary tile is by selecting a tile, and using add_resource command, so maybe this will work?
Code:
planet = {
class = random_non_colonizable
orbit_distance = 20
size = {min = 15 max = 30}
random_tile = {
add_deposit = d_immense_mineral_deposit
}
}
I'm close to pulling my hair out, why the hell is it so difficult/obfuscated to specify the orbital resource??