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.182] 巨人

时间范围

1740.1.1 - 1863.1.1

  • 触发概率:每月 15%

触发条件

  • 国家拥有开罗(Cairo)地区。

关键效果

选项 A (flavor_tur.182.a)

  • 人物操作:将预先创建的人物“科卡·拉吉普”(Koca Ragip)移入本国,并尝试将其加入内阁。如果国家可以任命内阁首脑,则将其提升为内阁首脑。
  • 文化修正:为当前文化增加“文化传统轻微增益”。
  • 阶层修正:贵族阶层满意度获得“轻微惩罚”。
  • 社会价值观:使“好战 vs 和解”社会价值观向右侧(好战方向)发生“轻微移动”。

选项 B (flavor_tur.182.b)

  • 阶层修正:贵族阶层满意度获得“轻微增益”。
  • 人物操作:静默处决人物“科卡·拉吉普”(Koca Ragip)。此效果通过自定义提示 koca_retires.tt 隐藏。

背景介绍

此事件模拟了奥斯曼帝国(TUR)在18至19世纪期间,一位杰出政治人物“科卡·拉吉普·帕夏”可能登上历史舞台的情景。他以其卓越的行政和外交能力著称,其登场与否,以及统治者对他的态度(是委以重任还是迫使其隐退),将对帝国的内部稳定、文化发展和社会思潮产生影响。

完整事件代码

flavor_tur.182 = { #The Giant
	type = country_event
	title = flavor_tur.182.title
	desc = flavor_tur.182.desc

	historical_info = flavor_tur.182.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1740.1.1
		to = 1863.1.1
		monthly_chance = 15
	}

	trigger = {
		owns = location:cairo
	}

	immediate = {
		capital = { save_scope_as = target_capital }
		create_character = {
			first_name = name_muhammad
			last_name = name_ragip
			nickname = nick_koca
			adm = 85
			dip = 90
			mil = 50
			birth_date = 1698
			female = no
			birth_location = location:constantinople
			culture = culture:turkish_culture
			religion = religion:sunni
			estate = estate_type:burghers_estate
			add_trait = trait:efficient_administrator
			script = tur_koca_ragip
			save_scope_as = koca
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_tur.182.a

		scope:koca = {
			move_country = root
			root = {
				random_cabinet = {
					limit = { NOT = { exists = cabinet_member } }
					add_to_cabinet = scope:koca
				}
			}
			if = {
				limit = {
					root = { country_can_promote_head_of_cabinet = yes }
				}
				root = {
					promote_to_head_of_cabinet_effect = {
						target = scope:koca
					}
				}
			}
		}

		culture = {
			add_cultural_tradition = cultural_tradition_mild_bonus
		}

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

  		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_minor_move_to_right }
	}

	option = {
		name = flavor_tur.182.b


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

		custom_tooltip = koca_retires.tt
		hidden_effect = {
   			kill_character_silently = scope:koca
  		}
	}
}