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_boh.36 布拉格四条款

时间范围
无明确 fromto 日期,事件触发概率未指定(monthly_chance 未定义)。

触发条件
事件代码中未定义 trigger 字段,具体触发条件需参考游戏内其他机制或事件链。

关键效果

  • 选项 A(历史选项)

    • 启用“布拉格四条款改革”相关效果(通过 custom_tooltip 提示)。
    • 设置变量 accepted_four_articles_variable,标记已接受四条款。
  • 选项 B

    • 添加国家修正 bohemian_aggression_modifier,持续 15 年(效果可叠加延长)。
    • 触发“波希米亚广泛谴责”效果(通过 custom_tooltip 提示)。
    • 隐藏效果:所有天主教国家(除波希米亚外)对波希米亚添加观点修正 opinion_hussite_aggression_modifier
    • 国家稳定度大幅下降(stability_extreme_penalty)。

背景介绍
该事件反映了 15 世纪波希米亚胡斯派运动中的关键历史节点——“布拉格四条款”。这些条款由胡斯派提出,主张宗教改革,包括平信徒领受圣杯、自由传教、限制神职人员世俗权力等要求。事件展现了波希米亚在宗教冲突中面临的选择:接受改革条款以巩固内部统一,或采取激进姿态引发外部天主教世界的谴责。

完整事件代码

flavor_boh.36 = { #The Four Articles of [target_location.GetNameWithNoTooltip]
	type = country_event
	title = flavor_boh.36.title
	desc = flavor_boh.36.desc

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_boh.36.a
		historical_option = yes

		custom_tooltip = enable_4_articles_prague_reform
		set_variable = accepted_four_articles_variable
	}

	option = {
		name = flavor_boh.36.b

		add_country_modifier = {
			modifier = bohemian_aggression_modifier
			years = 15
			mode = add_and_extend
		}

		custom_tooltip = boh_widespread_condemnation_tt
		hidden_effect = {
			religion:catholic = {
				every_country_in_religion = {
					limit = {
						NOT = { tag = BOH }
					}
					add_opinion = {
						target = c:BOH
						modifier = opinion_hussite_aggression_modifier
					}
				}
			}
		}
		add_stability = stability_extreme_penalty
	}

	historical_info = flavor_boh.36.historical_info
}