flavor_sco.14 大卫二世登基
时间范围:1337.1.1 - 1342.3.5(每月 10% 概率触发)
触发条件:
- 国家没有君主(
has_ruler = no) - 国家有摄政(
has_regent = yes) - 政府类型为君主制(
government_type = government_type:monarchy) - 继承人必须是人物
sco_david_ii,且该人物未成年、存活(heir = { this = character:sco_david_ii is_adult = no is_alive = yes })
关键效果:
-
选项 A (flavor_sco.14.a):
- 获得少量正统性增益(
add_legitimacy = legitimacy_mild_bonus) - 若年轻的大卫二世(
young_king_david)文化不是苏格兰(culture:scottish),则将其文化改为苏格兰 - 若大卫二世未接受过行政教育(
administrative_education)或昂贵深度教育(expensive_in_depth_education),则为其设置行政教育,并增加10点行政能力(add_adm = 10)
- 获得少量正统性增益(
-
选项 B (flavor_sco.14.b):
- 获得少量正统性增益(
add_legitimacy = legitimacy_mild_bonus) - 若年轻的大卫二世文化不是高地(
culture:highland),则将其文化改为高地 - 若大卫二世未接受过军事教育(
military_education)或昂贵深度教育,则为其设置军事教育,并增加10点军事能力(add_mil = 10)
- 获得少量正统性增益(
-
选项 C (flavor_sco.14.c):
- 获得少量威望增益(
add_prestige = prestige_mild_bonus) - 若年轻的大卫二世文化不是法兰西(
culture:french),则将其文化改为法兰西 - 若大卫二世未接受过外交教育(
diplomatic_education)或昂贵深度教育,则为其设置外交教育,并增加10点外交能力(add_dip = 10)
- 获得少量威望增益(
背景介绍: 该事件模拟了苏格兰王国在1337年至1342年间,年幼的国王大卫二世(David II)在父王罗伯特一世(Robert the Bruce)去世后,面临登基与培养方向选择的关键时期。由于国王年幼,国家由摄政统治,此事件反映了苏格兰贵族与外部势力(如法国)对年轻国王未来统治风格与文化取向的影响与争夺。
完整事件代码:
flavor_sco.14 = { # raising David II
type = country_event
title = flavor_sco.14.title
desc = flavor_sco.14.desc
fire_only_once = yes
illustration_tags = {
10 = interior
10 = angry
}
dynamic_historical_event = {
tag = SCO
from = 1337.1.1
to = 1342.3.5
monthly_chance = 10
}
trigger = {
has_ruler = no
has_regent = yes
government_type = government_type:monarchy
heir = {
this = character:sco_david_ii
is_adult = no
is_alive = yes
}
}
immediate = {
character:sco_david_ii = { save_scope_as = young_king_david }
c:FRA = { save_scope_as = france }
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
}
option = {
name = flavor_sco.14.a
add_legitimacy = legitimacy_mild_bonus
scope:young_king_david = {
if = {
limit = { NOT = { culture = culture:scottish } }
change_character_culture = culture:scottish
}
if = {
limit = {
NOR = {
has_child_education = administrative_education
has_child_education = expensive_in_depth_education
}
}
set_child_education = child_education:administrative_education
add_adm = 10
}
}
}
option = {
name = flavor_sco.14.b
add_legitimacy = legitimacy_mild_bonus
scope:young_king_david = {
if = {
limit = { NOT = { culture = culture:highland } }
change_character_culture = culture:highland
}
if = {
limit = {
NOR = {
has_child_education = military_education
has_child_education = expensive_in_depth_education
}
}
set_child_education = child_education:military_education
add_mil = 10
}
}
}
option = {
name = flavor_sco.14.c
add_prestige = prestige_mild_bonus
scope:young_king_david = {
if = {
limit = { NOT = { culture = culture:french } }
change_character_culture = culture:french
}
if = {
limit = {
NOR = {
has_child_education = diplomatic_education
has_child_education = expensive_in_depth_education
}
}
set_child_education = child_education:diplomatic_education
}
add_dip = 10
}
}
}