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.163 侮辱性的奇观?

时间范围

1774.1.1 - 1791.1.1,每月 15% 概率触发。

触发条件

  • 奥斯曼帝国(TUR)必须至少有一个竞争对手满足以下所有条件:
    • 未与奥斯曼帝国处于战争状态。
    • 拥有统治者。
    • 在欧洲大陆拥有存在。
    • 属于基督教宗教组。
    • 是AI控制的国家。

关键效果

  • 选项 A (flavor_tur.163.a):

    • 减少金币(change_gold_effect = { scale = -3 })。
    • 为当前文化添加文化传统增益(add_cultural_tradition = cultural_tradition_mild_bonus)。
  • 选项 B (flavor_tur.163.b):

    • 增加威望(add_prestige = prestige_weak_bonus)。

背景介绍

在18世纪后期,奥斯曼帝国与欧洲基督教国家的关系复杂而紧张。这一时期,欧洲的竞争对手时常通过文化或外交手段展现其优越感或进行挑衅。本事件模拟了奥斯曼帝国可能面临的一种外交或文化上的“侮辱性奇观”,例如其竞争对手在其首都上演一出以奥斯曼或东方为背景、可能带有贬低或刻板印象的戏剧(如莫扎特的歌剧《后宫诱逃》),以此作为政治或文化姿态。奥斯曼帝国需要对此作出回应,是选择投入资源进行文化反击,还是通过提升自身威望来应对。

事件代码

flavor_tur.163 = { #An Insulting Spectacle?
	hide_portraits = yes
	type = country_event
	title = flavor_tur.163.title
	desc = flavor_tur.163.desc

	historical_info = flavor_tur.163.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1774.1.1
		to = 1791.1.1
		monthly_chance = 15
	}

	trigger = {

		any_rival = {
			NOT = { is_at_war_with = root }
   			has_ruler = yes
   			has_presence_in = continent:europe
   			religion.group = religion_group:christian
   			is_ai = yes
		}

	}

	immediate = {

		ordered_rival = {
			order_by = prestige
			limit = {
				NOT = { is_at_war_with = root }
   				has_ruler = yes
   				has_presence_in = continent:europe
   				religion.group = religion_group:christian
   				is_ai = yes
			}
			max = 1
			save_scope_as = target_rival
			capital = {
				save_scope_as = rival_capital
			}
		}

		if = {
			limit = {
				character:hab_mozart_script ?= {
					is_alive = yes
				}
			}
			character:hab_mozart_script = { save_scope_as = mozart }
			scope:rival_capital = {
				create_art = {
					artist = scope:mozart
					quality = 95
					location = scope:rival_capital
					type = work_of_art_type:play
					key = abduction_from_the_seraglio
				}
			}
		}
	}

	option = {
		name = flavor_tur.163.a

		change_gold_effect = { scale = -3 }

		culture = {
			add_cultural_tradition = cultural_tradition_mild_bonus
		}
	}

	option = {
		name = flavor_tur.163.b

		add_prestige = prestige_weak_bonus
	}
}