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_swi.1101] 茨温利被指控为异端

时间范围:1516年1月1日 - 1526年1月1日(每月 6% 概率)

触发条件

  • 人物 swi_huldrych_zwingli 必须存活,并且其所有者(owner)为触发事件的国家。
  • 触发事件的国家国教为天主教(religion:catholic)。

关键效果

  • 选项 A (历史选项)

    • 人物 swi_huldrych_zwingli 的信仰将改为路德宗(religion:lutheran)。
    • 在全国所有天主教信仰的人口(pop)中,有 5% 的人口改信路德宗。
    • 15天后,将触发后续事件 flavor_swi.1102
  • 选项 B

    • 在全国所有天主教信仰的人口(pop)中,有 5% 的人口改信路德宗。
    • 农民阶层(estate_type:peasants_estate)的满意度将遭受严重惩罚(estate_satisfaction_severe_penalty)。
    • 人物 swi_huldrych_zwingli 将被流放至一个随机邻国,并且其信仰将改为路德宗。

背景介绍: 该事件模拟了16世纪初瑞士宗教改革家乌尔里希·茨温利(Huldrych Zwingli)因传播新教思想而被天主教会指控为异端的历史时刻。茨温利在苏黎世等地推动改革,挑战天主教会的权威,引发了瑞士邦联内部关于信仰和政治的深刻分歧。事件反映了当时宗教改革初期,新教思想在瑞士各州传播所引发的紧张局势与冲突。

完整事件代码

flavor_swi.1101 = { #Zwingli is accused as a heretic
	type = country_event
	title = flavor_swi.1101.title
	desc = flavor_swi.1101.desc
	historical_info = flavor_swi.1101.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = SWI
		tag = BCH
		tag = STG
		tag = ZUR
		tag = SYZ
		tag = GLR
		tag = URI
		tag = OBW
		tag = LCU
		tag = SIT
		tag = BRN
		tag = SLT
		tag = NEU
		tag = BAS
		tag = LSA
		tag = KYB
		tag = TRN
		tag = GNV
		tag = SCL
		tag = WER
		from = 1516.1.1
		to = 1526.1.1
		monthly_chance = 6
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

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

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

	trigger = {
		character:swi_huldrych_zwingli = {
			is_alive = yes
			owner = root
		}
		religion = religion:catholic
	}

	option = {
		name = flavor_swi.1101.a
		historical_option = yes

		scope:target_character = {
			change_character_religion = religion:lutheran
		}
		custom_tooltip = flavor_swi.conversion.tt
		hidden_effect = {
			every_owned_location = {
				every_pop = {
					limit = {
						owner = root
						religion = religion:catholic
					}
					split_pop = {
						fraction = 0.05
						religion = religion:lutheran
					}
				}
			}
		}
		root = {
			trigger_event_non_silently = {
				id = flavor_swi.1102
				days = 15
			}
		}
	}

	option = {
		name = flavor_swi.1101.b

		custom_tooltip = flavor_swi.conversion.tt
		hidden_effect = {
			every_owned_location = {
				every_pop = {
					limit = {
						religion = religion:catholic
					}
					split_pop = {
						fraction = 0.05
						religion = religion:lutheran
					}
				}
			}
		}
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_severe_penalty }
		scope:target_character = {
			move_country = scope:exile_destination
			change_character_religion = religion:lutheran
		}
	}
}