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_pap.1701 约翰·特策尔在萨克森开始销售赎罪券

时间范围

  • 事件窗口:1485.1.1 - 1520.1.1
  • 触发概率:每月 1% 概率

触发条件

  • 国家拥有统治者。
  • 国家宗教为天主教,且天主教的改革欲望 ≥ 30%。
  • 天主教必须拥有以下至少一个宗教修正:
    • limited_indulgences_religion(有限赎罪券销售)
    • unlimited_sale_indulgences_religion(无限赎罪券销售)
  • 路德宗宗教尚未启用。

关键效果

选项 A (历史选项)

  • 获得相当于 target_country(维滕贝格地区所有者)12个月贸易与税收月收入的金币。

选项 B

  • 触发前提:国家拥有变量 indulgences_investigated
  • 增加 stability_ultimate_penalty 数值的稳定度。
  • 增加 government_power_extreme_bonus 数值的政府点数。
  • 为国际组织“天主教会”添加政策 policy:no_financial_indulgences(禁止金钱赎罪券)。
  • 为天主教宗教:
    • 移除宗教修正 limited_indulgences_religion
    • 移除宗教修正 unlimited_sale_indulgences_religion
    • 添加宗教修正 no_financial_indulgences_religion(禁止金钱赎罪券)。
  • 移除国家变量 indulgences_investigated
  • 在6个月后,静默触发事件 flavor_pap.1704

背景介绍

该事件模拟了16世纪初,多明我会修士约翰·特策尔在萨克森地区,特别是维滕贝格周边,积极销售赎罪券的历史场景。赎罪券的销售是天主教会为筹集资金(如修建圣彼得大教堂)而采取的措施,但其商业化的运作方式,尤其是特策尔激进的销售口号,引发了巨大争议,成为马丁·路德撰写《九十五条论纲》、发起宗教改革运动的直接导火索之一。事件反映了当时教会内部关于赎罪券神学与实践的激烈辩论,以及教廷财政需求与宗教改革压力之间的紧张关系。

完整事件代码

flavor_pap.1701 = { #Johann Tetzel starts selling in Saxony
	type = country_event
	fire_only_once = yes
	title = flavor_pap.1701.title
	desc = flavor_pap.1701.desc
	dynamic_historical_event = {
		tag = PAP
		from = 1485.1.1
		to = 1520.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

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

		location:wittenberg.owner = {
			create_character = { #https://en.wikipedia.org/wiki/Johann_Tetzel
				first_name = name_john
				last_name = tetzel
				culture = culture:saxon
				religion = religion:catholic
				estate = estate_type:clergy_estate
				adm = 66
				dip = 66
				mil = 66
				birth_location = location:pirna
				birth_date = 1465.1.1 # unknown also 1460
				add_trait = trait:unsuited_for_naval_command
				add_trait = trait:unsuited_for_army_command
				save_scope_as = target_character
				script = johann_tetzel_script
			}
			trigger_event_silently = flavor_pap.1702
			save_scope_as = target_country
		}
	}
	
	trigger = {
		has_ruler = yes
		religion:catholic = {
			reform_desire >= 0.30
			OR = {
				has_religion_modifier = limited_indulgences_religion
				has_religion_modifier = unlimited_sale_indulgences_religion
			}
		}
		religion:lutheran = { is_religion_enabled = no }
	}

	option = {
		name = flavor_pap.1701.a
		historical_option = yes

		add_gold = { value = scope:target_country.monthly_income_trade_and_tax multiply = 12 }
	}

	option = {
		name = flavor_pap.1701.b

		trigger = {
			has_variable = indulgences_investigated
		}

		add_stability = stability_ultimate_penalty
		add_government_power = government_power_extreme_bonus
		international_organization:catholic_church = {
			add_policy_to_international_organization = policy:no_financial_indulgences
		}
		religion:catholic = {
			remove_religion_modifier = limited_indulgences_religion
			remove_religion_modifier = unlimited_sale_indulgences_religion
			add_religion_modifier = no_financial_indulgences_religion
		}
		remove_variable = indulgences_investigated
		trigger_event_silently = {
			id = flavor_pap.1704
			months = 6
		}
	}
}