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.64 手足相残

时间范围:1437.1.1 - 1537.1.1(每月 5% 概率)

触发条件

  • 国家拥有统治者。
  • 存在至少一名男性、非统治者、非继承人、年龄不小于16岁的统治者兄弟。
  • 政府力量低于80点。
  • 已通过政府改革“内廷服务”。
  • 首都省份存在。

关键效果

  • 选项 A (历史选项)
    • 处决目标兄弟(scope:ambitious_brother),理由为刺杀,执行者为统治者。
    • 随机效果(二选一):
      • 75% 概率:增加10.00点政府力量。
      • 25% 概率:首都所有阶层民众满意度遭受严重惩罚。
  • 选项 B
    • 减少30.00点政府力量。

背景介绍: 此事件模拟了奥斯曼帝国早期历史上著名的“弑亲法”传统。为了维护统治稳定、防止王位争夺引发内战,新苏丹即位后有时会处决其兄弟。这一残酷做法旨在消除潜在的政治威胁,但也会在宫廷和民众中引发恐惧与不满。

完整事件代码

flavor_tur.64 = { #Sibling Killing on a fine day
	hide_portraits = yes
	type = country_event
	title = flavor_tur.64.title
	desc = flavor_tur.64.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1437.1.1
		to = 1537.1.1
		monthly_chance = 5
	}

	historical_info = flavor_tur.64.historical_info


	trigger = {
		has_ruler = yes

		any_character = {
			is_sibling_of = c:TUR.ruler
			is_female = no
			is_ruler = no
  			is_heir = no
  			age_in_years >= 16
		}

		government_power < 80

		has_reform = government_reform:enderun_interior_service

		exists = capital
	}

	immediate = {
		root.ruler = { save_scope_as = ruler }

		random_character = {
			limit = {
				is_sibling_of = c:TUR.ruler
				is_female = no
				is_ruler = no
  				is_heir = no
  				age_in_years >= 16
			}
			save_scope_as = ambitious_brother
		}

		capital = {
			save_scope_as = capital_location
		}
	}

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

		kill_character = {
			target = scope:ambitious_brother
			reason = assassination
			killer = ruler
		}

		random_list = {

			75 = {
				add_government_power = 10.00
			}
			25 = {
				scope:capital_location = {
					every_pop = {	add_pop_satisfaction = pop_satisfaction_severe_penalty	}
				}
			}
		}
	}

	option = {
		name = flavor_tur.64.b

		add_government_power = -30.00
	}
}