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.216] 奥斯曼帝国占领马耳他

时间范围

  • 事件为一次性触发(fire_only_once = yes),无固定 fromto 日期限制,满足条件即可触发。

触发条件

  • 国家标签为 TUR(奥斯曼帝国)。
  • 省份 malta(马耳他)满足以下全部条件:
    • TUR 控制。
    • 其所有者与 TUR 处于战争状态。
    • 拥有 fort_level(堡垒等级)修正,且等级大于 0。

关键效果

  • 选项: flavor_tur.216.a
    • 增加 prestige_mild_bonus(少量威望)。
    • 改变社会价值观:
      • 类型:land_vs_naval(陆军 vs 海军)
      • 变化:societal_value_minor_move_to_right(小幅向右移动,即略微偏向陆军)。

背景介绍

该事件模拟了奥斯曼帝国在战争中成功占领战略要地马耳他岛的情景。马耳他作为地中海的关键据点,历史上曾多次成为军事争夺的焦点,尤其是奥斯曼帝国与基督教势力(如医院骑士团、西班牙等)之间。占领一个拥有防御工事的马耳他,不仅能为奥斯曼带来军事优势,也可能影响其国内对陆军与海军发展的战略倾向。

完整事件代码

flavor_tur.216 = {
	hide_portraits = yes
	type = country_event
	title = flavor_tur.216.title
	desc = flavor_tur.216.desc

	fire_only_once = yes

	trigger = {
		tag = TUR
		location:malta = {
			controller = root
			owner = {
				is_at_war_with = root
			}
			modifier:fort_level > 0
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		location:malta = {
			save_scope_as = target_location
			owner = {
				save_scope_as = target_country
				ruler_or_regent ?= {
					save_scope_as = target_character2

				}
			}
		}
	}

	option = {
		name = flavor_tur.216.a

		add_prestige = prestige_mild_bonus

		change_societal_value = {
			type = land_vs_naval
			value = societal_value_minor_move_to_right
		}
	}
}