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_lit.42 贵族皈依

时间范围:无特定时间范围(全局事件) 触发概率:无指定月度概率(满足条件即可能触发)

触发条件

  • 国家标签为 LIT(立陶宛)。
  • 国家拥有的任意省份中,存在 贵族阶层 人口,且其宗教信仰为 罗姆瓦教
  • 国家自身的国教 不是 罗姆瓦教。

关键效果

选项 A:flavor_lit.42.a

  • 效果
    1. 在每一个拥有罗姆瓦教贵族人口的省份,该省份内 5% 的罗姆瓦教贵族人口将皈依为国家国教。
    2. 贵族阶层满意度 轻微下降

选项 B:flavor_lit.42.b

  • 效果
    1. 贵族阶层满意度 轻微提升

背景介绍

在立陶宛大公国时期,尽管国家上层逐渐基督教化(天主教或东正教),但许多地方贵族和民众仍长期保持着传统的波罗的海异教——罗姆瓦教的信仰。这一事件反映了中央政权与坚持传统信仰的地方贵族势力之间的张力。统治者面临选择:是温和地推动贵族皈依国教以加强宗教统一,还是尊重传统以换取贵族阶层的支持。

完整事件代码

flavor_lit.42 = {
	type = country_event
	title = flavor_lit.42.title
	desc = flavor_lit.42.desc

	trigger = {
		tag = LIT
		any_owned_location = {
			any_pop = {
				pop_type = pop_type:nobles
				religion = religion:romuva
			}
		}
		religion != religion:romuva
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

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

	option = {
		name = flavor_lit.42.a

		custom_tooltip = {
			text = lit_convert_percent_of_nobles_to_religion_tt
			every_owned_location = {
				limit = {
					any_pop = {
						owner ?= root
						pop_type = pop_type:nobles
						religion = religion:romuva
					}
				}
				every_pop = {
					limit = {
						owner ?= root
						pop_type = pop_type:nobles
						religion = religion:romuva
					}
					split_pop = {
						fraction = 0.05
						religion = root.religion
					}
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_penalty
		}
	}

	option = {
		name = flavor_lit.42.b

		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}