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_fra.415 路易法典/南北习惯法统一

时间范围:1670.1.1 - 1726.1.1(每月 10% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国家拥有变量 enable_sun_king_events

关键效果

  • 选项 A:是时候让整个法国遵循一部统一的法律了(历史选项)

    • 设置变量 enable_code_louis 为 1。
    • 添加政府改革 fra_code_louis
    • 根据统治者是否拥有特定特质,为其增加行政与外交点数:
      • 若统治者拥有 is_sun_king_prestige_rule 特质:增加 12 行政点,8 外交点。
      • 若统治者拥有 is_sun_king_stability_rule 特质:增加 8 行政点,12 外交点。
      • 若统治者不拥有上述任一特质:增加 6 行政点,6 外交点。
    • AI 选择权重:60%。
  • 选项 B:在法国北部采用路易法典,但允许南部保留自治

    • 增加中等程度的正统性。
    • 设置变量 enable_code_louis 为 1。
    • 添加国家修正 fra_limited_code_louis,持续 15 年。
    • 根据统治者是否拥有特定特质,为其增加行政与外交点数:
      • 若统治者拥有 is_sun_king_prestige_rule 特质:增加 10 行政点,5 外交点。
      • 若统治者拥有 is_sun_king_stability_rule 特质:增加 5 行政点,10 外交点。
      • 若统治者不拥有上述任一特质:增加 4 行政点,4 外交点。
    • AI 选择权重:30%。
  • 选项 C:维持现行的习惯法

    • 增加轻微程度的正统性。
    • 增加大量稳定度。
    • AI 选择权重:10%。

背景介绍: 该事件反映了路易十四统治时期,法国为加强中央集权、统一全国法律体系而进行的重大司法改革。在“太阳王”的统治下,法国南部的成文法(罗马法传统)与北部的习惯法长期并存,造成了司法实践的混乱与地方特权的割据。通过颁布《路易法典》(或称《民事诉讼法大法令》),旨在建立一个全国统一、高效且直接受王权控制的司法系统,这是绝对君主制巩固其权威、削弱封建领主和地方议会权力的关键步骤。事件中的选项代表了在统一法律、部分妥协或维持现状之间的不同政策路径。

完整事件代码

flavor_fra.415 = { # Grande Ordonnance de Procédure Civil # Code Louis/Unfication of the North and South customary laws
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.415.title
 	desc = flavor_fra.415.desc

	image = "gfx/interface/illustrations/government/throne_rooms/throne_room_north_german.dds"

	dynamic_historical_event = {
		tag = FRA
		from = 1670.1.1
		to = 1726.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		at_war = no
		has_variable = enable_sun_king_events
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

 	option = { # It is time all of France follow one, uniformed law
		name = flavor_fra.415.a
		historical_option = yes
		set_variable = { name = enable_code_louis value = 1 }
		add_reform = government_reform:fra_code_louis
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_prestige_rule
				}
			}
			ruler ?= {
				add_adm = 12
				add_dip = 8
			}
        }
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_stability_rule
				}
			}
			ruler ?= {
				add_adm = 8
				add_dip = 12
			}
        }
		if = {
			limit = {
				ruler ?= {
					NOR = {
						has_character_modifier = is_sun_king_stability_rule
						has_character_modifier = is_sun_king_prestige_rule
					}
				}
			}
			ruler ?= {
				add_adm = 6
				add_dip = 6
			}
        }
		ai_chance = {
			factor = 0.6
		}
 	}

 	option = { # Adopt the Code Louis for the Northern portion of France, but allow the south to retain autonomy
		name = flavor_fra.415.b
		add_legitimacy = legitimacy_mild_bonus
		set_variable = { name = enable_code_louis value = 1 }
		add_country_modifier = { modifier = fra_limited_code_louis years = 15 mode = add }
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_prestige_rule
				}
			}
			ruler ?= {
				add_adm = 10
				add_dip = 5
			}
        }
		if = {
			limit = {
				ruler ?= {
           	 		has_character_modifier = is_sun_king_stability_rule
				}
			}
			ruler ?= {
				add_adm = 5
				add_dip = 10
			}
        }
		if = {
			limit = {
				ruler ?= {
					NOR = {
						has_character_modifier = is_sun_king_stability_rule
						has_character_modifier = is_sun_king_prestige_rule
					}
				}
			}
			ruler ?= {
				add_adm = 4
				add_dip = 4
			}
        }
		ai_chance = {
			factor = 0.3
		}
 	}

 	option = { # Maintain current customary laws
		name = flavor_fra.415.c
		add_legitimacy = legitimacy_weak_bonus
		add_stability = stability_extreme_bonus
		ai_chance = {
			factor = 0.1
		}
 	}
}