2024-08-15 16:35:22
All checks were successful
sync / build (push) Successful in 15s

This commit is contained in:
actions[bot]
2024-08-15 16:35:22 +00:00
parent 1edf758efd
commit 8ad5a6c686
61 changed files with 1235 additions and 390 deletions

View File

@@ -145,4 +145,33 @@ ai_get_navy_experience = {
limit = { has_navy_experience < 50 }
navy_experience = 100
}
}
set_shipyard_output_boost = {
if = {
limit = {
has_game_rule = { rule = shipyard_output_boost option = FREE_ALL }
}
every_country = {
add_ideas = vnr_shipyard_output_boost
}
}
else_if = {
limit = {
has_game_rule = { rule = shipyard_output_boost option = FREE_AI }
}
every_country = {
limit = { is_ai = yes }
add_ideas = vnr_shipyard_output_boost
}
}
else_if = {
limit = {
has_game_rule = { rule = shipyard_output_boost option = FREE_PLAYER }
}
every_country = {
limit = { is_ai = no }
add_ideas = vnr_shipyard_output_boost
}
}
}