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_chb.2 察合台汗国继承人之争

时间范围:1339.1.1 - 1350.1.1(每月 5% 概率触发)

触发条件

  • 必须满足以下所有条件:
    • 人物 chb_hasan_kuchak 存活。
    • 人物 chb_suleiman_khan 存活。
    • 人物 chb_sati_beg 存活。

关键效果

  • 选项 A (flavor_chb.2.a)

    • 将人物 chb_sati_beg(已保存为 target_khatun)转移至触发事件的国家。
    • 如果人物 chb_surgan 存活,则将其也转移至触发事件的国家。
    • 如果触发事件的国家尚未在“伊利汗国”国际组织中拥有“伊利汗宣称者”的特殊地位,则为其添加此地位。
  • 选项 B (flavor_chb.2.b)

    • 将人物 chb_suleiman_khan(已保存为 target_khan)转移至触发事件的国家。
    • 将人物 chb_sati_beg(已保存为 target_khatun)转移至触发事件的国家,并使其与 chb_suleiman_khan 结婚。
    • 如果人物 chb_surgan 存活,则将其也转移至触发事件的国家。
    • 如果触发事件的国家尚未在“伊利汗国”国际组织中拥有“伊利汗宣称者”的特殊地位,则为其添加此地位。

背景介绍: 在14世纪中叶,察合台汗国(CHB)内部因继承问题出现纷争。事件围绕关键人物哈桑·库恰克(Hasan Kuchak)、苏莱曼汗(Suleiman Khan)和萨蒂·别格(Sati Beg)展开,他们之间的存活状态触发了这场政治危机。事件的核心在于如何整合这些有影响力的人物,以巩固或争夺在更广泛的蒙古伊利汗国体系内的合法宣称地位。选项代表了不同的结盟与联姻策略,旨在增强本国在伊利汗国遗产继承问题上的话语权。

完整事件代码

flavor_chb.2 = {
	hide_portraits = yes
	type = country_event
	title = flavor_chb.2.title
	desc = flavor_chb.2.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = CHB
		from = 1339.1.1
		to = 1350.1.1
		monthly_chance = 5
	}

	major = yes
	major_trigger = {
		OR = {
			tag = ERE
			tag = JAL
		}
	}

	trigger = {
		character:chb_hasan_kuchak ?= { is_alive = yes }
		character:chb_suleiman_khan ?= { is_alive = yes }
		character:chb_sati_beg ?= { is_alive = yes }
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:chb_suleiman_khan = {
			save_scope_as = target_khan
		}
		character:chb_sati_beg = {
			save_scope_as = target_khatun
		}
	}

	option = {
		name = flavor_chb.2.a
		scope:target_khatun = {
			move_country = root
		}
		if = {
			limit = {
				character:chb_surgan ?= { is_alive = yes }
			}
			character:chb_surgan = { move_country = root }
		}
		if = {
			limit = {
				NOT = {
					has_special_status_in_international_organization = {
						type = special_status:ilkhan_claimant
						international_organization = international_organization:ilkhanate
					}
				}
			}
			international_organization:ilkhanate = {
				international_organization_add_special_status = {
					type = special_status:ilkhan_claimant
					country = root
				}
			}
		}
	}

	option = {
		name = flavor_chb.2.b
		scope:target_khan = {
			move_country = root
		}
		scope:target_khatun = {
			move_country = root
			marry_character = scope:target_khan
		}
		if = {
			limit = {
				character:chb_surgan ?= { is_alive = yes }
			}
			character:chb_surgan = { move_country = root }
		}
		if = {
			limit = {
				NOT = {
					has_special_status_in_international_organization = {
						type = special_status:ilkhan_claimant
						international_organization = international_organization:ilkhanate
					}
				}
			}
			international_organization:ilkhanate = {
				international_organization_add_special_status = {
					type = special_status:ilkhan_claimant
					country = root
				}
			}
		}
	}
}