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.24 埃及的崛起与背叛

时间范围:1737.1.1 - 1837.1.1(每月 5% 概率)

触发条件

  • 国家中 lower_egyptian_culture(下埃及文化)的人口比例大于 0%。
  • egypt_region(埃及地区)拥有至少一个省份,且该省份的主流文化为 lower_egyptian_culture(下埃及文化)。

关键效果

  • 选项 A (flavor_tur.24.a)

    • 在埃及地区,所有属于玩家且文化为下埃及的人口,其满意度将受到 pop_satisfaction_ultimate_penalty(终极惩罚)级别的降低。
    • 人物 abu_al_dhahab 将加入玩家国家。
    • 国家威望受到 prestige_severe_penalty(严重惩罚)级别的降低。
    • 人物 ali_al_kabir 被刺杀。
  • 选项 C (flavor_tur.24.c) [历史选项]

    • 在埃及地区,所有属于玩家且文化为下埃及的人口,其满意度将受到 pop_satisfaction_extreme_penalty(极端惩罚)级别的降低。
    • 国家威望受到 prestige_severe_penalty(严重惩罚)级别的降低。
    • 人物 abu_al_dhahab 将加入玩家国家。
    • 人物 ali_al_kabir 被刺杀,且刺客被指定为 abu_al_dhahab
  • 选项 B (flavor_tur.24.b)

    • 在埃及地区,所有属于玩家且文化为下埃及的人口,其满意度将受到 pop_satisfaction_ultimate_penalty(终极惩罚)级别的降低。
    • 人物 ali_al_kabirabu_al_dhahab 被秘密处决。

背景介绍: 在18至19世纪的奥斯曼帝国统治下,埃及地区因其战略位置和丰富的资源而成为帝国的重要部分,但也因此成为权力斗争和离心力的中心。当地的下埃及文化精英和军事领袖,如阿里·阿尔-卡比尔和阿布·阿尔-扎哈卜,在帝国中央控制力减弱时,往往会寻求更大的自治权甚至独立。此事件模拟了奥斯曼帝国在埃及面临的治理困境:是镇压潜在的分离主义领袖,还是通过妥协来维持表面上的稳定,但可能埋下更深的隐患。

完整事件代码

flavor_tur.24 = {
	type = country_event
	title = flavor_tur.24.title
	desc = flavor_tur.24.desc

	historical_info = flavor_tur.24.historical_info


	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1737.1.1
		to = 1837.1.1
		monthly_chance = 5
	}

	trigger = {

		"culture_percentage_in_country(culture:lower_egyptian_culture)" > 0
		any_owned_location = {
			region = region:egypt_region
			dominant_culture = culture:lower_egyptian_culture
		}
	}

	immediate = {

		create_character = {
			first_name = name_ali
			last_name = name_al_kabir
			adm = 70
			dip = 65
			mil = 80
			female = no
			culture = culture:lower_egyptian_culture
			ethnicity = ethnicity:european_mediterranean_ethnicity
			religion = religion:sunni
			estate = estate_type:nobles_estate
			birth_location = location:sukhumi
			age = 35
			script = tur_ali_al_kabir
			save_scope_as = ali_al_kabir
			create_in_limbo = yes
		}

		create_character = {
			first_name = name_abu
			last_name = name_al_dhahab
			adm = 30
			dip = 50
			mil = 75
			female = no
			culture = culture:lower_egyptian_culture
			ethnicity = ethnicity:european_mediterranean_ethnicity
			religion = religion:sunni
			estate = estate_type:nobles_estate
			birth_location = location:tuapse
			age = 28
			script = tur_abu_al_dhahab
			save_scope_as = abu_al_dhahab
			create_in_limbo = yes
		}
	}


	option = {
		name = flavor_tur.24.a
		custom_tooltip = {
			text = egyptian_uprising
			every_owned_location = {
				limit = {
					region = region:egypt_region
				}
				every_pop = {
					limit = {
						owner = root
						culture = culture:lower_egyptian_culture
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
				}
			}
		}

		scope:abu_al_dhahab = { move_country = root }

		add_prestige = prestige_severe_penalty

		kill_character = {
			target = scope:ali_al_kabir
			reason = assassination
		}
	}

	option = {
		name = flavor_tur.24.c
		historical_option = yes

		custom_tooltip = {
			text = egyptian_discontent
			every_owned_location = {
				limit = {
					region = region:egypt_region
				}
				every_pop = {
					limit = {
						owner = root
						culture = culture:lower_egyptian_culture
					}
					add_pop_satisfaction = pop_satisfaction_extreme_penalty
				}
			}
		}

		add_prestige = prestige_severe_penalty

		scope:abu_al_dhahab = { move_country = root }

		kill_character = {
			target = scope:ali_al_kabir
			reason = assassination
			killer = scope:abu_al_dhahab
		}
	}

	option = {
		name = flavor_tur.24.b

		custom_tooltip = {
			text = egyptian_uprising
			every_owned_location = {
				limit = {
					region = region:egypt_region
				}
				every_pop = {
					limit = {
						owner = root
						culture = culture:lower_egyptian_culture
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
				}
			}
		}

		kill_character_silently = scope:ali_al_kabir
		kill_character_silently = scope:abu_al_dhahab
	}
}