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_brapru.27 普鲁士对西里西亚的殖民

时间范围:1600.1.1 - 1760.1.1,每月 2% 概率触发

触发条件

  • 国家是新教国家。
  • 社会价值观中,spiritualist_vs_humanist(灵性主义 vs 人文主义)的数值大于等于 75。
  • 国家拥有 silesia_area(西里西亚地区)中至少 90% 的省份。
  • 在欧洲大陆上,存在至少一个不属于 silesia_area 的地区,且该地区内至少有一个省份的宗教与本国国教相同。

关键效果

  • 选项 A (历史选项)
    • 花费 12 个月收入的金币。
    • 从欧洲(西里西亚地区除外)所有与本国国教相同的省份中,按人口排序,选取最多(总此类省份数除以4,向上取整,至少为1)个省份。
    • 将上述每个省份中 10% 的人口,在 12 个月内迁移至西里西亚地区的一个随机省份。
    • 为西里西亚地区中所有本国拥有的省份,添加持续 25 年的修正 PRU_settlers_in_silesia(模式为叠加并延长)。
  • 选项 B
    • 西里西亚地区中所有本国拥有的省份,繁荣度受到严重惩罚。
    • 国家威望受到轻微惩罚。

背景介绍: 该事件模拟了历史上普鲁士王国在获得西里西亚地区后,为巩固统治、发展经济而进行的系统性殖民活动。普鲁士政府鼓励其国内及控制区内(尤其是新教地区)的人口向西里西亚迁移,以改变当地的人口结构,加强普鲁士的文化与宗教影响,并促进该地区的开发与整合。这一政策是近代早期欧洲列强内部领土治理与人口工程的典型体现。

完整事件代码

flavor_brapru.27 = { #Prussian Colonization of Silesia
	#DEVASTATION?
	hide_portraits = yes
	type = country_event
	title = flavor_brapru.27.title
	desc = flavor_brapru.27.desc
	historical_info = flavor_brapru.27.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = BRA
		tag = PRU
		from = 1600.1.1 #1740 in our timeline
		to = 1760.1.1
		monthly_chance = 2
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	trigger = {
		is_protestant = yes
		societal_value:spiritualist_vs_humanist >= 75
		area:silesia_area = {
			any_location_in_area = {
				owner ?= ROOT
				percent >= 0.9
			}
		}
		continent:europe = {
			any_sub_continent_in_continent = {
				any_region_in_continent = {
					any_area_in_region = {
						NOT = { this = area:silesia_area }
						any_province_definition_in_area = {
							any_province_in_province_definition = {
								religion_percentage = {
									religion = ROOT.religion
									value > 0
								}
							}
						}
					}
				}
			}
		}
	}

	immediate = { 
		set_local_variable = {
			name = amount_of_provinces
			value = 0
		}
		continent:europe = {
			every_sub_continent_in_continent = {
				every_region_in_continent = {
					every_area_in_region = {
						limit = {
							NOT = { this = area:silesia_area }
						}
						every_province_definition_in_area = {
							every_province_in_province_definition = {
								limit = {
									religion_percentage = {
										religion = ROOT.religion
										value > 0
									}
								}
								add_to_list = protestant_provinces_list
								change_local_variable = {
									name = amount_of_provinces
									add = 1
								}
							}
						}
					}
				}
			}
		}
	}

	option = {
		name = flavor_brapru.27.a
		historical_option = yes

		change_gold_effect = { scale = -12 }

		ordered_in_list = {
			list = protestant_provinces_list
			order_by = population

			max = {
				value = local_var:amount_of_provinces
				divide = 4
				ceiling = yes
				min = 1
			}
			save_scope_as = currently_scoped_target
			area:silesia_area = {
				random_province_definition_in_area = {
					limit = {
						NOT = { this = scope:currently_scoped_target.province_definition }
					}
					save_scope_as = random_target
				}
			}
			add_migration = {
				owner = this.owner
				from = this.province_definition
				to = scope:random_target
				religion = ROOT.religion
				amount = 0.1
				months = 12
			}
		}

		area:silesia_area = {
			every_location_in_area = {
				limit = {
					owner = ROOT
				}
				add_location_modifier = {
					modifier = PRU_settlers_in_silesia
					years = 25
					mode = add_and_extend
				}
			}
		}
	}

	option = {
		name = flavor_brapru.27.b

		custom_tooltip = {
			text = BRA_move_away_from_prosperity_silesia_tt
			area:silesia_area = {
				every_location_in_area = {
					limit = {
						owner = ROOT
					}
					change_prosperity = prosperity_severe_penalty
				}
			}
		}
		add_prestige = prestige_mild_penalty
	}
}