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_vij.32 迈索尔高原的动荡

时间范围:1337.1.1 - 1500.1.1 (每月 2% 概率)

触发条件

  • 国家为 维贾亚纳加尔 (VIJ)
  • 拥有 迈索尔高原 (mysore_plateau) 省份定义中至少 50% 的地块。

关键效果

  • 选项 A (flavor_vij.32.a)

    • 迈索尔高原上所有由玩家拥有的地块中,所有人口满意度大幅下降 (pop_satisfaction_ultimate_penalty)。
  • 选项 B (flavor_vij.32.b)

    • 迈索尔高原上所有由玩家拥有的地块中,所有人口满意度严重下降 (pop_satisfaction_severe_penalty)。
    • 同时,这些地块的控制度轻度下降 (control_mild_penalty)。

背景介绍: 在14至15世纪,维贾亚纳加尔帝国正处在扩张和巩固的关键时期。迈索尔高原作为其核心领土之一,其稳定对帝国至关重要。此事件模拟了该地区可能因治理、税收或地方冲突引发的民众不满,统治者需要审慎应对以维持秩序和权威。

完整事件代码

flavor_vij.32 = {
	hide_portraits = yes
	type = country_event
	title = flavor_vij.32.title
	desc = flavor_vij.32.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = VIJ
		from = 1337.1.1
		to = 1500.1.1
		monthly_chance = 2
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	trigger = {
		province_definition:mysore_plateau = {
			any_location_in_province_definition = {
				percent >= 0.5
				owner = root
			}
		}
	}

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

	option = {
		name = flavor_vij.32.a

		custom_tooltip = {
			text = VIJ_ALL_MYSORE_POPS_LOSE_50_SATISFACTION
			province_definition:mysore_plateau = {
				every_location_in_province_definition = {
					limit = { owner = root }
					every_pop = {
						limit = {
							owner = root
						}
						add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					}
				}
			}
		}
	}

	option = {
		name = flavor_vij.32.b

		custom_tooltip = {
			text = VIJ_ALL_MYSORE_POPS_LOSE_20_SATISFACTION_AND_10_CONTROL
			province_definition:mysore_plateau = {
				every_location_in_province_definition = {
					limit = { owner = root }
					change_control = control_mild_penalty
					every_pop = {
						limit = {
							owner = root
						}
						add_pop_satisfaction = pop_satisfaction_severe_penalty
					}
				}
			}
		}
	}
}