
後継者選び
共和国4年任期
共和国の後継者選びのひとつで、統治者は4年間の任期で選挙によって選ばれる。
統治禁止補正タイプcalc補正
定義in_game/common/heir_selections/republic.txt:70
73use_election = yes
74term_duration = 48
75max_possible_candidates = 4
78heir_is_allowed = {
}
80calc = {
81if = {
82limit = {
83exists = root
}
85add = {
86desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
87value = root.adm
}
89add = {
90desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
91value = root.dip
}
93add = {
94desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
95value = root.mil
}
101if = {
103add = {
104desc = "HEIR_SELECTION_IS_UNSUITED_TO_RULE_DESC" • 統治に適さない
105value = -1000
}
}
}
111if = {
112limit = {
113not = {
113exists = root
}
}
115add = {
116desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
117value = 1
}
119add = {
120desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
121value = 1
}
123add = {
124desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
125value = 1
}
127add = {
128desc = "HEIR_SELECTION_OLDER_HEIR_DESC" • 年齢ごとのスコア
129value = 1
}
}
}
