
계승 법칙
통치 가문 내 선출 계승
군주국의 계승 법칙 유형입니다. 새 통치자는 귀족에 의해 선출됩니다. 통치 가문의 구성원만이 선출될 자격을 갖습니다.
이 계승 법칙은 현재 또는 미래의 동군연합에 뜻밖의 영향을 줄 수 있습니다.
통치 차단보정치 유형calc정의in_game/common/heir_selections/monarchy.txt:1036
1037use_election = yes
1038all_in_country = no
1039all_in_dynasty = yes
1040ignore_ruler = yes
1041allow_female = no
1042max_possible_candidates = 5
1043term_duration = 0
1044show_candidates = no
1046heir_is_allowed = {
}
1048locked = {
1050estate_satisfaction:nobles_estate < 0.8
}
1052potential = {
}
1060calc = {
1061if = {
1062limit = {
1063exists = root
}
1065add = {
1066desc = "HEIR_SELECTION_RANDOM_DESC" • 후보자는 무작위 점수를 받습니다(0.00부터 +200.00까지)
1067value = random_integer
1068modulo = 200
}
1071add = {
1072desc = "HEIR_SELECTION_ADM_DESC" • 행정 능력당 부여되는 점수
1073value = root.adm
}
1075add = {
1076desc = "HEIR_SELECTION_DIP_DESC" • 외교 능력당 부여되는 점수
1077value = root.dip
}
1079add = {
1080desc = "HEIR_SELECTION_MIL_DESC" • 군사 능력당 부여되는 점수
1081value = root.mil
}
1084if = {
1086add = {
1087desc = "HEIR_SELECTION_IS_UNSUITED_TO_RULE_DESC" • 통치에 부적합
1088value = -1000
}
}
}
1093if = {
1094limit = {
1095NOT = {
1095exists = root
}
}
1097add = {
1098desc = "HEIR_SELECTION_RANDOM_DESC" • 후보자는 무작위 점수를 받습니다(0.00부터 +200.00까지)
1099format = "FORMAT_NO_VALUE"
}
1101add = {
1102desc = "HEIR_SELECTION_ADM_DESC" • 행정 능력당 부여되는 점수
1103value = 1
}
1105add = {
1106desc = "HEIR_SELECTION_DIP_DESC" • 외교 능력당 부여되는 점수
1107value = 1
}
1109add = {
1110desc = "HEIR_SELECTION_MIL_DESC" • 군사 능력당 부여되는 점수
1111value = 1
}
}
}