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.6 波吉亚家族的丑闻

时间范围:1495.1.1 - 1550.1.1(每月 10% 概率)

触发条件

  • 国家为教宗国(PAP)。
  • 当前统治者拥有 borgia_pope 人物修正。

关键效果

  • 选项 A (历史选项)
    • 国家稳定度遭受极端惩罚。
    • 统治者获得 scandalized_papacy 人物修正(持续时间为永久叠加与延长模式)。
  • 选项 B
    • 触发条件:统治者外交能力(dip)大于等于 60。
    • 获得少量威望。
    • 统治者获得 borgia_diplomacy 人物修正(持续时间为永久叠加与延长模式)。

背景介绍: 该事件围绕文艺复兴时期著名的波吉亚家族展开,特别是当家族成员罗德里戈·波吉亚(即教皇亚历山大六世)在位时。事件涉及家族成员切萨雷·波吉亚,并创建了其妹妹卢克雷齐娅·波吉亚这一历史人物。选项反映了教廷在面对家族丑闻和权力斗争时的不同应对策略:要么承受稳定度打击和声誉受损,要么凭借高超的外交手腕尝试化解危机并从中获益。

完整事件代码

flavor_pap.6 = {
	type = country_event
	title = flavor_pap.6.title
	desc = flavor_pap.6.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = PAP
		from = 1495.1.1
		to = 1550.1.1
		monthly_chance = 10
	}
	
	trigger = {
		ruler ?= { has_character_modifier = borgia_pope }
	}
	
	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		character:caesar_borgia = {
			save_scope_as = caesar_borgia_scope
		}
		create_character = { #https://en.wikipedia.org/wiki/Lucrezia_Borgia
			first_name = name_lucrece
			last_name = borgia
			father = character:rodrigo_borgia
			birth_date = 1480.4.18
			female = yes
			save_scope_as = lucrecia_borgia_scope
			script = lucrecia_borgia
		}
	}
	
	option = {
		name = flavor_pap.6.a
		historical_option = yes
		add_stability = stability_extreme_penalty
		ruler = { add_character_modifier = { modifier = scandalized_papacy months = -1 mode = add_and_extend } }
	}

	option = {
		name = flavor_pap.6.b
		trigger = { ruler = { dip >= 60 } }	#The special pope in question will start with 50 dip. If he *somehow* improves his dip ability this option becomes available
		add_prestige = prestige_weak_bonus
		ruler = { add_character_modifier = { modifier = borgia_diplomacy months = -1 mode = add_and_extend } }
	}
}