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_cas.22] 天主教双王

时间范围:1480.1.1 - 1550.1.1,每月 10% 概率触发

触发条件

  • 国家为 CAS(卡斯蒂利亚)或 SPA(西班牙)。
  • 政府类型为君主制。
  • 国家宗教为天主教。
  • 本国拥有成年君主且无摄政。
  • 教宗国(c:PAP)拥有成年统治者且无摄政。
  • 满足以下条件之一:
    • 宗教影响力 ≥ 50。
    • 与教宗国存在同盟关系。
  • 与教宗国不是宿敌或敌对关系。
  • 未与教宗国处于战争状态。

关键效果

  • 选项 A (历史选项)
    • 获得大量正统性增益。
    • 设置变量 spa_catholic_kings_title 的值为当前日期,以记录此头衔授予的时间。
  • 选项 B
    • 遭受大量正统性惩罚。
    • 社会价值观向“灵性主义”(右)方向移动。

背景介绍: 此事件模拟了历史上“天主教双王”——卡斯蒂利亚的伊莎贝拉一世和阿拉贡的费迪南德二世——的统治时期。他们通过联姻统一了西班牙,并因其对天主教的虔诚和对收复失地运动的支持,获得了教宗的认可与支持,巩固了王权的正统性与宗教权威。

完整事件代码

flavor_cas.22 = { #The Catholic Kings
	hide_portraits = no
	type = country_event
	title = flavor_cas.22.title
	desc = flavor_cas.22.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1480.1.1
		to = 1550.1.1
		monthly_chance = 10
	}


	trigger = {
		government_type = government_type:monarchy
		religion = religion:catholic
		has_ruler = yes
		has_regent = no
		ruler ?= {
			is_adult = yes
		}
		c:PAP = {
			has_ruler = yes
			has_regent = no
			ruler ?= {
				is_adult = yes
			}
		}
		OR = {
			religious_influence >= 50
			has_mutual_scripted_relation = {
				type = relation_type:alliance
				target = c:PAP
			}
		}
		NOR = {
			is_rival_of = c:PAP
			is_enemy_of = c:PAP
		}
		NOT = {	is_at_war_with = c:PAP }
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		c:PAP = {
			ruler ?= { save_scope_as = pope }
		}
		ruler ?= { save_scope_as = target_ruler }
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate	background = estate_type:clergy_estate }
	}

	option = {
		name = flavor_cas.22.a
		historical_option = yes
		add_legitimacy = legitimacy_severe_bonus
		custom_tooltip = flavor_cas.22.a.tt
		set_variable = {
			name = spa_catholic_kings_title
			value = current_date #store the date so we know when this rule was applied
		}
	}

	option = {
		name = flavor_cas.22.b
		add_legitimacy = legitimacy_severe_penalty
		change_societal_value = { type = spiritualist_vs_humanist value = societal_value_move_to_right }
	}
}