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.23] 东正教贵族的地位

时间范围:1400.1.1 - 1500.1.1(每月 3% 概率)

触发条件

  • 国家标签为 LIT
  • 国家宗教属于基督教宗教组 (religion.group = religion_group:christian)。
  • 国家宗教不是东正教 (religion != religion:orthodox)。
  • 国内东正教信仰人口比例超过 15% ("religion_percentage_in_country(religion:orthodox)" > 0.15)。

关键效果

  • 选项 A (历史选项): flavor_lit.23.a

    • 解锁并授予特权 lit_equal_status_of_orthodox_nobility
    • 教士阶层满意度获得 estate_satisfaction_extreme_penalty(极端惩罚)。
    • 贵族阶层满意度获得 estate_satisfaction_extreme_bonus(极端奖励)。
  • 选项 B: flavor_lit.23.b

    • 教士阶层满意度获得 estate_satisfaction_extreme_bonus(极端奖励)。
    • 贵族阶层满意度获得 estate_satisfaction_extreme_penalty(极端惩罚)。
    • 如果有效,则施加 religious_influence_extreme_penalty(宗教影响力极端惩罚)。

背景介绍: 在14至15世纪的立陶宛大公国,随着领土扩张,大量东正教人口(主要来自罗斯地区)被纳入统治。大公国上层虽已皈依天主教,但东正教贵族在地方行政和军队中扮演着重要角色。此事件反映了国家如何处理境内东正教精英的法律与社会地位问题:是授予他们与天主教贵族同等的权利以换取忠诚,还是坚持推广“真正信仰”以强化宗教统一。

完整事件代码

flavor_lit.23 = {
	type = country_event
	title = flavor_lit.23.title
	desc = flavor_lit.23.desc
	historical_info = flavor_lit.23.historical_info

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

	fire_only_once = yes

	trigger = {
		religion.group = religion_group:christian
		religion != religion:orthodox
		"religion_percentage_in_country(religion:orthodox)" > 0.15
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = { #Grant them rights and unlock privilege
		name = flavor_lit.23.a

		historical_option = yes

		unlock_estate_privilege_effect = {
			type = lit_equal_status_of_orthodox_nobility
		}

		grant_estate_privilege = estate_privilege:lit_equal_status_of_orthodox_nobility

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_penalty
		}

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

	option = { #Promote the true faith instead
		name = flavor_lit.23.b

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_bonus
		}

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

		add_religious_influence_if_valid = { VALUE = religious_influence_extreme_penalty }
	}
}