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_hab.2402] 积极回应

时间范围
该事件为动态历史事件,代码中未指定 fromto 日期,也未设置 monthly_chance 概率。

触发条件
代码中未直接定义 trigger 字段,触发条件需参考游戏内其他相关逻辑。

关键效果

  • 选项 A (flavor_hab.2402.a)
    • 若存在目标公主 (scope:target_princess),则使其与奥地利统治者 (scope:austrian_ruler) 结婚。
    • 国家波希米亚 (c:BOH) 将对事件触发国 (root) 添加观点修正 hab_austro_bohemian_friendship,同时事件触发国也会对波希米亚添加相同的相互观点修正。

背景介绍
此事件模拟了哈布斯堡王朝(奥地利)通过王室联姻巩固与波希米亚王国关系的政治策略。一次成功的婚姻不仅能联结两个家族,还能显著改善两国间的外交关系,为日后更紧密的政治联盟或继承权主张奠定基础。

完整事件代码

flavor_hab.2402 = { #Positive Response
    type = country_event
	title = flavor_hab.2402.title
	desc = flavor_hab.2402.desc
    option = {
        name = flavor_hab.2402.a
		scope:target_princess ?= {
			marry_character = scope:austrian_ruler
		}
		c:BOH = {
			add_opinion = {
				modifier = hab_austro_bohemian_friendship
				target = root
			}
			reverse_add_opinion = {
				modifier = hab_austro_bohemian_friendship
				target = root
			}
		}
    }
}