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.88 普里莫日·特鲁巴尔的宗教使命

时间范围:1550.1.1 - 1580.1.1(每月 1% 概率)

触发条件

  • 国家宗教为天主教。
  • 路德宗宗教已启用。
  • 拥有斯洛文尼亚地区至少10个省份。

关键效果

  • 选项 A (历史选项)
    • 增加教士阶层满意度(轻微增益)。
    • 在斯洛文尼亚地区,所有属于本国且文化为斯洛文尼亚的人口,有10%的人口分裂并改信路德宗。
    • (隐藏效果)静默杀死事件创建的人物。
  • 选项 B
    • 减少教士阶层满意度(严重惩罚)。
    • 将事件创建的人物(普里莫日·特鲁巴尔)移动至本国。
    • 在斯洛文尼亚地区,所有属于本国且文化为斯洛文尼亚的人口,有30%的人口分裂并改信路德宗。

背景介绍: 普里莫日·特鲁巴尔是16世纪斯洛文尼亚的宗教改革家,被认为是斯洛文尼亚文学之父。他翻译并出版了第一部斯洛文尼亚语书籍,积极传播路德宗思想。本事件模拟了哈布斯堡王朝(奥地利)在其统治的斯洛文尼亚地区面临宗教改革影响的历史时刻,君主需要决定如何应对这位路德宗传教士及其带来的宗教变革。

完整事件代码

flavor_hab.88 = { #Primož Trubar's Religious Mission
	type = country_event
	title = flavor_hab.88.title
	desc = flavor_hab.88.desc

	fire_only_once = yes

	historical_info = flavor_hab.88.historical_info

	dynamic_historical_event = {
		tag = HAB
		from = 1550.1.1
		to = 1580.1.1
		monthly_chance = 1
	}

	trigger = {
		religion = religion:catholic
		religion:lutheran = { is_religion_enabled = yes }
		any_owned_location = {
			area = area:slovenia_area
			count >= 10
		}
	}

	immediate = {
		create_character = {
			first_name = name_primoz
			last_name = Trubar
			birth_date = 1508.6.8
			birth_location = location:vienna
			estate = estate_type:clergy_estate
			adm = { 20 60 }
			dip = { 20 60 }
			mil = { 20 40 }
			culture = culture:slovene
			religion = religion:lutheran
			save_scope_as = target_character
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_hab.88.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		custom_tooltip = {
			text = flavor_hab.88.a.tt
			area:slovenia_area = {
				every_location_in_area = {
					every_pop = {
						limit = {
							culture = culture:slovene
							owner = root
						}
						split_pop = {
							fraction = 0.1
							religion = religion:lutheran
						}
					}
				}
			}
		}
		hidden_effect = {
   			kill_character_silently = scope:target_character
  		}
	}

	option = {
		name = flavor_hab.88.b
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_severe_penalty }
        scope:target_character = {
            move_country = root
        }
		custom_tooltip = {
			text = flavor_hab.88.b.tt
			area:slovenia_area = {
				every_location_in_area = {
					every_pop = {
						limit = {
							culture = culture:slovene
							owner = root
						}
						split_pop = {
							fraction = 0.3
							religion = religion:lutheran
						}
					}
				}
			}
		}
	}
}