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_boh.3] 胡斯派统治者与天主教国家

时间范围:1465.1.1 - 1550.1.1(每月 5% 概率)

触发条件

  • 国家宗教为天主教 (religion = religion:catholic)。
  • 国家拥有统治者 (has_ruler = yes)。
  • 统治者的宗教为胡斯派 (ruler = { religion = religion:hussite })。

关键效果

  • 选项 A (历史选项):
    • 在最多5个人口最多的、主流宗教为天主教的省份中,所有人口获得“严重惩罚”级别的满意度减益 (add_pop_satisfaction = pop_satisfaction_severe_penalty)。
    • 如果邻国匈牙利 (c:HUN) 的宗教为天主教且没有摄政王 (has_regent = no),则匈牙利会静默触发事件 flavor_hun.180

背景介绍: 在15至16世纪的波希米亚,胡斯派宗教改革运动与罗马天主教会之间存在着深刻的矛盾。当一位胡斯派统治者治理一个名义上仍是天主教的国家时,这种宗教分歧极易引发国内天主教人口的不满和社会动荡。此事件模拟了这种宗教冲突对国家内部稳定及与周边天主教邻国外交关系可能带来的冲击。

完整事件代码

flavor_boh.3 = {
	hide_portraits = yes
	type = country_event
	title = flavor_boh.3.title
	desc = flavor_boh.3.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = BOH
		from = 1465.1.1
		to = 1550.1.1
		monthly_chance = 5
	}

	trigger = {
		religion = religion:catholic
		has_ruler = yes
		ruler = { religion = religion:hussite }
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		ruler = { save_scope_as = target_character }
	}

	option = {
		name = flavor_boh.3.a

		historical_option = yes
		save_scope_as = from

		ordered_owned_location = {
			limit = {
				dominant_religion = religion:catholic
			}
			order_by = population
			max = 5
			every_pop = {	add_pop_satisfaction = pop_satisfaction_severe_penalty	}
		}

		if = {
			limit = {
				is_neighbor_of = c:HUN
				c:HUN = {
					religion = religion:catholic
					has_regent = no
				}
			}
			c:HUN = {
				trigger_event_silently = flavor_hun.180
			}
		}
	}
}