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_tle.1] 阿布·塔舒芬的继承危机

时间范围
事件为一次性触发(fire_only_once = yes),无具体 fromto 日期限制,触发概率取决于条件满足情况。

触发条件

  • 国家标签为 TLE(特莱姆森王国)。
  • 角色 tle_abu_tashufin 必须:
    • 存活(is_alive = yes)。
    • 是国家统治者(is_ruler = yes)。
    • 不是将领(is_general = no)。
  • 当前目标范围(scope:target,通常指首都):
    • 不被 TLE 国家控制(NOT = { controller = c:TLE })。
    • 是首都(is_capital = yes)。

关键效果

  • 选项 A(历史选项) flavor_tle.1.a
    • 对统治者范围(scope:ruler_scope,即阿布·塔舒芬):
      • 处决所有符合条件的儿子:存活、成年、男性、非将领。
      • 处决统治者本人(阿布·塔舒芬)。
    • 国家稳定性遭受严重惩罚(add_stability = stability_severe_penalty)。

背景介绍
该事件模拟了特莱姆森王国(TLE)在首都失守、国家危难之际,统治者阿布·塔舒芬面临的政治与继承危机。历史上,此类情境常迫使统治者做出极端决策,以避免王朝在战乱中分裂或落入敌手。事件反映了中世纪北非王国在外部压力下,内部权力结构的脆弱性与残酷的继承斗争。

完整事件代码

flavor_tle.1 = {
	type = country_event
	title = flavor_tle.1.title
	desc = flavor_tle.1.desc
	fire_only_once = yes
	
	illustration_tags = {
		10 = angry
		10 = exterior
	}

	trigger = {
		tag = TLE
		character:tle_abu_tashufin = {
			is_alive = yes
			is_ruler = yes
			is_general = no			
		}
		scope:target = {
			NOT = { controller = c:TLE }
			is_capital = yes
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		capital = {
			save_scope_as = capital_scope
		}
		character:tle_abu_tashufin = {
			save_scope_as = ruler_scope
		}
	}

	option = {
		name = flavor_tle.1.a
		historical_option = yes
		scope:ruler_scope = {
			every_child = {
				limit = {
					is_alive = yes
					is_adult = yes
					is_female = no
					is_general = no
				}
				kill_character = this
			}
			kill_character = this
		}
		add_stability = stability_severe_penalty
	}
}