flavor_sco.13 我们是多元的……还是?
时间范围:无特定时间范围(fire_only_once = yes,仅触发一次)
触发条件:
- 国家标签为
SCO(苏格兰)
关键效果:
-
选项 A:是的,我们是多元的
- 为当前主流文化添加文化传统
cultural_tradition_radical_bonus。
- 为当前主流文化添加文化传统
-
选项 B:不,我们是低地人
- 若主流文化不是
scottish(苏格兰文化),则将其更改为scottish,并将之前的主流文化添加为可接受文化。 - 若拥有政府改革
celtic_traditions_reform(凯尔特传统改革),则移除该改革。 - 对于每一个主流或可接受文化,若其语言与
scottish的语言不同,则从可接受文化中移除该文化(除非它是当前主流文化)。 - 若宫廷方言不是
scottish的方言,则将其设置为scottish的方言。 - 为
scottish文化添加文化影响力cultural_influence_radical_bonus。
- 若主流文化不是
-
选项 C:不,我们是高地人
- 若主流文化不是
highland(高地文化),则将其更改为highland,并将之前的主流文化添加为可接受文化。 - 若未拥有政府改革
celtic_traditions_reform(凯尔特传统改革),则添加该改革。 - 对于每一个主流或可接受文化,若其语言与
highland的语言不同,则从可接受文化中移除该文化(除非它是当前主流文化)。 - 若宫廷方言不是
highland的方言,则将其设置为highland的方言。 - 为
highland文化添加文化影响力cultural_influence_radical_bonus。
- 若主流文化不是
背景介绍: 该事件反映了苏格兰王国在历史上长期存在的文化认同分歧。低地地区(以苏格兰语和盎格鲁-撒克逊影响为主)与高地地区(以盖尔语和凯尔特传统为主)在语言、习俗和政治结构上存在显著差异。事件迫使苏格兰统治者面对并决定国家的文化发展方向:是拥抱内部的多元性,还是明确选择以低地或高地文化作为国家认同的核心,这将深刻影响其国内治理、社会融合以及对外形象。
完整事件代码:
flavor_sco.13 = { # We are diverse.... or?
type = country_event
title = flavor_sco.13.title
desc = flavor_sco.13.desc
illustration_tags = {
10 = exterior
10 = regular
}
fire_only_once = yes
trigger = {
tag = SCO
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
culture = { save_scope_as = previous_culture }
event_illustration_culture_effect = { culture = culture:highland }
}
option = { # Aye we are diverse
name = flavor_sco.13.a
culture = { add_cultural_tradition = cultural_tradition_radical_bonus }
}
option = { # Nay we are Lowlanders
name = flavor_sco.13.b
if = {
limit = { NOT = { culture = culture:scottish } }
change_culture = culture:scottish
add_accepted_culture = scope:previous_culture
}
if = {
limit = { has_reform = government_reform:celtic_traditions_reform }
remove_reform = government_reform:celtic_traditions_reform
}
every_primary_or_accepted_culture = {
limit = { NOT = { language = culture:scottish.language } }
root = {
if = {
limit = { NOT = { culture = prev } }
remove_accepted_culture = prev
}
}
}
if = {
limit = { court_dialect != culture:scottish.dialect }
set_court_language = culture:scottish.dialect
}
culture:scottish = { add_cultural_influence = cultural_influence_radical_bonus }
}
option = { # Nay we are Highlanders
name = flavor_sco.13.c
if = {
limit = { NOT = { culture = culture:highland } }
change_culture = culture:highland
add_accepted_culture = scope:previous_culture
}
if = {
limit = { NOT = { has_reform = government_reform:celtic_traditions_reform } }
add_reform = government_reform:celtic_traditions_reform
}
every_primary_or_accepted_culture = {
limit = { NOT = { language = culture:highland.language } }
root = {
if = {
limit = { NOT = { culture = prev } }
remove_accepted_culture = prev
}
}
}
if = {
limit = { NOT = { court_dialect = culture:highland.dialect } }
set_court_language = culture:highland.dialect
}
culture:highland = { add_cultural_influence = cultural_influence_radical_bonus }
}
}