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.115 苏丹女权时期

时间范围:1537.1.1 - 1737.1.1(每月 20% 概率触发)

触发条件

  • 国家已采用 ottoman_imperial_harem 政府改革。
  • 国家政策为 valide_sultan_court_policyharem_policy 中的至少一项。
  • 国家拥有统治者,且该统治者:
    • 为男性。
    • 拥有王朝。
    • 其王朝中至少有 2 名 满足以下条件的女性成员:
      • 在世。
      • 已成年。
      • 属于本国。
  • 满足以下至少一项条件:
    • 稳定度 < 0
    • 政府力量 < 50
    • 处于内战状态。
    • 拥有摄政王。

关键效果

  • 选项 A (历史选项)
    • 获得国家修正 sultanate_of_women,持续 50 年(若已存在则叠加并延长)。
    • 若未采用 powerful_harem_policy 政策,则添加该政策。
    • 增加少量稳定度 (stability_weak_bonus)。
    • 社会价值观变化:
      • traditionalist_vs_innovative:小幅向右移动(趋向创新)。
      • belligerent_vs_conciliatory:微幅向右移动(趋向好战)。
  • 选项 B
    • 增加少量威望 (prestige_weak_bonus)。
    • 若未采用 secluded_harem_policy 政策,则添加该政策。
    • 社会价值观变化:
      • traditionalist_vs_innovative:小幅向左移动(趋向传统)。

背景介绍: 此事件模拟了奥斯曼帝国历史上著名的“苏丹女权时期”(Kadınlar Saltanatı)。在16世纪至18世纪,帝国后宫(Harem)中的女性,特别是苏丹的母亲(Valide Sultan)和宠妃,通过影响苏丹和操纵宫廷政治,获得了前所未有的政治权力。这一时期常与帝国中央权力的相对衰弱、幼主即位或摄政等局面相关联,后宫女性成为帝国实际的重要决策者之一,深刻影响了奥斯曼帝国的内政与外交走向。

完整事件代码

flavor_tur.115 = { #The Sultanate of Women
	type = country_event
	title = flavor_tur.115.title
	desc = flavor_tur.115.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1537.1.1
		to = 1737.1.1
		monthly_chance = 20
	}

	historical_info = flavor_tur.115.historical_info

	trigger = {

		has_reform = government_reform:ottoman_imperial_harem

		OR = {
			has_policy = valide_sultan_court_policy
			has_policy = harem_policy
		}

		has_ruler = yes
		ruler ?= {
			has_dynasty = yes
			is_female = no
		}

		ruler = {
			dynasty = {
				any_character_in_dynasty = {
					is_female = yes
					is_alive = yes
					is_adult = yes
					owner = root
					count >= 2
				}
			}
		}

		OR = {
			stability < 0
			government_power < 50
			in_civil_war = yes
			has_regent = yes
		}
	}

	immediate =  {

		if = {
			limit = {
				ruler = {
					exists = mother
					mother = {
						is_alive = yes
						owner = root
					}
				}
			}
			ruler.mother = { save_scope_as = harem_power }
		}
		else = {
			ruler = {
				dynasty = {
					ordered_character_in_dynasty = {
						order_by = total_abilities
						limit = {
							owner = root
							is_female = yes
							is_adult = yes
							is_alive = yes
						}
						max = 1
						save_scope_as = harem_power
					}
				}
			}
		}
	}

	option = {
		name = flavor_tur.115.a
		historical_option = yes

		add_country_modifier = { modifier = sultanate_of_women years = 50 mode = add_and_extend }

		if = {
			limit = {
				NOT = {
					has_policy = powerful_harem_policy
				}
			}
			add_policy = policy:powerful_harem_policy
		}

		add_stability = stability_weak_bonus

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_minor_move_to_right
		}

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_tiny_move_to_right
		}
	}

	option = {
		name = flavor_tur.115.b

		add_prestige = prestige_weak_bonus

		if = {
			limit = {
				NOT = {
					has_policy = secluded_harem_policy
				}
			}
			add_policy = policy:secluded_harem_policy
		}

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_minor_move_to_left
		}
	}
}