This is not a rant thread, but rather an FYI to my fellow forum dwellers. The "Rejoin the Railways" shared Baltic focus seems like it will increase infrastructure by 1 level in all core states, but the actual requirements are more complicated:
The last one was news to me. It means that if you built up infrastructure in key states to level 4 (80%) before the focus completes, expecting it to max out when this focus completes, you wasted your time. Instead, you should build states up to no higher than level 3 (60%), wait for the focus to finish, then built the last level of infrastructure in states you want to max out.
Perhaps this is a typo, and the focus logic should instead read like the below?
Either way, I wanted to pass this along in case some weren't already aware. This is still a powerful focus, but just not quite as powerful as I had hoped.
Screenshot #1 - The focus is one day from completing, and Warsaw, Kielce, and Katowice are already at level 4 infrastructure.
Screenshot #2 - The focus has completed, and all the surrounding states are now at level 4 infrastructure. However, Warsaw, Kielce, and Katowice remain unchanged at level 4 infrastructure, instead of being upgraded to level 5 as I was expecting before looking into the code.
- The state must not be your capital
- The state must be an owned core, not just an occupied core
- The state must have 2+ levels of infrastructure available to build
The last one was news to me. It means that if you built up infrastructure in key states to level 4 (80%) before the focus completes, expecting it to max out when this focus completes, you wasted your time. Instead, you should build states up to no higher than level 3 (60%), wait for the focus to finish, then built the last level of infrastructure in states you want to max out.
Perhaps this is a typo, and the focus logic should instead read like the below?
Code:
free_building_slots = {
building = infrastructure
size > 0
}
Either way, I wanted to pass this along in case some weren't already aware. This is still a powerful focus, but just not quite as powerful as I had hoped.
Code:
shared_focus = {
id = BALTIC_rejoin_the_railways
icon = GFX_goal_generic_construct_infrastructure
x = 10
y = 0
offset = {
x = -6
y = 0
trigger = {
}
}
cost = 5
ai_will_do = {
factor = 1
}
available = {
}
bypass = {
}
cancel_if_invalid = yes
continue_if_invalid = no
available_if_capitulated = no
search_filters = { FOCUS_FILTER_INDUSTRY }
completion_reward = {
every_owned_state = {
limit = {
is_core_of = ROOT
free_building_slots = {
building = infrastructure
size > 1
}
is_capital = no
}
add_building_construction = {
type = infrastructure
level = 1
instant_build = yes
}
}
}
}
Screenshot #1 - The focus is one day from completing, and Warsaw, Kielce, and Katowice are already at level 4 infrastructure.
Screenshot #2 - The focus has completed, and all the surrounding states are now at level 4 infrastructure. However, Warsaw, Kielce, and Katowice remain unchanged at level 4 infrastructure, instead of being upgraded to level 5 as I was expecting before looking into the code.
Last edited:
- 6
- 1