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_dan.12 汉斯·陶森在丹麦开始布道

时间范围:1520.1.1 - 1561.1.1(每月 2% 概率) 触发条件

  • 路德宗(religion:lutheran)已启用(is_religion_enabled = yes)。
  • 脚本人物汉斯·陶森(character:script_hans_tausen)存活(is_alive = yes)。

关键效果

  • 选项 A (历史选项)
    • 在首都所在地区的所有省份中,针对每个天主教人口,有概率将其中的一部分人口分裂出来,并使其改信路德宗。分裂比例和概率如下:
      • 10% 概率:无变化。
      • 40% 概率:15% 的人口改信。
      • 20% 概率:20% 的人口改信。
      • 15% 概率:25% 的人口改信。
      • 10% 概率:30% 的人口改信。
      • 4% 概率:35% 的人口改信。
      • 1% 概率:40% 的人口改信。
  • 选项 B
    • 获得少量稳定度加成(add_stability = stability_weak_bonus)。
    • 将汉斯·陶森(scope:target_character)流放至一个随机邻国(scope:exile_destination)。

背景介绍: 该事件模拟了16世纪丹麦宗教改革的关键时刻。汉斯·陶森是丹麦宗教改革的核心人物,被誉为“丹麦的路德”。他于1520年代开始在丹麦传播路德宗思想,挑战天主教会的权威,其布道活动极大地加速了新教在丹麦的传播和接受,为后来丹麦国教改为路德宗奠定了基础。事件反映了统治者面对这位改革者时可能做出的选择:是允许其布道推动宗教变革,还是将其流放以维护现状。

完整事件代码

flavor_dan.12 = { #Hans Tausen start preaching in Denmark
	type = country_event
	title = flavor_dan.12.title
	desc = flavor_dan.12.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = DAN
		from = 1520.1.1
		to = 1561.1.1
		monthly_chance = 2
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		character:script_hans_tausen = {
			save_scope_as = target_character
		}
		random_neighbor_country = {
			save_scope_as = exile_destination
		}
	}

	trigger = {
		religion:lutheran = {
			is_religion_enabled = yes
		}
		character:script_hans_tausen ?= {
			is_alive = yes
		}
	}

	option = {
		name = flavor_dan.12.a
		historical_option = yes
		custom_tooltip = {
			text = flavor_dan.12.a.tt

			every_owned_location = {
				limit = {
					region = root.capital.region
				}
				every_pop = {
					limit = {
						religion = religion:catholic
					}
					random_list = {
						10 = {}
						40 = {
							split_pop = {
								fraction = 0.15
								religion = religion:lutheran
							}
						}
						20 = {
							split_pop = {
								fraction = 0.20
								religion = religion:lutheran
							}
						}
						15 = {
							split_pop = {
								fraction = 0.25
								religion = religion:lutheran
							}
						}
						10 = {
							split_pop = {
								fraction = 0.30
								religion = religion:lutheran
							}
						}
						4 = {
							split_pop = {
								fraction = 0.35
								religion = religion:lutheran
							}
						}
						1 = {
							split_pop = {
								fraction = 0.40
								religion = religion:lutheran
							}
						}
					}
				}
			}
		}
	}
	option = {
		name = flavor_dan.12.b

		add_stability = stability_weak_bonus
		scope:target_character = {
			move_country = scope:exile_destination
		}
	}
}