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.123 红巾军起义的酝酿

时间范围:无特定 fromto 日期限制,事件通过其他条件触发,无 monthly_chance 概率。

触发条件

  • 事件类型为国家事件 (type = country_event)。
  • 触发条件 (trigger) 在提供的代码片段中未明确列出,需参考原事件文件的其他部分。

关键效果

  • 选项 A (flavor_chi.123.a):
    • 调整“前红巾军起义”相关修正值 (chi_adjust_pre_rtr_modifiers = { value = 0.25 })。
    • 为国家添加名为 chi_red_turban_propaganda 的修正,模式为替换 (mode = replace),持续至红巾军起义结束 (desc = until_the_end_of_red_turban_rebellion)。

事件背景: 此事件模拟了元朝末年红巾军起义前夕的社会动荡与准备阶段。事件中,韩山童(被创建为具有较高行政、外交和军事能力的贵族阶层人物)及其子韩林儿(能力相对普通)作为关键历史人物登场。他们出身于河北赞皇,信奉三教,属于贵族阶层。事件的直接效果是增加了社会的不满与反抗宣传,为后续大规模的红巾军起义(通过触发事件 flavor_chi.125)埋下伏笔,反映了元末统治危机下,地方豪强与宗教势力结合,酝酿反抗的历史进程。

完整事件代码

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

	illustration_tags = {
		10 = angry
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		dynasty:rtr_han_dynasty = { save_scope_as = target_dynasty }

		create_character = {
			first_name = name_shan.name_tong2
			dynasty = scope:target_dynasty
			birth_date = 1320 #Unknown but his son is born 1339
			birth_location = location:zanhuang
			culture = culture:jilu_culture
			religion = religion:sanjiao
			estate = estate_type:nobles_estate
			adm = { 60 70 }
			dip = { 60 70 }
			mil = { 60 70 }
			script = cso_shantong_han
			save_scope_as = target_character
		}

		create_character = {
			first_name = name_lin.name_er
			dynasty = scope:target_dynasty
			father = scope:target_character
			birth_date = 1339.2.23
			culture = culture:jilu_culture
			religion = religion:sanjiao
			estate = estate_type:nobles_estate
			adm = { 15 25 }
			dip = { 15 25 }
			mil = { 15 25 }
			script = cso_liner_han
		}
	}

	option = {
		name = flavor_chi.123.a
		chi_adjust_pre_rtr_modifiers = { value = 0.25 }
		add_country_modifier = {
			mode = replace
			modifier = chi_red_turban_propaganda
			years = -1
			desc = until_the_end_of_red_turban_rebellion
		}
	}

	after = {
		trigger_event_non_silently = {
			id = flavor_chi.125
			months = { 24 48 }
		}
	}
}