effect · retire_country_leader
Definition
- Supported scope:
COUNTRY - Supported target:
none
Description
retires a country leader and removes him as leader of his party, making the next in line the new party and country leader
retire_country_leaderCOUNTRYnoneretires a country leader and removes him as leader of his party, making the next in line the new party and country leader
Hands-on notes are AI-generated and checked against the vanilla command vocabulary — treat them as a starting point, not authoritative reference. The definition above is the game's own documentation.
retire_country_leader is commonly used in scripted events to trigger leadership succession—such as when a nation's leader steps down due to a coup, assassination, or term expiration, allowing the next candidate in line to automatically assume office. It is also frequently used upon focus completion to forcibly replace the incumbent leader, thereby switching the political direction.
country_event = {
id = my_mod.10
title = my_mod.10.t
desc = my_mod.10.d
option = {
name = my_mod.10.a
# Retire the current leader; the next in line assumes office
retire_country_leader = yes
add_political_power = -50
}
}
[create_country_leader](/wiki/effect/create_country_leader) — Use this command to create a new leader and insert them into the succession line, then execute retire_country_leader to precisely control who takes over, achieving a "designated replacement" effect.[add_popularity](/wiki/effect/add_popularity) — Leadership transitions often accompany ideology support fluctuations; coordinating these adjustments makes the political landscape more credible.[add_ideas](/wiki/effect/add_ideas) — Attach specific national spirits or advisor ideologies when the new leader takes office, reflecting the new regime's policy orientation.[has_country_leader](/wiki/trigger/has_country_leader) — Check in trigger conditions whether the current leader exists, ensuring the leader targeted for retirement is actually in office and preventing ineffective calls.create_country_leader, or confirm that the vanilla game already has candidates lined up.