flavor_chi.63 宦官专权
时间范围
无明确起止日期,当满足触发条件时,每月有基础概率触发(代码中未指定 monthly_chance,通常为默认值)。
触发条件
- 国家已启用宦官制度(
has_eunuchs = yes)。 - 宦官势力修正值大于等于1(
modifier:eunuch_power >= 1)。 - 内阁中至少有一位内阁成员(
any_cabinet_character = { count >= 1 })。
关键效果
-
选项 A(
flavor_chi.63.a)- 将内阁中能力总值最高的一位成员(
target_character)立即监禁(imprison_character_effect),监禁时间为永久(years = -1)。 - 为国家添加名为“宦官过度干政”(
chi_eunuch_excesses)的修正,持续20年(mode = add_and_extend)。
- 将内阁中能力总值最高的一位成员(
-
选项 B(
flavor_chi.63.b)- 国家稳定度遭受轻度惩罚(
add_stability = stability_mild_penalty)。
- 国家稳定度遭受轻度惩罚(
-
选项 C(
flavor_chi.63.c)- 国家稳定度遭受严重惩罚(
add_stability = stability_severe_penalty)。 - 国家威望遭受严重惩罚(
add_prestige = prestige_severe_penalty)。 - 为国家添加名为“对抗宦官”(
chi_stood_up_to_eunuchs)的修正,持续20年(mode = add_and_extend)。
- 国家稳定度遭受严重惩罚(
背景介绍
在明朝等中国王朝中,宦官作为宫廷内侍,常因接近皇权而获得巨大影响力。当宦官势力过度膨胀时,他们可能干预朝政、排挤文官,甚至操控内阁任命,导致朝纲紊乱。此事件模拟了君主在面对宦官专权时可能做出的不同抉择:是纵容其继续掌权、采取温和抵制,还是不惜代价坚决对抗。
完整事件代码
flavor_chi.63 = {
type = country_event
title = flavor_chi.63.title
desc = flavor_chi.63.desc
illustration_tags = {
10 = interior
10 = angry
}
trigger = {
has_eunuchs = yes
modifier:eunuch_power >= 1
any_cabinet_character = {
count >= 1
}
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
ordered_cabinet_character = {
order_by = {
value = this.total_abilities
}
max = 1
save_scope_as = target_character
}
}
option = {
name = flavor_chi.63.a
scope:target_character = {
imprison_character_effect = {
years = -1
}
}
add_country_modifier = {
mode = add_and_extend
modifier = chi_eunuch_excesses
years = 20
}
}
option = {
name = flavor_chi.63.b
add_stability = stability_mild_penalty
}
option = {
name = flavor_chi.63.c
add_stability = stability_severe_penalty
add_prestige = prestige_severe_penalty
add_country_modifier = {
mode = add_and_extend
modifier = chi_stood_up_to_eunuchs
years = 20
}
}
}