Is there a way to set the admin building on a starter planet to a specific tile?
This section
For example, suppose it was a size 25 planet and I wanted the admin building to always placed in the centre tile? (the 'x')
ooooo
ooooo
ooxoo
ooooo
ooooo
This section
Code:
random_tile = {
limit = { has_blocker = no has_building = no num_adjacent_tiles > 3 }
set_building = "building_capital_1"
add_resource = {
resource = food
amount = 1
replace = yes
}
add_resource = {
resource = minerals
amount = 2
}
random_neighboring_tile = {
limit = { has_blocker = no has_building = no }
set_building = "building_hydroponics_farm_1"
add_resource = {
resource = food
amount = 2
replace = yes
}
}
random_neighboring_tile = {
limit = { has_blocker = no has_building = no }
set_building = "building_power_plant_1"
add_resource = {
resource = energy
amount = 2
replace = yes
}
}
random_neighboring_tile = {
limit = { has_blocker = no has_building = no }
set_building = "building_power_plant_1"
add_resource = {
resource = energy
amount = 2
replace = yes
}
}
random_neighboring_tile = {
limit = { has_blocker = no has_building = no }
set_building = "building_mining_network_1"
add_resource = {
resource = minerals
amount = 2
replace = yes
}
}
}
For example, suppose it was a size 25 planet and I wanted the admin building to always placed in the centre tile? (the 'x')
ooooo
ooooo
ooxoo
ooooo
ooooo