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_tur.81] 奥斯曼帝国对威尼斯的外交行动

时间范围
无明确 fromto 日期,事件由游戏动态触发。

触发条件
代码中未显示 trigger 字段,具体触发条件需参考游戏内其他相关脚本或动态历史系统。

关键效果

  • 选项 A (历史选项)

    • 对目标国家(scope:target_country)就目标省份(scope:target_province)添加“征服省份”的宣战理由(casus_belli:cb_conquer_province)。
    • 获得少量政府力量加成(government_power_mild_bonus)。
    • 威尼斯(c:VEN)对奥斯曼帝国(root)增加“外交行动”好感度(opinion_diplomatic_move)。
  • 选项 B

    • 目标国家(scope:target_country)对奥斯曼帝国(root)增加“取消入侵计划”好感度(opinion_cancelled_invasion_plans)。

背景介绍
该事件反映了奥斯曼帝国在扩张过程中与威尼斯共和国之间的外交与军事互动。作为地中海东部的两大势力,双方在贸易路线、领土控制上存在长期竞争。奥斯曼帝国可能针对威尼斯控制的某个关键省份策划军事行动,而威尼斯则试图通过外交手段影响局势。事件中的两个选项分别代表了继续施压以获取领土宣战理由,或取消计划以改善与目标国家的关系。

完整事件代码

flavor_tur.81 = {
	type = country_event
	title = flavor_tur.81.title
	desc = flavor_tur.81.desc
	historical_info = flavor_tur.81.historical_info

	option = {
		name = flavor_tur.81.a
		historical_option = yes

		add_casus_belli = { target = scope:target_country type = casus_belli:cb_conquer_province province = scope:target_province }

		add_government_power = government_power_mild_bonus

		c:VEN = {
			add_opinion = { target = root modifier = opinion_diplomatic_move  }
		}
	}

	option = {
		name = flavor_tur.81.b

		scope:target_country = {
			add_opinion = { target = root modifier = opinion_cancelled_invasion_plans  }
		}
	}
}