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_ira.1000 奥斯曼邻国的抉择

时间范围:1500.1.1 - 1700.1.1(每月 5% 概率) 触发条件

  • 事件国家(ROOT)拥有统治者。
  • 如果 rise_of_the_ottomans 局势处于活跃状态,并且该局势拥有 strongest_beylik_variable 变量,则:
    • 该变量指向的国家必须:
      • 拥有统治者。
      • 是事件国家的邻国。
      • 是独立国家或朝贡国。
      • 未与事件国家结盟。
      • 未与事件国家处于战争状态。
      • 满足以下条件之一:
        • 是事件国家的宿敌。
        • 是事件国家的敌人。
        • 国家等级大于 2。
  • 否则(即上述局势不活跃或不满足条件):
    • 国家 TUR(奥斯曼)必须满足上述所有相同的条件(拥有统治者、是邻国、独立或朝贡、未结盟、未交战,且是宿敌/敌人或等级大于2)。

关键效果

  • 选项 A (历史选项)
    • 与目标国家(奥斯曼或其等效国家)建立历史宿敌关系(不触发对方事件)。
    • 根据 belligerent_vs_conciliatory(好战 vs 和解)社会价值观,按比例降低稳定度(除以10)。
    • 社会价值观 belligerent_vs_conciliatory 大幅向左(好战方向)移动。
    • 目标国家也会与事件国家建立历史宿敌关系(不触发事件),并静默触发事件 flavor_ira.1001
  • 选项 B
    • 根据 belligerent_vs_conciliatory(好战 vs 和解)社会价值观,按比例增加稳定度(除以-5,即提升)。
    • 社会价值观 belligerent_vs_conciliatory 大幅向右(和解方向)移动。

背景介绍: 在16至17世纪,小亚细亚及周边地区的众多贝伊国(公国)与日益强大的奥斯曼帝国相邻。这些国家常常面临一个关键的战略抉择:是公开对抗这个崛起的巨人,将其视为威胁和对手;还是采取更为谨慎、和解的外交姿态,以避免直接冲突并可能寻求共存。这一事件模拟了邻国统治者在面对强大的奥斯曼(或其在前奥斯曼时期局势中的等效强势贝伊国)时,在国家路线上的根本性决策。

完整事件代码

flavor_ira.1000 = {
	type = country_event
	title = flavor_ira.1000.title
	desc = flavor_ira.1000.desc
	historical_info = flavor_ira.1000.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = IRA
		from = 1500.1.1
		to = 1700.1.1
		monthly_chance = 5
	}
	illustration_tags = {
		10 = armed
		10 = exterior
	}
	trigger = {
		has_ruler = yes
		trigger_if = {
			limit = {
				is_situation_active = situation:rise_of_the_ottomans
				situation:rise_of_the_ottomans = { has_variable = strongest_beylik_variable }
			}
			situation:rise_of_the_ottomans = {
				var:strongest_beylik_variable = {
					has_ruler = yes
					is_neighbor_of = ROOT
					is_free_or_tributary_trigger = yes
					NOT = { is_allied_with = { target = ROOT } }
					NOT = { is_at_war_with = ROOT }
					OR = {
						is_rival_of = ROOT
						is_enemy_of = ROOT
						country_rank_level > 2
					}
				}
			}
		}
		trigger_else = {
			c:TUR = {
				has_ruler = yes
				is_neighbor_of = ROOT
				is_free_or_tributary_trigger = yes
				NOT = { is_allied_with = { target = ROOT } }
				NOT = { is_at_war_with = ROOT }
				OR = {
					is_rival_of = ROOT
					is_enemy_of = ROOT
					country_rank_level > 2
				}
			}
		}
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = root_country
		get_ottomans_equivalent_scope = {
			save_scope_as = target_country
		}
		ruler ?= { save_scope_as = root_character }
		scope:target_country = { ruler ?= { save_scope_as = target_character } }
	}

	option = {
		name = flavor_ira.1000.a
		historical_option = yes
		add_historical_rival_scripted = {
			target = scope:target_country
			trigger_recipient_event = no
		}
		custom_tooltip = flavor_ira.1000.a.tt
		add_effect_scaling_with_societal_value = {
			societal_value = belligerent_vs_conciliatory
			effect = stability
			operator = divide
			value = 10
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_large_move_to_left }
		scope:target_country = {
			show_as_tooltip = {
				add_historical_rival_scripted = {
					target = scope:root_country
			trigger_recipient_event = no
				}
			}
			trigger_event_silently = flavor_ira.1001
		}
	}
	option = {
		name = flavor_ira.1000.b
		add_effect_scaling_with_societal_value = {
			societal_value = belligerent_vs_conciliatory
			effect = stability
			operator = divide
			value = -5
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_large_move_to_right }
	}
}