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_dan_corfitz_ulfeldt.6 科菲茨·乌尔费尔特携提案而来

时间范围:无明确起止日期(动态事件),触发后每月概率未知(代码中未指定 monthly_chance

触发条件

  • 名为 corfitz_ulfeldt_script 的角色必须存活,且其所有者是触发国(root)。
  • 国家 DAN(丹麦)必须存在。
  • 触发国必须拥有一位统治者(ruler)。
  • 触发国 不能DAN(丹麦)拥有“宣称王位”(casus_belli:cb_claim_throne)类型的宣战理由。

关键效果

  • 选项 A

    • 名称:flavor_dan_corfitz_ulfeldt.6.a
    • 效果:
      • 增加少量合法性惩罚(add_legitimacy = legitimacy_mild_penalty)。
      • 增加金钱,数额为基础值的3倍(change_gold_effect = { scale = 3 })。
      • 获得对 DAN(丹麦)的“宣称王位”宣战理由(add_casus_belli = { target = c:DAN type = casus_belli:cb_claim_throne })。
  • 选项 B

    • 名称:flavor_dan_corfitz_ulfeldt.6.b
    • 历史选项historical_option = yes
    • 效果:
      • 增加少量威望奖励(add_prestige = prestige_mild_bonus)。
      • 增加少量合法性奖励(add_legitimacy = legitimacy_weak_bonus)。
      • 将当前国家保存为作用域 origin_country
      • 触发 DAN(丹麦)的静默事件 flavor_dan_corfitz_ulfeldt.7

背景介绍: 此事件围绕科菲茨·乌尔费尔特(Corfits Ulfeldt)这一历史人物展开。乌尔费尔特是17世纪丹麦-挪威王国的重要贵族和政治家,以其复杂的政治生涯、巨额财富积累以及与王室(特别是国王克里斯蒂安四世和弗雷德里克三世)的紧张关系而闻名。他曾在丹麦担任高级职务,但也因被指控叛国和贪污而流亡。此事件模拟了乌尔费尔特向某个外国势力(触发国)提出一项可能涉及丹麦王位主张的“提案”的情景,为玩家提供了一个可能颠覆丹麦政局或选择更谨慎历史路径的关键决策点。

完整事件代码

flavor_dan_corfitz_ulfeldt.6 = { #Corfits Ulfeldt Arrives with a Proposal
	hide_portraits = yes
	type = country_event
	title = flavor_dan_corfitz_ulfeldt.6.title
	desc = flavor_dan_corfitz_ulfeldt.6.desc

	trigger = {
		character:corfitz_ulfeldt_script = {
			is_alive = yes
			owner = root
		}
		country_exists = c:DAN
		exists = ruler
		NOT = {
			has_casus_belli_of_type_on = { type = casus_belli:cb_claim_throne target = c:DAN }
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_dan_corfitz_ulfeldt.6.a
		add_legitimacy = legitimacy_mild_penalty
		change_gold_effect = { scale = 3 }
		add_casus_belli = { target = c:DAN type = casus_belli:cb_claim_throne }
	}

	option = {
		name = flavor_dan_corfitz_ulfeldt.6.b
		historical_option = yes
		add_prestige = prestige_mild_bonus
		add_legitimacy = legitimacy_weak_bonus
		save_scope_as = origin_country
		c:DAN = { trigger_event_silently = flavor_dan_corfitz_ulfeldt.7 }
	}
}