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

1201 普鲁士法律体系

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

触发条件

  • 角色 brapru_cocceji_script 存在且存活,并且其所有者是当前国家(ROOT)。

关键效果

  • 选项 A(历史选项)
    • 稳定性小幅下降(add_stability = stability_mild_penalty)。
    • 如果存在一个随机的非重大改革(target_reform),则将其移除(remove_reform)。
    • 添加政府改革:pru_unified_legal_system(普鲁士统一法律体系)。
  • 选项 B
    • 获得小幅威望加成(add_prestige = prestige_mild_bonus)。

背景介绍: 该事件模拟了普鲁士引入统一法律体系的历史进程。在18世纪,普鲁士王国致力于建立一个现代化、标准化的法律框架,以取代各地零散、矛盾的封建法律。这一改革旨在加强中央集权、提高行政效率,并为经济发展提供稳定的法律环境。事件中的关键人物 brapru_cocceji_script 可能代表了推动这一改革的法学家或政治家,如萨穆埃尔·冯·科克采伊(Samuel von Cocceji)等人物,他们在普鲁士法律体系现代化中扮演了核心角色。

完整事件代码

flavor_brapru.1201 = { #The Prussian Legal System
	hide_portraits = yes
	type = country_event
	title = flavor_brapru.1201.title
	desc = flavor_brapru.1201.desc
	image = "gfx/interface/illustrations/institutions/legalism.dds"

	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = interior
	}

	trigger = {
		character:brapru_cocceji_script = {
			owner = ROOT
			is_alive = yes
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:brapru_cocceji_script = { save_scope_as = target_character }
		set_variable = { name = pru_unified_legal_system value = 1 }
		random_current_reforms = {
			limit = {
				is_major_reform = no
			}
			save_scope_as = target_reform
		}
	}

	option = {
		name = flavor_brapru.1201.a
		historical_option = yes
		add_stability = stability_mild_penalty
		if = {
			limit = {
				exists = scope:target_reform
			}
			remove_reform = scope:target_reform
		}
		add_reform = government_reform:pru_unified_legal_system
	}
	option = {
		name = flavor_brapru.1201.b
		add_prestige = prestige_mild_bonus
	}
}