
後継者選び
寡頭選挙
共和国の後継者選びのひとつで、統治者は選挙によって少数支配者の階級から選ばれる。
統治禁止補正タイプcalc補正
定義in_game/common/heir_selections/republic.txt:1
3use_election = yes
4term_duration = 0
5max_possible_candidates = 3
8heir_is_allowed = {
}
10calc = {
11if = {
12limit = {
13exists = root
}
15add = {
16desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
17value = root.adm
}
19add = {
20desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
21value = root.dip
}
23add = {
24desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
25value = root.mil
}
31if = {
33add = {
34desc = "HEIR_SELECTION_IS_UNSUITED_TO_RULE_DESC" • 統治に適さない
35value = -1000
}
}
}
41if = {
42limit = {
43not = {
43exists = root
}
}
45add = {
46desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
47value = 1
}
49add = {
50desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
51value = 1
}
53add = {
54desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
55value = 1
}
57add = {
58desc = "HEIR_SELECTION_OLDER_HEIR_DESC" • 年齢ごとのスコア
59value = 1
}
}
}
