[flavor_kor.1] 蒙古贵族在朝鲜半岛
时间范围:1340.1.1 - 1380.1.1 (每月 10% 概率触发)
触发条件:
- 国家
CHI必须存在。 - 本国是
CHI的附庸国。 CHI的文化语言为language:mongolian_language(确保当前掌权的是元朝)。
关键效果:
-
选项 A (flavor_kor.1.a):
- 将变量
kor_is_influenced_by_mongols设为-2。 - 与
CHI互相添加kor_hostile_attitude意见修正。 - 显示自定义提示文本
flavor_kor.1.a.at、flavor_kor.1.a.tt和flavor_kor.1.a.TIP。
- 将变量
-
选项 B (flavor_kor.1.b):
- 将变量
kor_is_influenced_by_mongols设为0。 - 与
CHI互相添加kor_friendly_attitude意见修正。 - 显示自定义提示文本
flavor_kor.1.a.at和flavor_kor.1.b.tt。
- 将变量
事件背景: 在元朝(蒙古帝国)统治时期,朝鲜半岛的高丽王朝长期作为其附庸国。随着元朝在中原统治的稳固,蒙古文化、政治制度及贵族阶层逐渐渗透并影响高丽的上层社会。本事件模拟了这一时期蒙古贵族在高丽首都的出现及其对当地政治格局的潜在影响,反映了高丽统治阶层在面对蒙古文化影响与自身民族独立性之间的抉择。
完整事件代码:
flavor_kor.1 = {
hide_portraits = yes
type = country_event
title = flavor_kor.1.title
desc = flavor_kor.1.desc
fire_only_once = yes
dynamic_historical_event = {
tag = KOR
from = 1340.1.1
to = 1380.1.1
monthly_chance = 10
}
trigger = {
country_exists = c:CHI
is_subject_of = c:CHI
c:CHI = { culture.language = language:mongolian_language } #Making sure it is Yuán who is currently at the power
}
illustration_tags = {
10 = angry
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
hidden_effect = {
capital = {
add_pop = {
culture = culture:mongolian_culture
religion = root.religion
type = pop_type:nobles
size = { value = 0.05 }
}
}
random_list = {
10 = { set_variable = { name = kor_mongol_characters value = 5 } }
20 = { set_variable = { name = kor_mongol_characters value = 6 } }
30 = { set_variable = { name = kor_mongol_characters value = 8 } }
40 = { set_variable = { name = kor_mongol_characters value = 9 } }
}
set_variable = { name = kor_mongol_aristocrats value = 0 }
while = {
limit = { var:kor_mongol_characters > 0 }
change_variable = { name = kor_mongol_characters subtract = 1 }
change_variable = { name = kor_mongol_aristocrats add = 1 }
create_character = {
estate = estate_type:nobles_estate
birth_location = root.capital
culture = culture:mongolian_culture
save_scope_as = mongol_aristocrat
set_variable = { name = kor_is_mongol_aristocrat value = yes }
}
scope:mongol_aristocrat = {
set_to_limited_random_stats = {
max_adm = 66
min_adm = 0
max_dip = 66
min_dip = 0
max_mil = 66
min_mil = 0
}
}
}
}
}
#We shall break free from their barbaric rule!
option = {
name = flavor_kor.1.a
custom_tooltip = {
text = flavor_kor.1.a.at
set_variable = { name = kor_is_influenced_by_mongols value = -2 }
add_opinion_mutual_effect = {
modifier = kor_hostile_attitude
target = c:CHI
}
}
custom_tooltip = flavor_kor.1.a.tt
custom_tooltip = flavor_kor.1.a.TIP
}
#What will happen without the Mongol guidance?
option = {
name = flavor_kor.1.b
custom_tooltip = {
text = flavor_kor.1.a.at
set_variable = { name = kor_is_influenced_by_mongols value = 0 }
add_opinion_mutual_effect = {
modifier = kor_friendly_attitude
target = c:CHI
}
}
custom_tooltip = flavor_kor.1.b.tt
}
}