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.31 罗姆瓦异教复兴

时间范围:1500.1.1 - 1600.1.1,每月 3% 概率触发

触发条件

  • 国家为 立陶宛 (LIT)
  • 游戏内 宗教改革 局势处于活跃状态。
  • 国家主流宗教属于 基督教组
  • 国内信仰 罗姆瓦异教 的人口比例超过 5%

关键效果

  • 选项 A (flavor_lit.31.a)

    • 全国范围内,所有由本国拥有、属于主流文化且信仰基督教组的人口,将有 10% 的人口分裂出来并改信 罗姆瓦异教
  • 选项 B (flavor_lit.31.b)

    • 全国范围内,所有由本国拥有、属于主流文化且信仰基督教组的人口,将有 5% 的人口分裂出来并改信 罗姆瓦异教
    • 历史选项:是 (historical_option = yes)。
    • 增加 农民阶层 的满意度。具体数值基于国家 精神主义 vs 人文主义 的社会价值观进行计算,最终修正值在 -0.25 到 0.25 之间。

背景介绍: 在16世纪宗教改革席卷欧洲的动荡时期,立陶宛大公国虽然已皈依基督教,但其境内仍保留着相当数量的罗姆瓦异教(古波罗的海多神教)信仰者。当新教与天主教激烈对抗、宗教权威受到普遍质疑时,这些古老的异教传统在部分民众,尤其是农民阶层中找到了复兴的土壤。这一事件反映了在宗教变革的大背景下,边缘化信仰群体如何利用主流宗教分裂的契机,试图重新争取生存空间和社会认同。

完整事件代码

flavor_lit.31 = {
	hide_portraits = yes
	type = country_event
	title = flavor_lit.31.title
	desc = flavor_lit.31.desc

	dynamic_historical_event = {
		tag = LIT
		from = 1500.1.1
		to = 1600.1.1
		monthly_chance = 3
	}

	fire_only_once = yes

	trigger = {
		is_situation_active = situation:reformation
		religion.group = religion_group:christian
		"religion_percentage_in_country(religion:romuva)" > 0.05
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		set_variable = lit_ressurection_of_romuva_paganism_flag

		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_lit.31.a

		custom_tooltip = {
			text = lit_10_percent_of_primary_culture_pops_convert_to_romuva_tt
			every_owned_location = {
				every_pop = {
					limit = {
						owner ?= root
						culture = root.culture
						religion.group = root.religion.group
					}
					split_pop = {
						fraction = 0.1
						religion = religion:romuva
					}
				}
			}
		}
	}

	option = {
		name = flavor_lit.31.b

		custom_tooltip = {
			text = lit_5_percent_of_primary_culture_pops_convert_to_romuva_tt
			every_owned_location = {
				every_pop = {
					limit = {
						owner ?= root
						culture = root.culture
						religion.group = root.religion.group
					}
					split_pop = {
						fraction = 0.05
						religion = religion:romuva
					}
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:peasants_estate
			value = {
				value = estate_satisfaction_severe_penalty
				subtract = {
					value = societal_value:spiritualist_vs_humanist
					divide = 25
					multiply = 0.1
				}
				max = 0.25
				min = -0.25
			}
		}
	}
}