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.48 伯恩哈德·冯·克莱斯登场

时间范围:1520.1.1 - 1539.1.1 (每月 1% 概率)

触发条件

  • 国家宗教为天主教 (religion = religion:catholic)
  • 至少有一个邻国的宗教为路德宗 (any_neighbor_country = { religion = religion:lutheran })

关键效果

  • 选项 A (历史选项)
    • 将创建的人物 伯恩哈德·冯·克莱斯 移动至本国。
    • 教士阶层满意度小幅提升 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus })。
    • 社会价值观向“灵性主义”方向移动 (change_societal_value = { type = spiritualist_vs_humanist value = societal_value_move_to_left })。
  • 选项 B
    • 静默移除创建的人物 伯恩哈德·冯·克莱斯 (kill_character_silently = scope:target_character)。
    • 教士阶层满意度小幅降低 (add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty })。
    • 社会价值观向“人文主义”方向移动 (change_societal_value = { type = spiritualist_vs_humanist value = societal_value_move_to_right })。

背景介绍: 此事件模拟了16世纪上半叶,在宗教改革浪潮冲击天主教世界的背景下,一位重要的神职人员——伯恩哈德·冯·克莱斯——可能为哈布斯堡君主国服务的历史可能性。他出生于1485年,是一位来自克莱斯(Cles)的南巴伐利亚文化背景的教士。当信奉天主教的奥地利(HAB)与信奉路德宗的新教邦国为邻时,这位具有潜力的教会人物的出现,为国家提供了一个在宗教动荡时期强化内部凝聚力或选择不同发展路径的契机。

完整事件代码

flavor_hab.48 = { #Bernhard von Cles
	type = country_event
	title = flavor_hab.48.title
	desc = flavor_hab.48.desc

	fire_only_once = yes

	historical_info = flavor_hab.48.historical_info

	dynamic_historical_event = {
		tag = HAB
		from = 1520.1.1
		to = 1539.1.1
		monthly_chance = 1
	}

	trigger = {
		religion = religion:catholic
		any_neighbor_country = {
			religion = religion:lutheran
		}
	}

	immediate = {
		create_character = {
			first_name = name_bernard
			last_name = von_Cles
			birth_date = 1485.3.11
			birth_location = location:cles
			estate = estate_type:clergy_estate
			adm = { 60 80 }
			dip = { 20 80 }
			mil = { 20 40 }
			culture = culture:southern_bavarian
			save_scope_as = target_character
			script = hab_von_cles
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_hab.48.a
		historical_option = yes
        scope:target_character = {
            move_country = root
		}
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		change_societal_value = { type = spiritualist_vs_humanist value = societal_value_move_to_left }
	}

	option = {
		name = flavor_hab.48.b
		hidden_effect = {
   			kill_character_silently = scope:target_character
  		}
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty }
		change_societal_value = { type = spiritualist_vs_humanist value = societal_value_move_to_right }
	}
}