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_nap.104 维勒讷夫条约(阿拉贡的反应)

时间范围
事件为一次性触发,无具体时间范围(代码中未定义 fromto 字段)。触发概率由游戏动态决定,代码中未指定 monthly_chance

触发条件

  • 事件为一次性事件(fire_only_once = yes)。
  • 具体触发条件由游戏引擎在满足特定动态历史情境时调用,代码中未明确定义 trigger 字段。

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

  1. 选项 A(对应 flavor_nap.104.a):

    • 对目标国家 西西里(c:SIC) 添加一个 宣称王位casus_belli:cb_claim_throne)的宣战理由。
  2. 选项 B(对应 flavor_nap.104.b):

    • 无具体效果(选项为空)。

背景介绍
该事件模拟了历史上《维勒讷夫条约》签订后,阿拉贡方面可能作出的反应。条约涉及那不勒斯王国的继承与领土安排,阿拉贡作为相关方,面临是否对西西里提出王位宣称的抉择。选择宣称王位将导致与西西里的紧张关系升级,为军事行动提供法理依据。

完整事件代码

flavor_nap.104 = { #The Treaty of Villeneuve (Aragon Reaction)
	type = country_event

	title = flavor_nap.104.title
	desc = flavor_nap.104.desc

	illustration_tags = {
        10 = regular
        10 = interior
    }

	fire_only_once = yes

	immediate = {
		
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	option = {
		name = flavor_nap.104.a
		add_casus_belli = {	target = c:SIC	type = casus_belli:cb_claim_throne	}
	}

	option = {
		name = flavor_nap.104.b
	}

}