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_eng.37] 议会中的天主教问题

时间范围:1600.1.1 - 1650.1.1(每月 5% 概率)

触发条件

  • 国家拥有统治者。
  • 国家拥有议会制政体(modifier:has_a_parliamentary_system = yes)。
  • 国家正在进行议会辩论(has_ongoing_parliament_debate = yes)。
  • 国家拥有伦敦地区(owns = location:london)。
  • 国家人口中天主教徒比例大于0("religion_percentage_in_country(religion:catholic)" > 0)。
  • 国家国教为以下之一:
    • 路德宗(religion:lutheran
    • 加尔文宗(religion:calvinist
    • 圣公宗(religion:anglican

关键效果

  • 选项 A (flavor_eng.37.a)

    • 获得轻微稳定性加成(add_stability = stability_mild_bonus)。
    • 效果:国内所有天主教人口满意度严重下降(add_pop_satisfaction = pop_satisfaction_severe_penalty)。
    • 效果:所有其他天主教王国、帝国或教宗国(PAP)对本国产生负面看法(add_opinion = ... modifier = eng_harsh_punishment_of_catholics)。
  • 选项 B (flavor_eng.37.b)

    • 获得严重稳定性惩罚(add_stability = stability_severe_penalty)。
    • 效果:社会价值观向“好战 vs 和解”谱系的右侧(即更倾向好战)移动(change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_right })。

背景介绍: 此事件模拟了17世纪上半叶,英格兰(或后来的大不列颠)在确立新教统治地位后,议会内部如何处理国内天主教少数群体问题的历史性抉择。当时,天主教徒被视为潜在的政治威胁和对新教政权的挑战,议会经常就此展开激烈辩论。事件反映了国家在维持内部稳定、安抚国内宗教少数派与对外维持新教国家形象、避免激怒强大的天主教势力之间所面临的两难困境。

完整事件代码

flavor_eng.37 = {
	type = country_event
	title = flavor_eng.37.title
	desc = flavor_eng.37.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1600.1.1
		to = 1650.1.1
		monthly_chance = 5
	}

	trigger = {
		has_ruler = yes
		modifier:has_a_parliamentary_system = yes
		has_ongoing_parliament_debate = yes
		owns = location:london
		"religion_percentage_in_country(religion:catholic)" > 0
		OR = {
			religion = religion:lutheran
			religion = religion:calvinist
			religion = religion:anglican
		}
	}

	illustration_tags = {
		10 = exterior
		10 = armed
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}

	option = {
		name = flavor_eng.37.a

		add_stability = stability_mild_bonus

		custom_tooltip = {
			text = flavor_eng.37.a.all_cath_pops
			every_owned_location = {
				every_pop = {
					limit = {
						owner = root
						religion = religion:catholic
					}
					add_pop_satisfaction = pop_satisfaction_severe_penalty
				}
			}

		}
		custom_tooltip = {
			text = every_other_catholic_kingdom_or_pap_or_empire_lose_opinion_tt
			religion:catholic = {
				every_country_in_religion = {
					limit = {
						this != root
						OR = {
							country_rank = country_rank:rank_kingdom
							country_rank = country_rank:rank_empire
							tag = PAP
						}
					}
					add_opinion = { target = root modifier = eng_harsh_punishment_of_catholics }
				}
			}
		}
	}

	option = {
		name = flavor_eng.37.b

		add_stability = stability_severe_penalty

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_right
		}

	}

	historical_info = flavor_eng.37.historical_info
}