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_fra.13 加尔文主义者被驱逐出法国

时间范围:1650.1.1 - 1700.1.1(每月 2% 概率)

触发条件

  • 国家宗教为天主教。
  • 拥有变量 nantes_revoked_by_sun_king
  • 拥有国家修正 fra_quartering_of_the_dragoons
  • 国内加尔文主义者人口比例不低于 10%。
  • 世界上至少存在一个宗教为加尔文主义的国家。
  • 国家拥有统治者。

关键效果

  • 选项 A(历史选项)
    • 获得 stability_severe_bonus 的稳定度加成。
    • 获得 prestige_severe_bonus 的威望加成。
    • 在欧洲大陆上,所有拥有加尔文主义人口的省份中,30% 的加尔文主义者将在 24 个月内迁移至一个欧洲的加尔文主义国家首都(该国为人口最多的加尔文主义国家)。
  • 选项 B
    • 获得 stability_mild_penalty 的稳定度惩罚。
    • 获得 prestige_mild_penalty 的威望惩罚。
    • 教士阶层获得 estate_satisfaction_mild_penalty 的满意度惩罚。
    • 在欧洲大陆上,所有拥有加尔文主义人口的省份中,12% 的加尔文主义者将在 24 个月内迁移至一个欧洲的加尔文主义国家首都(该国为人口最多的加尔文主义国家)。

背景介绍: 该事件模拟了路易十四统治后期,法国撤销《南特敕令》并系统性驱逐国内加尔文主义者(胡格诺派)的历史进程。在“龙骑兵驻扎”政策的压力下,大量胡格诺派信徒被迫改宗或流亡海外,对法国的人口结构、经济以及国际关系产生了深远影响。

完整事件代码

flavor_fra.13 = { # Calvinists expelled from France
	hide_portraits = yes
	type = country_event
	title = flavor_fra.13.title
	desc = flavor_fra.13.desc
	historical_info = flavor_fra.13.historical_info


	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1650.1.1
		to = 1700.1.1
		monthly_chance = 2
	}

	trigger = {
		religion = religion:catholic
		has_variable = nantes_revoked_by_sun_king
		has_country_modifier = fra_quartering_of_the_dragoons
		"religion_percentage_in_country(religion:calvinist)" >= 0.10
		any_country = {
			religion = religion:calvinist
		}
		has_ruler = yes
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		ordered_country = {
			limit = {
				capital.continent = continent:europe
				religion = religion:calvinist
			}
			order_by = total_population
			max = 1
			save_scope_as = escape_target
		}
	}

	option = {
		name = flavor_fra.13.a
		add_stability = stability_severe_bonus
		historical_option = yes
		add_prestige = prestige_severe_bonus
		every_province = {
			limit = {
				continent = continent:europe
				religion_percentage = {
					religion = religion:calvinist
					value > 0
				}
			}
			add_migration = {
				owner = root
				from = this.province_definition
				to = scope:escape_target.capital.province_definition
				religion = religion:calvinist
				amount = 0.3
				months = 24
			}
		}

	}
	option = { #
		name = flavor_fra.13.b
		add_stability = stability_mild_penalty
		add_prestige = prestige_mild_penalty
		add_estate_satisfaction = { type = estate_type:clergy_estate	value = estate_satisfaction_mild_penalty }
		every_province = {
			limit = {
				continent = continent:europe
				religion_percentage = {
					religion = religion:calvinist
					value > 0
				}
			}
			add_migration = {
				owner = root
				from = this.province_definition
				to = scope:escape_target.capital.province_definition
				religion = religion:calvinist
				amount = 0.12
				months = 24
			}
		}
	}
}