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_eng.98 约翰·威克里夫遗骸被亵渎

时间范围:1400.1.1 - 1450.1.1(每月 1% 概率)

触发条件

  • 国家为 ENG(英格兰)或 GBR(大不列颠)。
  • 国教 不是 罗拉德派 (religion:lollardy)。
  • 国教为天主教 (religion:catholic)。
  • 天主教对罗拉德派的宗教观点 (religious_view) 为 中立或更低 (value <= neutral)。
  • 教宗国 (c:PAP) 存在统治者 (has_ruler = yes)。
  • 人物 eng_john_wycliffe(约翰·威克里夫)已去世 (is_alive = no)。
  • 罗拉德派宗教已启用 (is_religion_enabled = yes)。

关键效果

  • 选项 A (历史选项) flavor_eng.98.a
    • 设置变量 desecrated_remains_of_wycliffe 为 1。
    • 获得 温和的宗教影响力加成 (add_religious_influence = religious_influence_mild_bonus)。
    • 条件效果:如果天主教对罗拉德派的宗教观点 高于敌对 (value > enemy),则将天主教与罗拉德派之间的宗教观点 相互设为敌对 (value = enemy)。
    • 显示自定义提示 flavor_eng.98.tt1
  • 选项 B flavor_eng.98.b
    • 获得 极端的宗教影响力惩罚 (add_religious_influence = religious_influence_extreme_penalty)。

背景介绍: 该事件模拟了宗教改革先驱约翰·威克里夫去世后,其遗骸在1415年康斯坦茨大公会议被定罪后遭掘出并焚毁的历史事件。这一行为象征着天主教会对异端思想的严厉镇压,也加剧了英格兰国内天主教与新兴罗拉德派(威克里夫派)之间的紧张关系,为后续的宗教冲突埋下伏笔。

完整事件代码

flavor_eng.98 = {
	type = country_event

	title = flavor_eng.98.title
	desc = flavor_eng.98.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1400.1.1
		to = 1450.1.1
		monthly_chance = 1
	}

	trigger = {

		NOT = { dominant_religion = religion:lollardy }

		religion = religion:catholic

		religion:catholic = {
			religious_view = {
				target = religion:lollardy
				value <= neutral
			}
		}
		c:PAP = {
			has_ruler = yes
		}

		character:eng_john_wycliffe ?= { is_alive = no }

		religion:lollardy = {
			is_religion_enabled = yes
		}

	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		character:eng_john_wycliffe ?= { save_scope_as = john_wycliffe }

		location:oxford = { save_scope_as = target_location }

	}

	option = {
		historical_option = yes
		name = flavor_eng.98.a

		set_variable = {
			name = desecrated_remains_of_wycliffe
			value = 1
		}

		add_religious_influence = religious_influence_mild_bonus

		if = {
			limit = {
				religion:catholic = {
					religious_view = {
						target = religion:lollardy
						value > enemy
					}
				}
			}
			religion:lollardy = {
				set_religious_view = {
					target = religion:catholic
					value = enemy
				}
			}
			religion:catholic = {
				set_religious_view = {
					target = religion:lollardy
					value = enemy
				}
			}
		}

		custom_tooltip = flavor_eng.98.tt1

	}

	option = {
		name = flavor_eng.98.b

		add_religious_influence = religious_influence_extreme_penalty

	}

	historical_info = flavor_eng.98.historical_info

}