
後継者選び
提督選挙
海軍政権の後継者選びのひとつで、新しい統治者は主要な提督のなかから選ばれる。提督がいない場合は、適切な候補者が見つかるまで暫定評議会が国家を主導する。
統治禁止補正タイプcalc定義in_game/common/heir_selections/specialized.txt:1
4all_in_country = yes
5allow_foreign_ruler = no
6show_candidates = no
7ignore_ruler = yes
8heir_is_allowed = {
}
10potential = {
11has_reform = government_reform:admiralty_regime_reform
}
13locked = {
14has_reform = government_reform:admiralty_regime_reform
}
16calc = {
17if = {
18limit = {
19exists = root
}
21add = {
22desc = "HEIR_SELECTION_OLDER_HEIR_DESC" • 年齢ごとのスコア
23value = root.character_age
}
25add = {
26desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
27value = root.adm
}
29add = {
30desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
31value = root.dip
}
33add = {
34desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
35value = root.mil
}
38if = {
39limit = {
40is_admiral = yes
}
42add = {
43desc = "HEIR_SELECTION_ADMIRAL_DESC" • 提督である場合のスコア
44value = 100
}
}
48if = {
49limit = {
50NOR = {
51is_admiral = yes
52has_trait_category = admiral
}
}
55add = {
56desc = "HEIR_SELECTION_NOT_ADMIRAL_DESC" • 提督ではない場合のスコア
57value = -1000
}
}
61if = {
62limit = {
63has_trait_category = admiral
}
65add = {
66desc = "HEIR_SELECTION_ADMIRAL_TRAIT_DESC" • 提督の特性からのスコア
67value = 50
}
}
70if = {
72add = {
73desc = "HEIR_SELECTION_IS_UNSUITED_TO_RULE_DESC" • 統治に適さない
74value = -1000
}
}
}
78if = {
79limit = {
80not = {
80exists = root
}
}
82add = {
83desc = "HEIR_SELECTION_OLDER_HEIR_DESC" • 年齢ごとのスコア
84value = 1
}
86add = {
87desc = "HEIR_SELECTION_ADM_DESC" • 統治能力ごとのスコア
88value = 1
}
90add = {
91desc = "HEIR_SELECTION_DIP_DESC" • 外交能力ごとのスコア
92value = 1
}
94add = {
95desc = "HEIR_SELECTION_MIL_DESC" • 軍事能力ごとのスコア
96value = 1
}
98add = {
99desc = "HEIR_SELECTION_ADMIRAL_DESC" • 提督である場合のスコア
100value = 100
}
102add = {
103desc = "HEIR_SELECTION_ADMIRAL_TRAIT_DESC" • 提督の特性からのスコア
104value = 50
}
106add = {
107desc = "HEIR_SELECTION_NOT_ADMIRAL_DESC" • 提督ではない場合のスコア
108value = -1000
}
}
}
112succession_effect = {
}