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_kol.1] 科隆选帝侯国与巴伐利亚的王朝联系

时间范围:1550.1.1 - 1650.1.1 (每月 2% 概率)

触发条件

  • 事件国家必须是 科隆选帝侯国 (KOL)
  • 事件国家必须拥有 神权制 (theocracy) 政府。
  • 事件国家国教必须是 天主教 (catholic)
  • 事件国家必须是 独立国家(不是附庸)。
  • 事件国家的 统治者必须拥有家族
  • 国家 上巴伐利亚 (UBV) 必须存在。
  • 上巴伐利亚 (UBV) 必须满足以下所有条件:
    • 国教为 天主教 (catholic)
    • 不是 科隆选帝侯国 (KOL) 的宿敌。
    • 政府类型为 君主制 (monarchy)
    • 拥有至少一位满足以下所有条件的 男性角色
      • 年龄大于 35岁
      • 不是 统治者。
      • 不是 继承人。
      • 文化为 多瑙巴伐利亚文化 (danube_bavarian)
      • 拥有家族,且其家族与科隆选帝侯国 (KOL) 统治者的家族 相同

关键效果

  • 选项 A (flavor_kol.1.a)
    • 历史选项historical_option = yes
    • 上巴伐利亚 (UBV) 对科隆选帝侯国 (KOL) 获得 正面看法修正 (kol_bavarian_archbishop)。
    • 将上巴伐利亚 (UBV) 中符合条件的角色(即触发条件中描述的角色)任命为科隆选帝侯国 (KOL) 的新统治者
    • 科隆选帝侯国 (KOL) 获得 微弱的宗教影响力加成 (religious_influence_weak_bonus)。
  • 选项 B (flavor_kol.1.b)
    • 科隆选帝侯国 (KOL) 获得 微弱的宗教影响力惩罚 (religious_influence_weak_penalty)。
    • 上巴伐利亚 (UBV) 对科隆选帝侯国 (KOL) 获得 负面看法修正 (kol_bavarian_archbishop_replaced)。
    • 教宗国 (PAP) 对科隆选帝侯国 (KOL) 获得 负面看法修正 (kol_bavarian_archbishop_replaced)。

背景介绍: 在神圣罗马帝国复杂的政治与宗教格局中,科隆选帝侯国作为重要的天主教神权诸侯,其大主教的任命往往牵动着多方势力的利益。16至17世纪,统治巴伐利亚的维特尔斯巴赫家族势力庞大,其家族成员不仅统治着世俗领地,也时常谋求进入教会高层,以巩固家族的政治与宗教影响力。本事件模拟了当科隆大主教职位空缺时,来自同宗的巴伐利亚贵族候选人可能被推上这一重要位置的历史情景,反映了当时王朝政治与教会事务紧密交织的特点。

完整事件代码

flavor_kol.1 = {
	hide_portraits = yes
	type = country_event
	title = flavor_kol.1.title
	desc = flavor_kol.1.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = KOL
		from = 1550.1.1
		to = 1650.1.1
		monthly_chance = 2
	}
	
	trigger = {
		government_type = government_type:theocracy
		religion = religion:catholic
		is_subject = no
		ruler ?= {
			has_dynasty = yes
		}
		
		country_exists = c:UBV
		c:UBV = {
			religion = religion:catholic
			NOT = { is_rival_of = c:KOL	}
			government_type = government_type:monarchy
			any_character = {
				age_in_years > 35
				is_female = no
				is_ruler = no
				is_heir = no
				culture = culture:danube_bavarian
				has_dynasty = yes
				dynasty = root.ruler.dynasty
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		c:UBV = {
			random_character = {
				limit = {
					age_in_years > 35
					is_female = no
					is_ruler = no
					is_heir = no
					culture = culture:danube_bavarian
					dynasty = root.ruler.dynasty
				}
				save_scope_as = target
			}
		}
	}

	option = {
		name = flavor_kol.1.a
		c:UBV = {
			add_opinion = { target = root modifier = kol_bavarian_archbishop }
		}


		set_new_ruler = scope:target

		add_religious_influence = religious_influence_weak_bonus


		historical_option = yes
	}
	
	option = {
		name = flavor_kol.1.b
		add_religious_influence = religious_influence_weak_penalty
		c:UBV = {
			add_opinion = { target = root modifier = kol_bavarian_archbishop_replaced }
		}
		c:PAP = {
			add_opinion = { target = root modifier = kol_bavarian_archbishop_replaced }
		}
	}
}