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.2601] 联姻提议 - 西班牙

时间范围
该事件为动态历史事件,无固定 fromto 日期,触发概率取决于游戏引擎的动态历史系统。

触发条件
事件代码中未直接包含 trigger 字段,其触发条件由游戏引擎根据动态历史系统或前置事件(如 flavor_hab.2600)决定。

关键效果
事件提供两个选项:

  • 选项 A(历史选项)flavor_hab.2601.a

    • 获得大量正统性加成(add_legitimacy = legitimacy_severe_bonus
    • 20天后触发后续事件 flavor_hab.2602
    • 若目标公主(scope:target_princess)存在,则与奥地利统治者(scope:austrian_ruler)结婚
    • 奥地利(c:HAB)与事件发起国(root)互相获得正面关系修正 hab_austro_spanish_friendship
  • 选项 Bflavor_hab.2601.b

    • 获得大量威望加成(add_prestige = prestige_severe_bonus
    • 20天后触发后续事件 flavor_hab.2603
    • 奥地利(c:HAB)与事件发起国(root)互相获得负面关系修正 hab_austro_spanish_friendship_refused

背景介绍
此事件模拟了历史上哈布斯堡家族内部或与西班牙之间常见的政治联姻提议。通过婚姻联盟,奥地利哈布斯堡王朝可以巩固其正统性,加强与西班牙分支的关系,从而在欧洲政治格局中增强影响力。拒绝提议虽能获得短期威望,但可能导致两国关系疏远。

完整事件代码

flavor_hab.2601 = { #An Offer of Marriage - Spain
    type = country_event
	title = flavor_hab.2601.title
	desc = flavor_hab.2601.desc

	historical_info = flavor_hab.2600.historical_info

    option = {
        name = flavor_hab.2601.a
		historical_option = yes
		add_legitimacy = legitimacy_severe_bonus
        c:HAB = { trigger_event_non_silently = { id = flavor_hab.2602 days = 20 } }
		scope:target_princess ?= {
			marry_character = scope:austrian_ruler
		}
		c:HAB = {
			add_opinion = {
				modifier = hab_austro_spanish_friendship
				target = root
			}
			reverse_add_opinion = {
				modifier = hab_austro_spanish_friendship
				target = root
			}
		}
    }

    option = {
        name = flavor_hab.2601.b
		add_prestige = prestige_severe_bonus
        c:HAB = { trigger_event_non_silently = { id = flavor_hab.2603 days = 20 } }
		c:HAB = {
			add_opinion = {
				modifier = hab_austro_spanish_friendship_refused
				target = root
			}
			reverse_add_opinion = {
				modifier = hab_austro_spanish_friendship_refused
				target = root
			}
		}
    }
}