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

1601 约翰·普福泽成为奥地利宫廷布道师

时间范围:1540.1.1 - 1569.1.1,每月 1% 概率

触发条件

  • 路德宗 (religion:lutheran) 已启用 (is_religion_enabled = yes)
  • 国家拥有统治者 (has_ruler = yes)
  • 国家国教为天主教 (religion = religion:catholic)
  • 国家内路德宗人口比例大于 0 ("religion_percentage_in_country(religion:lutheran)" > 0)
  • 国家已采用“奥芬法令”政策 (has_policy = mandate_of_ofen)

关键效果

  • 选项 A (历史选项)
    • 采用“无审查制度”政策 (add_policy = policy:no_censorship)
    • 将创建的人物约翰·普福泽移动至本国 (scope:target_character = { move_country = root })
  • 选项 B
    • 自定义提示:flavor_hab.conversion.tt
    • 隐藏效果:在全国所有天主教人口中,有 5% 的人口皈依路德宗 (every_owned_location -> every_pop -> split_pop)
    • 将创建的人物约翰·普福泽驱逐出境 (scope:target_character = { banish_character = yes })

背景介绍: 此事件模拟了16世纪中叶,在宗教改革浪潮席卷欧洲的背景下,奥地利哈布斯堡王朝宫廷内部面临的宗教抉择。约翰·普福泽是一位路德宗神学家,他的出现代表了新教思想对传统天主教统治核心的渗透。事件反映了当时统治者如何在维持天主教正统、应对国内新教势力增长以及可能的宗教宽容政策之间进行权衡。

完整事件代码

flavor_hab.1601 = { #Johann Pfauser becomes Court Preacher in Austria
	type = country_event
	title = flavor_hab.1601.title
	desc = flavor_hab.1601.desc
	historical_info = flavor_hab.1601.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1540.1.1
		to = 1569.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		create_character = {
			first_name = name_john
			last_name = pfauser
			birth_date = 1520.1.1 #unknown
			birth_location = location:konstanz
			religion = religion:lutheran
			adm = 72
			dip = 75
			mil = 43
			estate = estate_type:clergy_estate
			save_scope_as = target_character
			script = johann_pfauser_script
			create_in_limbo = yes
		}
		ruler = {
			save_scope_as = target_ruler
		}
	}

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

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

		add_policy = policy:no_censorship
		scope:target_character = { move_country = root }
	}

	option = {
		name = flavor_hab.1601.b

		custom_tooltip = flavor_hab.conversion.tt
		hidden_effect = {
			every_owned_location = {
				every_pop = {
					limit = {
						religion = religion:catholic
					}
					split_pop = {
						fraction = 0.05
						religion = religion:lutheran
					}
				}
			}
		}

		scope:target_character = { banish_character = yes }
	}
}