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.116 宫廷派系

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

触发条件

  • 满足以下任一条件:
    • 已采用政府改革:ottoman_imperial_harem(奥斯曼帝国后宫)
    • 已启用政策:harem_policy(后宫政策)
  • 国家允许奴隶制(has_slavery = yes
  • 国家拥有统治者(has_ruler = yes
  • 至少有一个邻国是奴隶来源地(is_slave_origin = yes

关键效果

  • 选项 A

    • 对符合条件的邻国(favored_country):
      • 添加对我国的意见修正:opinion_ottoman_capitulation
      • 添加国家修正:merchant_benefits,持续15年
    • 我国添加国家修正:conciliatory_court_faction,持续15年
    • 若未启用政策 powerful_harem_policy,则启用该政策
    • 社会价值观 aristocracy_vs_plutocracy 大幅向右移动(societal_value_large_move_to_right
    • 贵族阶层满意度遭受极端惩罚(estate_satisfaction_extreme_penalty
  • 选项 B

    • 触发前提:国家拥有变量 dilsiz
    • 我国添加国家修正:war_at_court,持续10年
  • 选项 C

    • 若社会价值观 aristocracy_vs_plutocracy 大于 -80:
      • 该社会价值观向左移动(societal_value_move_to_left
      • 政府点数遭受轻度惩罚(government_power_mild_penalty
    • 否则:
      • 政府点数遭受极端惩罚(government_power_extreme_penalty

背景介绍: 在奥斯曼帝国时期,后宫不仅是苏丹的家庭居所,更是一个充满政治阴谋与权力斗争的中心。随着帝国疆域的扩张和奴隶贸易的兴盛,来自不同地区和背景的宫廷成员形成了各自的派系。这些派系——如亲贵族派、亲商人派或亲军事派——为了影响帝国政策、获取苏丹宠信以及争夺资源而明争暗斗。本事件模拟了这种宫廷内部因外部奴隶来源国利益而引发的派系博弈,玩家的选择将深刻影响帝国的社会结构、外交关系与内部稳定。

完整事件代码

flavor_tur.116 = { #The [GetCountryAdjective] Faction
	type = country_event
	title = flavor_tur.116.title
	desc = flavor_tur.116.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.116.historical_info

	trigger = {

		OR = {
			has_reform = government_reform:ottoman_imperial_harem
			has_policy = harem_policy
		}

		has_slavery = yes

		has_ruler = yes

		any_neighbor_country = {
			is_slave_origin = yes
		}
	}

	immediate =  {

		ordered_neighbor_country = {
			limit = {
				is_slave_origin = yes
			}
			order_by = expected_navy_size
			max = 1

			save_scope_as = favored_country
		}

		root.ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_tur.116.a

		scope:favored_country = {
			add_opinion = { target = root modifier = opinion_ottoman_capitulation  }
			add_country_modifier = { modifier = merchant_benefits years = 15 mode = add_and_extend }
		}

		add_country_modifier = { modifier = conciliatory_court_faction years = 15 mode = add_and_extend }

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

		change_societal_value = {
    		type = aristocracy_vs_plutocracy
    		value = societal_value_large_move_to_right
    	}

		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_penalty }
	}

	option = {
		name = flavor_tur.116.b

		trigger = {
			has_variable = dilsiz
		}

		add_country_modifier = { modifier = war_at_court years = 10 mode = add_and_extend }
	}

	option = {
		name = flavor_tur.116.c

		if = {
			limit = { societal_value:aristocracy_vs_plutocracy > -80 }
			change_societal_value = {
				type = aristocracy_vs_plutocracy
				value = societal_value_move_to_left
			}
			add_government_power = government_power_mild_penalty
		}
		else = { add_government_power = government_power_extreme_penalty }
	}
}