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_chi.25] 脱脱出任丞相

时间范围:1340.1.1 - 1341.1.1(每月 25% 概率)

触发条件

  • 国家是元朝中国(is_yuan_china = yes)。
  • 人物 yua_bayan_merkid(伯颜)已死亡。
  • 人物 yua_toqto(脱脱)存活,且未被阻止进入内阁(modifier:blocked_from_cabinet = no)。

关键效果

  • 选项 A (flavor_chi.25.a):

    • 任命脱脱为丞相(yua_appoint_as_dictator)。
    • 调整元朝改革前修正值 +0.05(chi_adjust_pre_rtr_modifiers)。
    • 显示自定义提示 YUA_benefits_of_toqto
  • 选项 B (flavor_chi.25.b):

    • 获得少量威望(add_prestige = prestige_mild_bonus)。
    • 调整元朝改革前修正值 -0.05(chi_adjust_pre_rtr_modifiers)。

背景介绍: 此事件模拟了元朝末期的一次重要人事变动。在权臣伯颜去世后,其侄子脱脱(Toqto’a)作为改革派代表,被推举为丞相。脱脱上台后推行了一系列旨在缓和矛盾、恢复经济的“更化”政策,试图挽救元朝的统治危机。然而,这一任命也标志着元廷内部权力斗争的延续,其改革措施的效果与后续影响,将深刻影响元朝的命运。

完整事件代码

flavor_chi.25 = {
	type = country_event
	title = flavor_chi.25.title
	desc = flavor_chi.25.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1340.1.1
		to = 1341.1.1
		monthly_chance = 25
	}

	illustration_tags = {
		10 = interior
	}

	immediate = {
		event_illustration_estate_background_effect = { background = estate_type:nobles_estate }
		character:yua_toqto = {
			save_scope_as = recipient
		}
		character:yua_bayan_merkid = {
			save_scope_as = dead_character
		}
	}


	trigger = {
		is_yuan_china = yes
		character:yua_bayan_merkid = {
			is_alive = no
		}
		character:yua_toqto = {
			is_alive = yes
			modifier:blocked_from_cabinet = no
		}
	}
	option = {
		name = flavor_chi.25.a

		yua_appoint_as_dictator = {
			target = scope:recipient
		}
		chi_adjust_pre_rtr_modifiers = { value = 0.05 }

		custom_tooltip = YUA_benefits_of_toqto
	}

	option = {
		name = flavor_chi.25.b

		add_prestige = prestige_mild_bonus
		chi_adjust_pre_rtr_modifiers = { value = -0.05 }
	}
}