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.80 女真部落的征讨

时间范围

  • 触发窗口:1400.1.1 - 1440.1.1
  • 触发概率:每月 10% 概率

触发条件

  • 国家拥有至少一名具备“将领”特质类别的角色。
  • 以下任意一个地区存在有效的远征目标:
    • 辽东地区 (liaodong_area)
    • 松花江地区 (songhua_area)
    • 乌苏里地区 (ussuri_area)
    • 下阿穆尔地区 (lower_amur_area)

关键效果

选项 A (flavor_chi.80.a)

  • 社会价值调整:中央化 vs 去中心化 向“中央化”方向小幅移动。
  • 连锁事件
    • 对列表 list_of_jurchens 中每一个符合条件的女真目标,在1至3年内触发事件 flavor_chi.81
    • 在3至5年后触发事件 flavor_chi.82

选项 B (flavor_chi.80.b)

  • 社会价值调整
    • 若当前不处于“传统时代 (age_1_traditions)”或“文艺复兴时代 (age_2_renaissance)”,则 外向 vs 内向 向“内向”方向小幅移动。
    • 否则,好战 vs 和解 向“和解”方向小幅移动。

背景介绍

此事件模拟了明朝初期对东北边疆女真部落的经略与互动。在15世纪早期,明朝虽已建立,但东北地区的女真诸部仍保持着较强的独立性与游牧特性。明朝朝廷面临着选择:是主动派遣将领进行军事威慑与招抚以加强中央控制,还是采取更为保守的内向政策,避免过度介入边疆事务。这一决策不仅影响明朝对女真地区的实际影响力,也反映了其整体治国方略的倾向。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1400.1.1
		to = 1440.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		any_character = {
			has_trait_category = general
		}
		OR = {
			area:liaodong_area = { has_valid_expedition_target = yes }
			area:songhua_area = { has_valid_expedition_target = yes }
			area:ussuri_area = { has_valid_expedition_target = yes }
			area:lower_amur_area = { has_valid_expedition_target = yes }
		}
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		random_character = {
			limit = {
				has_trait_category = general
			}
			save_scope_as = target_character
		}
		save_scope_as = expedition_country
		area:liaodong_area = {
			every_location_in_area = {
				every_nomad_countries_in_location = {
					add_to_list = list_of_jurchens
				}
				owner ?= {
					add_to_list = list_of_jurchens
				}
			}
		}
		area:songhua_area = {
			every_location_in_area = {
				every_nomad_countries_in_location = {
					add_to_list = list_of_jurchens
				}
				owner ?= {
					add_to_list = list_of_jurchens
				}
			}
		}
		area:ussuri_area = {
			every_location_in_area = {
				every_nomad_countries_in_location = {
					add_to_list = list_of_jurchens
				}
				owner ?= {
					add_to_list = list_of_jurchens
				}
			}
		}
		area:lower_amur_area = {
			every_location_in_area = {
				every_nomad_countries_in_location = {
					add_to_list = list_of_jurchens
				}
				owner ?= {
					add_to_list = list_of_jurchens
				}
			}
		}
	}

	option = {
		name = flavor_chi.80.a

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_left
		}

		every_in_list = {
			list = list_of_jurchens
			limit = {
				is_a_valid_jurchen_target = yes
			}
			trigger_event_non_silently = {
				id = flavor_chi.81
				years = { 1 3 }
			}
		}

		trigger_event_non_silently = {
			id = flavor_chi.82
			years = { 3 5 }
		}
	}

	option = {
		name = flavor_chi.80.b

		if = {
			limit = {
				NOR = {
					current_age = age_1_traditions
					current_age = age_2_renaissance
				}
			}
			change_societal_value = {
				type = outward_vs_inward
				value = societal_value_minor_move_to_right
			}
		}
		else = {
			change_societal_value = {
				type = belligerent_vs_conciliatory
				value = societal_value_minor_move_to_right
			}
		}
	}
}