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.8] 海因里希·克雷默与《最高愿望》

时间范围

  • 事件窗口:1460.1.1 - 1505.1.1
  • 触发概率:每月 1% 概率

触发条件

  • 国家宗教为 天主教 (religion = religion:catholic)
  • 国家拥有 统治者 (has_ruler = yes)

关键效果

选项 A:flavor_pap.8.a (历史选项)

  • 添加 严重的宗教影响力惩罚 (add_religious_influence = religious_influence_severe_penalty)
  • 将创建的人物 海因里希·克雷默 移动至目标国家 (scope:target_character = { move_country = scope:target_country })
  • 为国际组织 天主教会 添加政策 承认巫术 (international_organization:catholic_church = { add_policy_to_international_organization = policy:witchcraft_aknowledged })

选项 B:flavor_pap.8.b

  • 添加 轻微的政府力量惩罚 (add_government_power = government_power_mild_penalty)
  • 添加 轻微的宗教影响力加成 (add_religious_influence = religious_influence_mild_bonus)
  • 将创建的人物 海因里希·克雷默 移动至目标国家 (scope:target_character = { move_country = scope:target_country })

背景介绍

该事件模拟了15世纪末天主教世界对巫术迫害态度的转变。海因里希·克雷默是一位多明我会修士,以其在1486年与教皇英诺森八世共同发布的教皇训令《最高愿望》而闻名。这份训令授权他在德意志地区调查和起诉巫术,为随后几个世纪欧洲大规模的猎巫运动提供了神学和法律依据。事件反映了教廷内部对超自然威胁的官方立场,以及这种立场对欧洲社会、宗教和政治产生的深远影响。

完整事件代码

flavor_pap.8 = { #Heinrich Kramer Summis desiderantes
	hide_portraits = yes
	type = country_event
	title = flavor_pap.8.title
	desc = flavor_pap.8.desc
	historical_info = flavor_pap.8.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = PAP
		from = 1460.1.1
		to = 1505.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}

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

		create_character = { #https://en.wikipedia.org/wiki/Heinrich_Kramer
				first_name = name_henry
				last_name = kramer
				culture = culture:rhine_alemannic
				religion = religion:catholic
				estate = estate_type:clergy_estate
				adm = {50 70}
				dip = {50 70}
				mil = {50 70}
				birth_location = location:colmar
				birth_date = 1430.1.1 #unknown
				add_trait = trait:unsuited_for_naval_command
				add_trait = trait:unsuited_for_army_command
				save_scope_as = target_character
				script = heinrich_kramer_script
				create_in_limbo = yes
			}
			location:innsbruck.owner = {
				if = {
					limit = {
						religion = religion:catholic
					}
					save_scope_as = target_country
				}
				else = {
					c:PAP = {
						save_scope_as = target_country
					}
				}
			}
			ruler = {
				save_scope_as = target_ruler
			}
			international_organization:catholic_church = {
				set_variable = witchcraft_discussed
			}
	}

	trigger = {
		religion = religion:catholic
		has_ruler = yes
	}

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

		add_religious_influence = religious_influence_severe_penalty
		scope:target_character = {
			move_country = scope:target_country
		}
		international_organization:catholic_church = {
			add_policy_to_international_organization = policy:witchcraft_aknowledged
		}
	}

	option = {
		name = flavor_pap.8.b

		add_government_power = government_power_mild_penalty
		add_religious_influence = religious_influence_mild_bonus
		scope:target_character = {
			move_country = scope:target_country
		}
	}
}