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_ven.19 威尼斯与奥斯曼的紧张局势

时间范围:无具体起止日期(fromto 未定义),事件在满足条件后持续可触发。

触发条件

  • 玩家国家满足以下任一条件:
    • 正在与奥斯曼帝国(c:TUR)交战。
    • 拥有莱切(location:lecce)地区。
  • 玩家国家的宗教属于基督教宗教组(religion.group = religion_group:christian)。

关键效果

  • 选项 A (历史选项)
    • 触发奥斯曼帝国事件 flavor_tur.81(2-3天后)。
    • 目标国家(scope:target_country)对玩家产生“不满”意见修正。
  • 选项 B
    • 触发奥斯曼帝国事件 flavor_tur.82(2-3天后)。
    • 若玩家为天主教国家且教宗国(c:PAP)存在,则教宗国对玩家产生“不满”意见修正。
    • 目标国家(scope:target_country)对玩家产生“不满”意见修正。
    • 玩家获得少量威望(prestige_weak_bonus)。
  • 选项 C
    • 奥斯曼帝国(c:TUR)对玩家产生“恼怒”意见修正。
    • 触发奥斯曼帝国事件 flavor_tur.83(2-3天后)。

背景介绍: 此事件模拟了威尼斯共和国在基督教世界与奥斯曼帝国地缘政治夹缝中的外交困境。作为地中海贸易强国,威尼斯时常需要在维护自身商业利益、应对奥斯曼扩张压力以及履行对天主教世界的义务之间做出艰难抉择。事件反映了威尼斯在处理与奥斯曼关系时可能面临的外交连锁反应和声誉影响。

完整事件代码

flavor_ven.19 = {
	type = country_event
	title = flavor_ven.19.title
	desc = flavor_ven.19.desc

	historical_info = flavor_ven.19.historical_info

	trigger = {

		NOT = {
			is_at_war_with = c:TUR
			owns = location:lecce
		}
		religion.group = religion_group:christian
	}

	option = {
		name = flavor_ven.19.a
		historical_option = yes

		custom_tooltip = flavor_ven.19.a.tt

		c:TUR = {
			trigger_event_non_silently = {
				id = flavor_tur.81
				days = { 2 3 }
			}
		}

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

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_ven.19.b

		custom_tooltip = flavor_ven.19.b.tt

		c:TUR = {
			trigger_event_non_silently = {
				id = flavor_tur.82
				days = { 2 3 }
			}
		}

		if = {
			limit = {
				AND = {
					religion = religion:catholic
					country_exists = c:PAP
				}
			}
			c:PAP = {
				add_opinion = { target = root modifier = opinion_displeased  }
			}
		}

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

		add_prestige = prestige_weak_bonus
	}

	option = {
		name = flavor_ven.19.c

		c:TUR = {
			add_opinion = { target = root modifier = opinion_irritated  }
		}

		c:TUR = {
			trigger_event_non_silently = {
				id = flavor_tur.83
				days = { 2 3 }
			}
		}
	}
}