Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

flavor_mal.30 暴君统治下的民怨

时间范围

1380.4.1 - 1500.1.1,每月有 2% 的概率触发。

触发条件

  • 国家标签为 MAL
  • 当前统治者或摄政王具有以下特质之一:
    • cruel(残暴)
    • malevolent(恶毒)

关键效果

选项: flavor_mal.30.a

  • 效果:
    • 所有本国人口满意度遭受严重惩罚(pop_satisfaction_severe_penalty)。
    • 国家稳定度遭受轻度惩罚(stability_mild_penalty)。

背景介绍

在14世纪末至15世纪末的马来世界,一个国家的治理高度依赖于统治者的品德。当一位以残暴或恶毒著称的君主或摄政王掌权时,其高压统治和严苛政策极易引发广泛的社会不满。此事件模拟了在暴君统治下,民众因恐惧、压迫和剥削而累积的怨恨情绪最终爆发,导致社会动荡和国家不稳的局面。

完整事件代码

flavor_mal.30 = {
	type = country_event
	title = flavor_mal.30.title
	desc = flavor_mal.30.desc

	dynamic_historical_event = {
		tag = MAL
		from = 1380.4.1
		to = 1500.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		ruler_or_regent ?= {
			OR = {
				has_trait = cruel
				has_trait = malevolent
			}
		}
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:nobles_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mal.30.a

		custom_tooltip = {
			text = mal_all_pops_lose_15_satisfaction_tt
			every_owned_location = {
				every_pop = {
					limit = {
						owner = root
					}
					add_pop_satisfaction = pop_satisfaction_severe_penalty
				}
			}
		}

		add_stability = stability_mild_penalty
	}
}