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_mos.43 鞑靼人口迁移

时间范围:1490.1.1 - 1540.1.1,每月 1% 概率触发

触发条件

  • 国家为 莫斯科 (MOS)俄罗斯 (RUS)
  • 草原地区 (steppes_region) 内,至少有一个省份满足以下任一文化占比超过50%:
    • 克里米亚鞑靼文化 (culture:crimean)
    • 喀山鞑靼文化 (culture:kazani)
    • 阿斯特拉罕鞑靼文化 (culture:astrakhani)
    • 米沙尔鞑靼文化 (culture:mishar)
    • 诺盖文化 (culture:nogai)
  • 国家处于 非战争状态 (at_war = no)。
  • 首都的定居点等级为 城镇 (location_rank:town)城市 (location_rank:city)

关键效果

  • 选项 A (历史选项)
    • 触发一个自定义提示。
    • 效果:对于草原地区内所有 不属于玩家满足上述鞑靼文化条件 的省份,将启动一个持续12个月的移民过程。移民从这些省份流向玩家的首都省份,移民文化为来源省份的主导文化,移民量为0.01。
    • 为国家文化添加 轻微负面影响的文化影响 (cultural_influence_mild_penalty)
  • 选项 B
    • 推动国家政策倾向 孤立主义 (nudge_towards_isolationism = yes)
    • 增加 轻微稳定度加成 (add_stability = stability_mild_bonus)

背景介绍: 该事件模拟了15世纪末至16世纪初,莫斯科公国/俄罗斯在巩固政权、摆脱“鞑靼桎梏”后,面对境内及周边草原地区(如喀山、阿斯特拉罕、克里米亚汗国)鞑靼人口的处理问题。历史上面临着如何整合这些具有不同文化和游牧传统的族群,是选择通过移民政策进行同化与内部迁移,还是采取更为保守的隔离政策,这对国家的稳定、文化构成和扩张方向产生了深远影响。

完整事件代码

flavor_mos.43 = {
	type = country_event
	fire_only_once = yes
	title = flavor_mos.43.title
	desc = flavor_mos.43.desc
	image = "gfx/interface/illustrations/international_organization_types/tatar_yoke.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1490.1.1
		to = 1540.1.1
		monthly_chance = 1
	}

	trigger = {

		region:steppes_region = {
			any_location_in_region = {
				province ?= {
					OR = {
						culture_percentage = {
							culture = culture:crimean
							value > 0.5
						}
						culture_percentage = {
							culture = culture:kazani
							value > 0.5
						}
						culture_percentage = {
							culture = culture:astrakhani
							value > 0.5
						}
						culture_percentage = {
							culture = culture:mishar
							value > 0.5
						}
						culture_percentage = {
							culture = culture:nogai
							value > 0.5
						}
					}
				}
			}
		}

		at_war = no

		capital = {
			OR = {
				location_rank = location_rank:town
				location_rank = location_rank:city
			}
		}

	}

	immediate = {

		capital = {
			save_scope_as = target_location
		}

		root = { save_scope_as = target_root_country }
	}

	option = {
		name = flavor_mos.43.a
		historical_option = yes

		custom_tooltip = {
			text = flavor_mos.43.a.custom
			region:steppes_region = {
				every_location_in_region = {
					limit = {
						NOT = {
							owner ?= root
						}
						province ?= {
							OR = {
								culture_percentage = {
									culture = culture:crimean
									value > 0.5
								}
								culture_percentage = {
									culture = culture:kazani
									value > 0.5
								}
								culture_percentage = {
									culture = culture:astrakhani
									value > 0.5
								}
								culture_percentage = {
									culture = culture:mishar
									value > 0.5
								}
								culture_percentage = {
									culture = culture:nogai
									value > 0.5
								}
							}
						}
					}
					scope:target_location.province_definition = {
						add_migration = {
							owner = prev
							from = prev.province_definition
							to = this
							culture = scope:location_dominant_culture
							amount = 0.01
							months = 12
						}
					}
					dominant_culture = {
						save_scope_as = location_dominant_culture
					}
				}
			}
		}

		culture = {
			add_cultural_influence = cultural_influence_mild_penalty
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.43.b

		nudge_towards_isolationism = yes

		add_stability = stability_mild_bonus

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.43.historical_info

}