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_pol.38] 波兰贵族特权要求

时间范围:无具体起止日期(from/to未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 当前国家:
    • 拥有统治者(has_ruler = yes)。
    • 与波兰(tag = POL)处于联合统治中,且是其中的“高级伙伴”(即宗主国)。
    • 自身不是波兰(NOT = { tag = POL })。
    • 处于和平状态(at_war = no)。
  • 波兰(c:POL):
    • 处于和平状态(at_war = no)。
    • 贵族阶层(nobles_estate)仍有可授予的特权槽位(num_possible_estate_privileges:nobles_estate > 0)。
    • 未同时拥有以下两个特权:
      • estate_privilege:reduced_responsibilities_for_the_nobles(贵族责任减免)
      • estate_privilege:reduced_taxation_for_the_nobles(贵族税收减免)

关键效果

  • 选项 A(是,承诺授予他们特权)
    • 历史选项historical_option = yes
    • 对波兰(c:POL)的效果
      • 授予贵族阶层两个特权:
        • estate_privilege:reduced_responsibilities_for_the_nobles
        • estate_privilege:reduced_taxation_for_the_nobles
      • 社会价值观向“贵族政治”(aristocracy_vs_plutocracy)方向大幅移动。
      • 获得大量稳定度加成(stability_severe_bonus)。
      • 如果当前统治者(ruler)没有儿子(即所有孩子均为女性),则为其所有女儿添加一个名为 prefection_modifier 的永久性角色修正(效果为使她们在法律上被视为男性)。
      • 触发后续事件 flavor_pol.39
      • 与事件触发国(root)互相获得名为 pol_political_intervention_modifier 的意见修正。
    • 对事件触发国(root)的效果
      • 获得大量政府点数(government_power_extreme_bonus)。
  • 选项 B(最好不要)
    • 对事件触发国(root)的效果
      • 损失大量政府点数(government_power_ultimate_penalty)。

背景介绍: 此事件模拟了历史上波兰贵族(施拉赤塔)利用其政治影响力,在联合统治或王位继承等关键时期向君主(或外国宗主)施压,要求获得更多特权和豁免权的场景。作为巩固自身权力或换取支持的代价,君主往往需要向贵族阶层做出重大让步,例如减免其税收和军事义务,这进一步强化了波兰独特的贵族民主制(“黄金自由”)并削弱了中央王权。

完整事件代码

flavor_pol.38 = {
	type = country_event

	title = flavor_pol.38.title
	desc = flavor_pol.38.desc

	fire_only_once = yes
	trigger = {
		has_ruler = yes
		in_union_with = c:POL
		NOT = { tag = POL }
		any_international_organizations_member_of = {
			country_is_senior_partner = { country = root }
		}
		at_war = no
		c:POL = {
			NOR = {
				has_estate_privilege = estate_privilege:reduced_responsibilities_for_the_nobles
				has_estate_privilege = estate_privilege:reduced_taxation_for_the_nobles
			}
			at_war = no
			num_possible_estate_privileges:nobles_estate > 0
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= { save_scope_as = target_character }
		c:POL ?= {
			save_scope_as = target_country1
			capital = { save_scope_as = target_location }
		}
		save_scope_as = target_country2
	}

	option = {	#Yes, promise them privileges
		name = flavor_pol.38.a
		historical_option = yes
		c:POL = {
			set_variable = granted_privileges_to_secure_throne
			show_as_tooltip = {
				grant_estate_privilege = estate_privilege:reduced_responsibilities_for_the_nobles
				grant_estate_privilege = estate_privilege:reduced_taxation_for_the_nobles
			}
			change_societal_value = {
				type = aristocracy_vs_plutocracy
				value = societal_value_large_move_to_left
			}
			add_stability = stability_severe_bonus
			#Make the daughters of Lajos legally male
			if = {
				limit = {
					ruler ?= {
						not = {
							any_child = {
								is_female = no
							}
						}
					}
				}
				ruler ?= {
					every_child = {
						limit = { is_female = yes }
						add_character_modifier = {
							modifier = prefection_modifier
							years = -1
							mode = add_and_extend
						}
					}
				}
			}

			trigger_event_non_silently = flavor_pol.39
			add_opinion_mutual_effect = {
				modifier = pol_political_intervention_modifier
				target = root
			}
		}
		add_government_power = government_power_extreme_bonus
	}

	option = {	#Better not
		name = flavor_pol.38.b
		add_government_power = government_power_ultimate_penalty
	}
}