flavor_chk.32 卡霍基亚的困境
时间范围:1444.11.11-1821.1.1 (每月 5% 概率)
触发条件:
- 国家标签为
CHK。 - 未拥有变量
chk_no_more_plight_events。 - 拥有统治者或摄政王。
- 拥有卡霍基亚(
location:cahokia)地区。 - 满足以下至少一项:
- 稳定度低于 -15。
- 部落凝聚力低于 60。
- 拥有国家修正
chk_shadow_of_cahokia。
- 当前时代为“传统时代”或“文艺复兴时代”。
- 在以下每个区域中,至少有3个被本国发现且无主的省份:
- 爱荷华区域 (
iowa_area) - 威斯康星区域 (
wisconsin_area) - 阿肯色区域 (
arkansas_area) - 田纳西区域 (
tennessee_area)
- 爱荷华区域 (
关键效果:
- 选项 A:卡霍基亚未来令人担忧的征兆
- 稳定度:轻微惩罚。
- 部落凝聚力:轻微惩罚。
- 触发一次人口迁移:
- 从
target_location省份迁移至cahokia_migration省份。 - 迁移人口数量为
target_location省份人口的 2.8%。 - 迁移过程持续 10 个月。
- 从
背景介绍: 该事件描绘了卡霍基亚(CHK)文明在面临内部动荡或外部压力时的困境。当国家稳定度低下、部落凝聚力涣散或笼罩在“卡霍基亚之影”的修正下时,部分人口开始考虑离开核心的卡霍基亚地区,向周边未被占领的土地(如爱荷华、威斯康星、阿肯色或田纳西)迁移。这反映了历史上北美密西西比文化中心可能因环境、社会或政治压力而出现的人口分散现象。
完整事件代码:
flavor_chk.32 = { # Plight of Cahokia
hide_portraits = yes
type = country_event
title = flavor_chk.32.title
desc = flavor_chk.32.desc
trigger = {
tag = CHK
NOT = { has_variable = chk_no_more_plight_events }
OR = {
has_ruler = yes
has_regent = yes
}
owns = location:cahokia
OR = {
stability < -15
tribal_cohesion < 60
has_country_modifier = chk_shadow_of_cahokia
}
OR = {
current_age = age_1_traditions
current_age = age_2_renaissance
}
area:iowa_area = {
any_location_in_area = {
has_owner = no
is_discovered_by = root
count > 2
}
}
area:wisconsin_area = {
any_location_in_area = {
has_owner = no
is_discovered_by = root
count > 2
}
}
area:arkansas_area = {
any_location_in_area = {
has_owner = no
is_discovered_by = root
count > 2
}
}
area:tennessee_area = {
any_location_in_area = {
has_owner = no
is_discovered_by = root
count > 2
}
}
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
ruler_or_regent ?= {
save_scope_as = our_ruler
}
random_owned_location = {
limit = {
population > 5
}
save_scope_as = target_location
}
random_list = {
25 = {
area:iowa_area = {
random_location_in_area = {
limit = {
has_owner = no
is_discovered_by = root
}
save_scope_as = cahokia_migration
}
}
}
25 = {
area:wisconsin_area = {
random_location_in_area = {
limit = {
has_owner = no
is_discovered_by = root
}
save_scope_as = cahokia_migration
}
}
}
25 = {
area:arkansas_area = {
random_location_in_area = {
limit = {
has_owner = no
is_discovered_by = root
}
save_scope_as = cahokia_migration
}
}
}
25 = {
area:tennessee_area = {
random_location_in_area = {
limit = {
has_owner = no
is_discovered_by = root
}
save_scope_as = cahokia_migration
}
}
}
}
}
illustration_tags = {
10 = angry
10 = exterior
}
option = { # A troubling sign of things to come for Cahokia
name = flavor_chk.32.a
add_stability = stability_mild_penalty
add_tribal_cohesion = tribal_cohesion_mild_penalty
add_migration = {
owner ?= ROOT
from = scope:target_location.province_definition
to = scope:cahokia_migration.province_definition
amount = {
value = {
add = scope:target_location.province.population
multiply = 0.028
}
}
months = 10
}
}
}