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_pap.4 教皇亚历山大六世登场

时间范围:1490.1.1 - 1503.1.1 (每月 10% 概率触发)

触发条件

  • 宗教“路德宗”未启用。
  • 瓦伦西亚地区的所有者信奉“天主教”。

关键效果

  • 历史选项:选择此选项将:
    • 为“天主教”宗教增加“严重”的改革欲望。
    • 使罗德里克·博尔贾(Rodrigo Borgia)成为国家的新统治者。
    • 设置一个全局变量 borgia_pope_global
    • 为新统治者添加一个名为 borgia_pope 的持续到游戏结束的修正。

背景介绍: 此事件模拟了罗德里克·博尔贾,即教皇亚历山大六世,及其子凯撒·博尔贾登上历史舞台的时刻。亚历山大六世是文艺复兴时期最具争议的教皇之一,以其政治野心、任人唯亲和奢靡生活闻名。他的统治加剧了天主教会的腐败,为后来的宗教改革运动埋下了伏笔。该事件在特定历史窗口期内,当瓦伦西亚地区由天主教势力控制时触发,标志着博尔贾家族对教廷乃至欧洲政治的影响正式开始。

完整事件代码

flavor_pap.4 = {
	type = country_event
	title = flavor_pap.4.title
	desc = flavor_pap.4.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = PAP
		from = 1490.1.1
		to = 1503.1.1
		monthly_chance = 10
	}

	trigger = {
		religion:lutheran = { is_religion_enabled = no }
		location:valencia = {
			owner = {
				religion = religion:catholic
			}
		}
	}
	
	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		create_character = { #https://en.wikipedia.org/wiki/Pope_Alexander_VI
			first_name = name_roderick
			last_name = borgia
			adm = 75
			dip = 50
			mil = 65
			culture = culture:catalan
			trait_category = none
			birth_date = 1431.1.1
			prev = { set_new_ruler = prev }
			script = rodrigo_borgia
			save_scope_as = borgia_pope_scope
		}
		create_character = { #https://en.wikipedia.org/wiki/Cesare_Borgia
			first_name = name_caesar
			last_name = borgia
			adm = 20
			dip = 25
			mil = 60
			trait_category = none
			father = character:rodrigo_borgia
			birth_date = 1475.9.13
			save_scope_as = borgia_pope_son_scope
			script = caesar_borgia
		}
	}

	option = {
		name = flavor_pap.4.a
		religion:catholic = { add_reform_desire = reform_desire_severe_increase }
		custom_tooltip = borgia_pope_tt
		hidden_effect = {
			set_new_ruler = scope:borgia_pope_scope
			set_global_variable = borgia_pope_global
			ruler = { add_character_modifier = { modifier = borgia_pope months = -1 mode = add_and_extend } }
		}
	}
}