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_vol.1002 贵族的要求 - 统治者的宗教

时间范围:1338.1.1 - 1340.1.1,每月 20% 概率触发

触发条件

  • 当前统治者必须是角色 vol_boleslaw_jerzy_ii_piast
  • 角色 vol_boleslaw_jerzy_ii_piast 的宗教必须是 catholic(天主教)。
  • 满足以下任意一个条件:
    • 国家拥有变量 vol_heir_casimir
    • 国家拥有变量 vol_heir_liubartas
    • 国家拥有变量 vol_waiting_for_heir

关键效果

  • 选项 A (历史选项)

    • 名称:flavor_vol.1002.a
    • 效果:增加 nobles_estate(贵族阶层)的阶层满意度,增加量为 estate_satisfaction_mild_penalty(轻微惩罚值)。
  • 选项 B

    • 名称:flavor_vol.1002.b
    • 效果:
      1. target_ruler(即当前统治者)的宗教改为 orthodox(东正教)。
      2. 每一个宗教为 catholic(天主教)的邻国,将对我国添加 opinion_angry(愤怒)的负面外交态度修正。

背景介绍: 该事件模拟了沃林(VOL)或哈利奇(HAL)地区在1338年至1340年间,贵族阶层对统治者博莱斯瓦夫·耶日二世·皮亚斯特(Bolesław Jerzy II Piast)施加压力的历史情境。作为一位天主教统治者,他面临着来自国内贵族关于宗教选择或继承问题的政治要求。事件反映了当时该地区在波兰、立陶宛及东正教影响下的复杂政治与宗教博弈。

完整事件代码

flavor_vol.1002 = { #Demands of the Nobility - Religion of the Ruler
	type = country_event
	title = flavor_vol.1002.title
	desc = flavor_vol.1002.desc
	historical_info = flavor_vol.1002.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = VOL
		tag = HAL
		from = 1338.1.1
		to = 1340.1.1
		monthly_chance = 20
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

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

		ruler = {
			save_scope_as = target_ruler
		}
	}

	trigger = {
		ruler = character:vol_boleslaw_jerzy_ii_piast
		character:vol_boleslaw_jerzy_ii_piast = {
			religion = religion:catholic
		}
		OR = {
			has_variable = vol_heir_casimir
			has_variable = vol_heir_liubartas
			has_variable = vol_waiting_for_heir
		}
	}

	option = {
		name = flavor_vol.1002.a
		historical_option = yes

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

	option = {
		name = flavor_vol.1002.b

		scope:target_ruler = {
			change_character_religion = religion:orthodox
		}
		every_neighbor_country = {
			limit = {
				religion = religion:catholic
			}
			add_opinion = { target = root modifier = opinion_angry }
		}
	}
}