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.215 罗德岛围攻

时间范围
无明确时间范围(fromto 未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 国家标签为奥斯曼帝国(tag = TUR
  • 罗德岛(location:rodos)同时满足以下所有条件:
    • 由玩家(root)控制(controller = root
    • 其所有者(owner)与玩家处于战争状态(is_at_war_with = root),且所有者必须是医院骑士团(this = c:KNI
    • 该省份是医院骑士团的首都(is_capital = yes
    • 该省份拥有至少1级堡垒(modifier:fort_level > 0

关键效果

  • 选项 Aflavor_tur.215.a):
    • 获得少量威望(add_prestige = prestige_mild_bonus
    • 社会价值观向“进攻性”方向轻微偏移(change_societal_valueoffensive_vs_defensive 向左侧轻微移动 societal_value_minor_move_to_left

背景介绍
该事件模拟了奥斯曼帝国历史上对医院骑士团总部所在地——罗德岛的围攻。罗德岛作为骑士团在地中海东部的坚固据点,长期阻碍奥斯曼的海上扩张。当奥斯曼军队控制该岛并确认其仍为骑士团首都且设防时,可能触发此事件,反映奥斯曼在军事征服中对战略要地的重视及其对进攻性军事政策的推动。

完整事件代码

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

	fire_only_once = yes

	trigger = {
		tag = TUR
		location:rodos = {
			controller = root
			owner = {
				is_at_war_with = root
				this = c:KNI
			}
			is_capital = yes
			modifier:fort_level > 0
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

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

				}
			}
		}
	}

	option = {
		name = flavor_tur.215.a

		add_prestige = prestige_mild_bonus

		change_societal_value = {
			type = offensive_vs_defensive
			value = societal_value_minor_move_to_left
		}
	}
}