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_bav.28] 巴伐利亚获得选帝侯地位

时间范围

1600.1.1 - 1700.1.1,每月 5% 概率触发

触发条件

  • 巴伐利亚必须是神圣罗马帝国(HRE)的成员。
  • 巴伐利亚尚未成为选帝侯。
  • 巴伐利亚拥有统治者,且其外交能力(dip)≥ 60。
  • 巴伐利亚自身不是神圣罗马帝国皇帝。
  • 神圣罗马帝国必须拥有统治者(皇帝)。
  • 巴伐利亚正与神圣罗马帝国皇帝共同对一位选帝侯作战。
  • 该选帝侯必须满足以下任一条件,与巴伐利亚存在关联:
    • 与巴伐利亚有王室联姻。
    • 统治者与巴伐利亚统治者属于同一王朝。
    • 统治者是巴伐利亚统治者的兄弟姐妹或近亲。
  • “宗教战争”局势处于活跃状态。

关键效果

  • 选项 A (flavor_bav.28.a)

    • 标记为“历史选项”。
    • 效果:触发事件 flavor_bav.29(作用于皇帝所在国家)。
  • 选项 B (flavor_bav.28.b)

    • 效果:增加少量稳定度,减少少量威望。

背景介绍

在神圣罗马帝国宗教战争期间,巴伐利亚作为帝国的重要成员,其统治者展现出卓越的外交手腕。当巴伐利亚与皇帝并肩作战,共同对抗一位与巴伐利亚有家族或联姻关系的选帝侯时,一个历史性的机遇出现了。皇帝可能为了巩固联盟、奖励忠诚或在复杂的帝国政治中寻求支持,而考虑将选帝侯的头衔授予巴伐利亚。这一事件反映了帝国内部权力结构的动态变化,以及战争时期政治联盟与家族纽带如何交织,影响诸侯地位的升降。

完整事件代码

flavor_bav.28 = {
	hide_portraits = yes
    type = country_event
    title = flavor_bav.28.title
    desc = flavor_bav.28.desc

	historical_info = flavor_bav.28.historical_info

	fire_only_once = yes
    dynamic_historical_event = {
        tag = BAV
        from = 1600.1.1
        to = 1700.1.1
        monthly_chance = 5
    }

    illustration_tags = {
        10 = regular
        10 = interior
    }

    trigger = {
		# Bavaria must be a member of the HRE
		is_member_of_international_organization = international_organization:hre

		# Bavaria must not already be an elector
		NOT = {
			international_organization:hre = {
				country_has_special_status = {
					type = special_status:elector
					country = root
				}
			}
		}
        has_ruler = yes
        ruler = { dip >= 60 }

		# Bavaria cannot be emperor itself
		NOT = { is_leader_of_international_organization = international_organization:hre }

		# HRE must have a ruler
		international_organization:hre = {
			international_organization_has_leader = yes
			leader_country = {
				has_ruler = yes
			}
		}

		# Bavaria is at war together with the emperor against an elector
		any_country_together_in_war_with = {
			is_leader_of_international_organization = international_organization:hre
		}
		any_country_at_war_with = {
			OR = { # Elector somehow family or dynastic related to Bavaria
				has_royal_marriage_with = root
				ruler.dynasty = root.ruler.dynasty
				ruler = {
					OR = {
						is_sibling_of = root.ruler
						is_close_relative = root.ruler
					}
				}
			}
			international_organization:hre = {
				country_has_special_status = {
					type = special_status:elector
					country = prev
				}
			}
		}

		# War of Religions situation is active
		situation:war_of_religions = {
			situation_is_active = yes
		}
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = bavaria_country
		ruler ?= { save_scope_as = home_ruler }
		international_organization:hre = {
			leader_country ?= {
				save_scope_as = emperor_country
				ruler ?= { save_scope_as = emperor_ruler }
			}
		}
		# Country that is the elector, which fights the emperor
		random_country = {
			limit = {
				international_organization:hre = {
					country_has_special_status = {
						type = special_status:elector
						country = prev
					}
				}
				any_country_at_war_with = {
					is_leader_of_international_organization = international_organization:hre
				}
			}
			save_scope_as = elector_at_war
		}
	}

	option = {
		name = flavor_bav.28.a
		historical_option = yes

		scope:emperor_country = { trigger_event_non_silently = flavor_bav.29 }
	}

	option = {
		name = flavor_bav.28.b
		add_stability = stability_mild_bonus
		add_prestige = prestige_mild_penalty
	}
}