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_pol.14 耶稣会与波兰宗教统一

时间范围:1560.1.1 - 1575.1.1(每月 2% 概率)

触发条件

  • 国家为波兰(POL)或波兰立陶宛联邦(PLC)。
  • 已解锁全球法律 society_of_jesus(耶稣会)。
  • 拥有超过1位枢机主教。
  • 拥有奥尔什丁(olsztyn)地区。
  • 主流文化属于波兰文化组(culture_group:polish_group)。
  • 宗教统一度低于0.85。

关键效果

  • 选项 A (flavor_pol.14.a) - 历史选项
    • 采纳政策 policy:jesuits_allowed(允许耶稣会)。
    • 在奥尔什丁地区:
      • 若未建有耶稣会学院(jesuit_college),则以30%的成本建造一座。
      • 若该省份存在非国教人口,则选取规模最大的非国教人口(优先选择异端基督徒),并将其中的10%至30%人口皈依为国教。
    • 社会价值观 spiritualist_vs_humanist(灵性主义 vs 人文主义)向灵性主义方向移动。
  • 选项 B (flavor_pol.14.b)
    • 采纳政策 policy:jesuits_not_allowed(禁止耶稣会)。
    • 社会价值观 spiritualist_vs_humanist 向人文主义方向大幅移动。
    • 教士阶层(clergy_estate)满意度遭受极端惩罚。
    • 若国内存在耶稣会学院,则在人口最多的4个拥有该建筑的地区将其摧毁。

背景介绍: 该事件反映了16世纪中后期波兰立陶宛联邦面临的宗教统一挑战。作为欧洲宗教宽容的典范,联邦内部存在天主教、东正教及新教等多种信仰。耶稣会作为天主教反宗教改革的重要力量,试图在波兰加强天主教的影响力并促进宗教统一。事件模拟了统治者是否允许耶稣会进入并开展活动,这一决策将直接影响国内的宗教格局、社会价值观以及教士阶层的关系。

完整事件代码

flavor_pol.14 = {
	type = country_event
	title = flavor_pol.14.title
	desc = flavor_pol.14.desc
	historical_info = flavor_pol.14.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = POL
		tag = PLC
		from = 1560.1.1
		to = 1575.1.1
		monthly_chance = 2
	}
	trigger = {
		has_unlocked_global_law_trigger = { type = society_of_jesus }
		num_cardinals > 1
		owns = location:olsztyn
		culture = { has_culture_group = culture_group:polish_group }
		religious_unity < 0.85
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
	}

	option = {
		name = flavor_pol.14.a

		historical_option = yes

		add_policy = policy:jesuits_allowed

		location:olsztyn = {
			if = {
				limit = {
					NOT = { has_building = building_type:jesuit_college }
				}
				construct_building = {
					building_type = building_type:jesuit_college
					cost_multiplier = 0.3
					cost_multiplier_reason = "academic_cheap_sponsorship"
				}
			}
			if = {
				limit = {
					province = {
						any_location_in_province = {
							any_pop = {
								NOT = { religion = root.religion }
							}
						}
					}
				}
				province = {
					every_location_in_province = {
						ordered_pop = {
							limit = {
								NOT = { religion = root.religion }
							}
							order_by = {
								value = pop_size
								if = {	#More likely to pick Heretic Christians
									limit = { religion.group = religion_group:christian }
									multiply = 10
								}
							}
							max = 1
							split_pop = {
								fraction = { 0.1 0.3 }
								religion = root.religion
							}
						}
					}
				}
			}
		}

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_pol.14.b

		add_policy = policy:jesuits_not_allowed

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_large_move_to_right
		}

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_penalty
		}

		if = {
			limit = {
				total_effective_building_levels:jesuit_college > 0
			}
			ordered_owned_location = {
				order_by = population
				limit = {
					any_buildings_in_location = { building_type = building_type:jesuit_college }
				}
				max = 4
				check_range_bounds = no
				destroy_building = "building(building_type:jesuit_college|root)"
			}
		}
	}
}