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.500 重返辉煌

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

触发条件

  • 国家拥有君主。
  • 政府类型为君主制。
  • 拥有变量 enable_sun_king_successor_events
  • 当前统治者拥有特质 the_sun_king_bonus

关键效果

  • 选项 A:努力实现更受欢迎的统治(历史选项)

    • 增加 legitimacy_mild_bonus 的合法性。
    • 社会价值观 centralization_vs_decentralization 向右移动(趋向中央集权)。
    • 为当前统治者添加特质 fra_sun_king_successor_popular,持续20年。
    • AI选择概率:50%。
  • 选项 B:效仿 <太阳王> 的专制理想

    • 在法兰西首都投下 antagonism_more_absolutism 对抗性炸弹。
    • 为当前统治者添加特质 fra_sun_king_successor_absolutist,持续20年。
    • AI选择概率:50%。

背景介绍: 路易十四“太阳王”的统治结束后,法兰西面临着如何继承其庞大政治遗产的挑战。继任的君主们必须在维持绝对王权与顺应时代变革之间做出选择。这一事件反映了18世纪法国君主试图在“太阳王”的阴影下确立自身统治风格的困境,是继续强化专制传统,还是转向更受民众欢迎的治理方式,成为波旁王朝后期统治者的关键抉择。

完整事件代码

flavor_fra.500 = { # A Return to Form
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.500.title
 	desc = flavor_fra.500.desc

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

 	trigger = {
		has_ruler = yes
		government_type = government_type:monarchy
		has_variable = enable_sun_king_successor_events
		ruler ?= {
			NOT = { has_character_modifier = the_sun_king_bonus }
		}
 	}

	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 = fra_ruler
        }
		previous_ruler ?= {
			save_scope_as = previous_ruler
		}
	}

 	option = { # Strive for a more popular reign
		name = flavor_fra.500.a
		historical_option = yes
		add_legitimacy = legitimacy_mild_bonus
		change_societal_value = { type = centralization_vs_decentralization	value = societal_value_move_to_right }
		scope:fra_ruler = {
            add_character_modifier = {
                modifier = fra_sun_king_successor_popular
                years = 20
                mode = add
            }
        }
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # Emulate the Absolutist Ideals of <sun_king>
		name = flavor_fra.500.b
		drop_antagonism_bomb = {
			target = c:FRA.capital
			modifier = antagonism_more_absolutism
		}
		scope:fra_ruler = {
            add_character_modifier = {
                modifier = fra_sun_king_successor_absolutist
                years = 20
                mode = add
            }
        }
		ai_chance = {
			factor = 0.5
		}
 	}
}