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_fra.2042 布尔日国事诏书

时间范围:1444.1.1 - 1485.1.1(每月 25% 概率)

触发条件

  • 国家处于和平状态(at_war = no)。
  • 本国拥有统治者(has_ruler = yes)。
  • 教宗国(c:PAP)拥有统治者(has_ruler = yes)。

关键效果

  • 选项A:废除诏书
    • 历史选项historical_option = yes
    • 解锁阶层特权:fra_papacy_pragmatic_sanctions
    • 教宗国对本国获得观点修正:fra_avoided_pragmatic_sanctions
    • 神职人员阶层满意度获得轻微惩罚(estate_satisfaction_mild_penalty)。
    • AI选择概率基础值:35。
  • 选项B:拒绝教宗意愿,维持诏书
    • 解锁并立即授予阶层特权:fra_papacy_pragmatic_sanctions
    • 教宗国对本国获得观点修正:fra_pragmatic_sanctions
    • 神职人员阶层满意度获得极大奖励(estate_satisfaction_extreme_bonus)。
    • AI选择概率基础值:65。

背景介绍: 布尔日国事诏书(Pragmatic Sanction of Bourges)是法兰西国王查理七世于1438年颁布的法令。该诏书旨在限制教宗在法兰西教会事务中的权力,主张主教应由本国教士会议选举产生,并限制教廷的税收和司法管辖权。这一事件是法兰西王权与罗马教廷之间长期权力斗争的关键节点,体现了中世纪晚期民族国家意识的兴起和“高卢主义”教会原则的实践。

完整事件代码

flavor_fra.2042 = { # Pragmatic Sanction of Bourges
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2042.t
 	desc = flavor_fra.2042.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1444.1.1
		to = 1485.1.1
		monthly_chance = 25
	}

 	trigger = {
		at_war = no
		has_ruler = yes
		c:PAP ?= {
			has_ruler = yes
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}	

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		c:PAP = {
        	ruler ?= {
            	save_scope_as = pap_ruler
        	}
		}
	}

 	option = { # Abolish the Sanctions
		name = flavor_fra.2042.a
		historical_option = yes
		custom_tooltip = fra_may_enact_bourges_sanctions
		unlock_estate_privilege_effect = { type = fra_papacy_pragmatic_sanctions }
		add_opinion = { target = c:PAP modifier = fra_avoided_pragmatic_sanctions }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty }
        ai_chance = {
            base = 35
        }
 	}

 	option = { # Reject the wishes of the Papacy, maintain the sanctions
		name = flavor_fra.2042.b
		unlock_estate_privilege_effect = { type = fra_papacy_pragmatic_sanctions }
		grant_estate_privilege = estate_privilege:fra_papacy_pragmatic_sanctions
		add_opinion = { target = c:PAP modifier = fra_pragmatic_sanctions }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_extreme_bonus }
        ai_chance = {
            base = 65
        }
 	}

}