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_hab.1604] 波西米亚的耶稣会学院

时间范围:1560.1.1 - 1590.1.1,每月 1% 概率触发

触发条件

  • 路德宗 (religion:lutheran) 在游戏中已启用。
  • 国家拥有统治者 (has_ruler = yes)。
  • 国家宗教为天主教 (religion = religion:catholic)。
  • 国家内路德宗人口比例大于 0 ("religion_percentage_in_country(religion:lutheran)" > 0)。
  • 国家已启用允许耶稣会的政策 (has_policy = jesuits_allowed)。

关键效果

  • 选项 A (历史选项)
    • 设置变量 jesuit_colleges_sponsored
    • 在满足条件的两个随机地点 (scope:jesuit_target1scope:jesuit_target2) 各建造一座耶稣会学院 (building_type:jesuit_college)。
  • 选项 B
    • 减少少量正统性 (add_legitimacy = legitimacy_mild_penalty)。
    • 减少少量威望 (add_prestige = prestige_mild_penalty)。
    • 设置变量 jesuit_colleges_rejected
  • 选项 C
    • 启用禁止耶稣会的政策 (add_policy = policy:jesuits_not_allowed)。
    • 设置变量 jesuit_colleges_rejected

背景介绍: 在16世纪下半叶,随着宗教改革运动在欧洲蔓延,哈布斯堡王朝统治下的波西米亚地区也受到了路德宗的影响。作为天主教信仰的坚定捍卫者,哈布斯堡君主面临着如何应对新教传播、巩固天主教地位的挑战。耶稣会作为反宗教改革的重要力量,其建立的教育机构(耶稣会学院)被视为传播天主教教义、对抗新教思想的关键工具。此事件反映了哈布斯堡王朝在波西米亚地区通过文化教育手段进行宗教巩固的历史尝试。

完整事件代码

flavor_hab.1604 = { #Jesuit Colleges in Bohemia
	hide_portraits = yes
	type = country_event
	title = flavor_hab.1604.title
	desc = flavor_hab.1604.desc
	#historical_info = flavor_hab.1604.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1560.1.1
		to = 1590.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		random_owned_location = {
			limit = {
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
				NOT = {
					has_building = building_type:jesuit_college
				}
				any_pop = {
					religion = religion:lutheran
				}
			}
			save_scope_as = jesuit_target1
		}
		random_owned_location = {
			limit = {
				NOT = { this = scope:jesuit_target1 }
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
				NOT = {
					has_building = building_type:jesuit_college
				}
				any_pop = {
					religion = religion:lutheran
				}
			}
			save_scope_as = jesuit_target2
		}
	}

	trigger = {
		religion:lutheran = {
			is_religion_enabled = yes
		}
		has_ruler = yes
		religion = religion:catholic
		"religion_percentage_in_country(religion:lutheran)" > 0
		has_policy = jesuits_allowed
	}

	option = {
		name = flavor_hab.1604.a
		historical_option = yes

		set_variable = jesuit_colleges_sponsored

		scope:jesuit_target1 = {
			construct_building = {
				building_type = building_type:jesuit_college
			}
		}
		scope:jesuit_target2 = {
			construct_building = {
				building_type = building_type:jesuit_college
			}
		}
	}

	option = {
		name = flavor_hab.1604.b

		add_legitimacy = legitimacy_mild_penalty
		add_prestige = prestige_mild_penalty
		set_variable = jesuit_colleges_rejected
	}

	option = {
		name = flavor_hab.1604.c

		add_policy = policy:jesuits_not_allowed
		set_variable = jesuit_colleges_rejected
	}
}