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.112] 让-巴蒂斯特·勒布朗抵达俄罗斯

时间范围:1710年1月1日 - 1729年1月1日(每月 20% 概率)

触发条件

  • 事件仅能触发一次。
  • 国家标签为 MOSRUS
  • 首都位于 region:russian_region(俄罗斯地区)。
  • 省份 location:neva(涅瓦河地区)满足以下所有条件:
    • 由触发国所有和控制。
    • 不是首都。
    • 满足以下任一条件:
      • 地点等级为 town(城镇)或 city(城市)。
      • 拥有建筑 building_type:star_fort(星形堡垒)。

关键效果

选项 A:flavor_mos.112.a(历史选项)

  • 人物操作:将之前创建的法国建筑师 让-巴蒂斯特·勒布朗(Jean-Baptiste Le Blond)移居至触发国。
  • 人口迁移:在10个俄罗斯地区的随机地点中,若有 pop_type:peasants(农民人口),则触发为期12个月的迁移,每次迁移该地点10%的农民人口至 location:neva(涅瓦河地区)。
  • 农民阶层影响:若全局修正 modifier:global_peasants_migration_allowed 存在,则 estate_type:peasants_estate(农民阶层)满意度降低 0.10。
  • 涅瓦河地区发展
    • 获得 development_mild_bonus(温和发展加成)。
    • 该地区所有属于触发国的农民人口减少 25%,并获得 pop_satisfaction_ultimate_penalty(人口满意度终极惩罚)。
  • AI选择权重:因子为 1。

选项 B:flavor_mos.112.b

  • 人物操作:秘密处决人物 让-巴蒂斯特·勒布朗
  • 国家增益:获得 prestige_mild_bonus(温和威望加成)。
  • AI选择权重:因子为 0.5。

背景介绍: 此事件模拟了18世纪初,法国著名建筑师和城市规划师让-巴蒂斯特·勒布朗受邀前往俄罗斯的历史时刻。勒布朗以其在凡尔赛宫和巴黎的工作而闻名,他的到来正值沙皇彼得一世(彼得大帝)大力推动俄罗斯现代化和西化改革,特别是致力于建设新首都圣彼得堡(位于涅瓦河口)的时期。该事件反映了俄罗斯帝国引进欧洲专业人才以加速其城市发展、尤其是新首都建设的政策,同时也揭示了大规模国家工程背后可能引发的强制人口迁移和社会动荡。

完整事件代码

flavor_mos.112 = {
	type = country_event

	title = flavor_mos.112.title
	desc = flavor_mos.112.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1710.1.1
		to = 1729.1.1
		monthly_chance = 20
	}

	trigger = {

		capital = {
			region = region:russian_region
		}

		location:neva = {
			owner = root
			controller = root
			is_capital = no
			OR = {
				location_rank = location_rank:town
				location_rank = location_rank:city
				has_building = building_type:star_fort
			}
		}

	}

	immediate = {

		create_character = {
			first_name = name_john.name_baptiste
			last_name = Le_Blond
			estate = estate_type:burghers_estate
			artist = architect
			artist_skill = 1
			adm = 43
			dip = 22
			mil = 31
			birth_date = 1679.1.1
			birth_location = location:paris
			culture = culture:french
			save_scope_as = jean_baptiste_le_blond
			script = mos_jean_baptiste_le_blond
			create_in_limbo = yes
		}

		location:neva = {
			save_scope_as = target_location
		}

	}

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

		scope:jean_baptiste_le_blond = { move_country = root }
		custom_tooltip = {
			text = flavor_mos.112.a.custom
			while = {
				count = 10
				region:russian_region = {
					random_location_in_region = {
						limit = {
							num_pop_type:peasants > 0
						}
						add_migration = {
							owner = root
							from = this.province_definition
							to = location:neva.province_definition
							type = pop_type:peasants
							amount = 0.10
							months = 12
						}
					}
				}
			}
		}

		if = {
			limit = {
				modifier:global_peasants_migration_allowed = yes
			}
			add_estate_satisfaction = { type = estate_type:peasants_estate
				value = -0.10
			}
			custom_tooltip = flavor_mos.112.tt2
		}

		location:neva = {
			change_development = development_mild_bonus
			custom_tooltip = flavor_mos.112.tt3
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_size = {
					value = pop_size
					multiply = -0.25
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_penalty
			}
			custom_tooltip = flavor_mos.112.tt4
		}
		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.112.b

		hidden_effect = { kill_character_silently = scope:jean_baptiste_le_blond }

		add_prestige = prestige_mild_bonus

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.112.historical_info

}