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.2104 那不勒斯的管理

时间范围:1488.1.1 - 1510.1.1,每月 20% 概率触发

触发条件

  • 法国(FRA)拥有变量 naples_under_france
  • 法国拥有君主。
  • 法国未处于战争状态。
  • 那不勒斯(NAP)与法国处于联合统治状态(in_union_with = c:FRA)。

关键效果

  • 选项A:留下一个忠于王室的宫廷来管理那不勒斯(历史选项)

    • 法国获得国家修正 fra_aligned_neapolitan_court,持续25年。
    • 那不勒斯获得国家修正 nap_aligned_neapolitan_court,持续25年。
    • 设置变量 france_naples_union 值为1,持续25年。
    • AI选择概率:55%。
  • 选项B:对那不勒斯政府保持紧密控制

    • 法国获得国家修正 fra_tight_grip_over_neapolitan_court,持续25年。
    • 那不勒斯获得国家修正 nap_tight_grip_over_neapolitan_court,持续25年。
    • 设置变量 france_naples_union 值为1,持续25年。
    • AI选择概率:3%。
  • 选项C:给予那不勒斯行政机构高度自治以赢得其信任

    • 法国获得国家修正 fra_neapolitan_court_autonomy,持续25年。
    • 那不勒斯获得国家修正 nap_neapolitan_court_autonomy,持续25年。
    • 设置变量 france_naples_union 值为1,持续25年。
    • AI选择概率:42%。

背景介绍: 在15世纪末至16世纪初,法国通过继承或战争手段取得了对那不勒斯王国的联合统治权。如何管理这个遥远且文化迥异的南意大利领地,成为法国王室面临的重要行政挑战。事件反映了法国统治者需要在直接控制、代理人治理和地方自治之间做出选择,以平衡中央权威、地方稳定和行政效率。

完整事件代码

flavor_fra.2104 = { # The Administration of Naples
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2104.t
 	desc = flavor_fra.2104.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1488.1.1
		to = 1510.1.1
		monthly_chance = 20
	}

 	trigger = {
		has_variable = naples_under_france
		has_ruler = yes
		at_war = no
		c:NAP ?= {
			in_union_with = c:FRA
		}
 	}

	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 = ruler_fra
        }
 	}

 	option = { # Leave an court loyal to the Crown to govern Naples
		name = flavor_fra.2104.a
		historical_option = yes
		custom_tooltip = bonuses_will_be_lost_if_broken
		add_country_modifier = { modifier = fra_aligned_neapolitan_court years = 25 mode = add }
		c:NAP = { add_country_modifier = { modifier = nap_aligned_neapolitan_court years = 25 mode = add } }
		set_variable = {
			name = france_naples_union
			value = 1
			years = 25
		}
		ai_chance = {
			factor = 0.55
		}
 	}

 	option = { # Maintain a tight grip over the Neapolitan governance
		name = flavor_fra.2104.b
		custom_tooltip = bonuses_will_be_lost_if_broken
		add_country_modifier = { modifier = fra_tight_grip_over_neapolitan_court years = 25 mode = add }
		c:NAP = { add_country_modifier = { modifier = nap_tight_grip_over_neapolitan_court years = 25 mode = add } }
		set_variable = {
			name = france_naples_union
			value = 1
			years = 25
		}
		ai_chance = {
			factor = 0.03
		}
 	}

 	option = { # Provide the Neapolitan administration a great deal of autonomy to earn their trust
		name = flavor_fra.2104.c
		custom_tooltip = bonuses_will_be_lost_if_broken
		add_country_modifier = { modifier = fra_neapolitan_court_autonomy years = 25 mode = add }
		c:NAP = { add_country_modifier = { modifier = nap_neapolitan_court_autonomy years = 25 mode = add } }
		set_variable = {
			name = france_naples_union
			value = 1
			years = 25
		}
		ai_chance = {
			factor = 0.42
		}
 	}
}