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_tim.1102 真主化身崛起

时间范围:无明确起止日期(from/to 未定义),事件在满足触发条件后,每月有基础概率(monthly_chance 未定义,默认为0%)触发。

触发条件

  • 国家中至少存在一名 存活 且拥有角色修正 tim_reincarnation_of_allah(真主化身)的人物。
  • 国家 正统性 低于或等于 50。

关键效果

  • 选项 A (flavor_tim.1102.a)

    • 处决拥有“真主化身”修正的角色(scope:target_character)。
    • 创建一个名为“胡鲁菲派信徒”(hurufism_followers)的 宗教 类别叛军。
    • 在国家 人口最多 的地区,将所有规模大于等于 0.4 的 农民 人口(pop_type:peasants)的效忠对象转变为该叛军。
  • 选项 B (flavor_tim.1102.b)

    • 将政府类型改为 神权政体government_type:theocracy)。
    • 将拥有“真主化身”修正的角色(scope:target_character)设置为国家的新统治者。
    • 若国家宗教不属于穆斯林宗教组
      • 将国教改为 逊尼派religion:sunni)。
      • 统治者及其家族成员改信逊尼派。
      • 教士阶层estate_type:clergy_estate)满意度遭受 极端惩罚estate_satisfaction_extreme_penalty)。
    • 贵族阶层estate_type:nobles_estate)满意度遭受 极端惩罚

背景介绍: 在帖木儿帝国(或其后继政权)统治不稳、正统性低下之际,宣称自身为“真主化身”的宗教人物可能获得巨大影响力。统治者面临抉择:是武力镇压这位潜在的弥赛亚及其追随者,还是接纳其主张,甚至让其掌权,从而彻底改变国家的政教结构。这一事件反映了中世纪晚期伊斯兰世界面临的宗教狂热与政治合法性危机。

完整事件代码

flavor_tim.1102 = { #Rise of..
	type = country_event
	title = flavor_tim.1102.title
	desc = flavor_tim.1102.desc

	trigger = {
		any_character = { 
			has_character_modifier = tim_reincarnation_of_allah
			is_alive = yes
		}
		legitimacy <= 50
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ordered_owned_location = {
			order_by = population
			position = 1
			area = {
				save_scope_as = target_area
			}
		}

		ruler_or_regent ?= {
			save_scope_as = target_character2
		}

		random_character = {
			limit = {
				has_character_modifier = tim_reincarnation_of_allah
			}
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_tim.1102.a

		kill_character = {
			target = scope:target_character
		}

		create_rebel = {
			category = religious
			religion = religion:sunni
			name = hurufism_followers
			save_scope_as = target_rebel
		}

		scope:target_area = {
			every_location_in_area = {
				every_pop = {
					limit = {
						pop_size >= 0.4
						pop_type = pop_type:peasants
					}
					change_pop_allegiance = scope:target_rebel
				}
			}
		}
	}

	option = {
		name = flavor_tim.1102.b

		change_government_type = government_type:theocracy
		set_new_ruler = scope:target_character

		if = {
			limit = {
				religion.group != religion_group:muslim
			}
			change_religion = religion:sunni
			change_religion_for_ruler_and_family = { country = ROOT religion = religion:sunni }
			add_estate_satisfaction = {
				type = estate_type:clergy_estate
				value = estate_satisfaction_extreme_penalty
			}
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_extreme_penalty
		}
	}
}