
계승 법칙
의례 선출
전 세계 여러 문화에서 채택하는 계승 법칙 유형입니다. 새 통치자는 이전 통치자의 아들 중에서 선출되는데, 전통 의례에 따른 경쟁에서 승리한 자가 통치 권한을 얻습니다.
통치 차단보정치 유형calc정의in_game/common/heir_selections/tribal.txt:166
173include_ruler_siblings = no
174all_in_dynasty = no
175through_female = no
176allow_female = no
177allow_children = yes
178ignore_ruler = yes
179show_candidates = yes
182heir_is_allowed = {
}
189calc = {
191if = {
192limit = {
193exists = root
}
195add = {
196desc = "HEIR_SELECTION_RANDOM_DESC" • 후보자는 무작위 점수를 받습니다(0.00부터 +200.00까지)
197value = random_integer
198modulo = 200
}
200add = {
201desc = "HEIR_SELECTION_ADM_DESC" • 행정 능력당 부여되는 점수
202value = root.adm
}
204add = {
205desc = "HEIR_SELECTION_DIP_DESC" • 외교 능력당 부여되는 점수
206value = root.dip
}
208add = {
209desc = "HEIR_SELECTION_MIL_DESC" • 군사 능력당 부여되는 점수
210value = root.mil
}
213if = {
214limit = {
215NOT = {
216scope:target = {
217any_primary_or_accepted_culture = {
217root.culture = this
}
}
}
}
221add = {
222desc = "HEIR_SELECTION_NON_ACCEPTED_CULTURE_DESC" • 소외 문화에 속한 경우 부여되는 점수
223value = -100
}
}
227if = {
228limit = {
228exists = root.father
}
230if = {
231limit = {
232root.father = scope:target.ruler
}
234add = {
236desc = "HEIR_SELECTION_PARENT_IS_CURRENT_RULER_DESC" • 부모가 현 통치자인 경우 부여되는 점수
237value = 100
}
}
}
243if = {
244limit = {
244exists = root.mother
}
246if = {
247limit = {
248scope:target = {
249ruler ?= {
250exists = first_spouse
}
}
253root.mother = scope:target.ruler.first_spouse
}
255add = {
257desc = "HEIR_SELECTION_PARENT_IS_CURRENT_RULER_FIRST_WIFE_DESC" • 모친이 현 통치자의 정실부인인 경우 부여되는 점수
258value = 50
}
}
}
263if = {
264limit = {
265root.age_in_years < 10
}
267add = {
268desc = "HEIR_SELECTION_TOO_YOUNG_DESC" • 10세 미만인 경우 부여되는 점수
269value = -100
}
}
273if = {
274limit = {
275root.age_in_years > 40
}
277add = {
278desc = "HEIR_SELECTION_TOO_OLD_DESC" • 40세 초과인 경우 부여되는 점수
279value = root.age_in_years
280subtract = 40
281multiply = -10
}
}
285if = {
287add = {
288desc = "HEIR_SELECTION_IS_UNSUITED_TO_RULE_DESC" • 통치에 부적합
289value = -1000
}
}
}
297if = {
298limit = {
299not = {
299exists = root
}
}
301add = {
302desc = "HEIR_SELECTION_RANDOM_DESC" • 후보자는 무작위 점수를 받습니다(0.00부터 +200.00까지)
303format = "FORMAT_NO_VALUE"
}
305add = {
306desc = "HEIR_SELECTION_ADM_DESC" • 행정 능력당 부여되는 점수
307value = 1
}
309add = {
310desc = "HEIR_SELECTION_DIP_DESC" • 외교 능력당 부여되는 점수
311value = 1
}
313add = {
314desc = "HEIR_SELECTION_MIL_DESC" • 군사 능력당 부여되는 점수
315value = 1
}
317add = {
318desc = "HEIR_SELECTION_NON_ACCEPTED_CULTURE_DESC" • 소외 문화에 속한 경우 부여되는 점수
319value = -100
}
321add = {
322desc = "HEIR_SELECTION_PARENT_IS_CURRENT_RULER_DESC" • 부모가 현 통치자인 경우 부여되는 점수
323value = 100
}
325add = {
326desc = "HEIR_SELECTION_PARENT_IS_CURRENT_RULER_FIRST_WIFE_DESC" • 모친이 현 통치자의 정실부인인 경우 부여되는 점수
327value = 50
}
329add = {
330desc = "HEIR_SELECTION_TOO_YOUNG_DESC" • 10세 미만인 경우 부여되는 점수
331value = -100
}
333add = {
334desc = "HEIR_SELECTION_TOO_OLD_DESC" • 40세 초과인 경우 부여되는 점수
335value = -10
}
}
}