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.429 无与伦比的君王

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

触发条件

  • 国家为 FRA
  • 拥有君主。
  • 未处于战争状态。
  • 拥有变量 enable_sun_king_events
  • 当前君主的三项能力(行政、外交、军事)均大于 70
  • 国家威望大于等于 70

关键效果

  • 历史选项:选择“历史将永远铭记<君主>之名”。
    • 根据君主性别,为其设置昵称:
      • 男性君主:nick_the_sun_king (太阳王)。
      • 女性君主:nick_the_sun_queen (太阳女王)。
    • 为国家增加巨量的威望 (prestige_extreme_bonus)。
    • 为国家增加巨量的正统性 (legitimacy_extreme_bonus)。
    • 为君主添加一个永久性角色修正 the_sun_king_bonus (该修正将在君主死亡后消失)。
    • 设置变量 enable_sun_king_successor_events = 1,可能用于解锁后续事件。

背景介绍: 该事件旨在模拟法国波旁王朝的巅峰时期,特别是路易十四的统治。路易十四以其强大的中央集权、辉煌的宫廷文化(凡尔赛宫)和长期的统治而闻名,被誉为“太阳王”。此事件在游戏中的触发条件极为苛刻,要求法国在和平时期拥有一位能力超群、国家威望极高的君主,以匹配历史上路易十四“无与伦比”的地位。成功触发后,君主将获得“太阳王/女王”的称号,并获得巨大的声望与合法性加成,象征着其统治达到了一个光辉的顶点。

完整事件代码

flavor_fra.429 = { # A King Without Equal # Gives Sun King/Queen title
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.429.title
 	desc = flavor_fra.429.desc

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

 	trigger = {
		has_ruler = yes
		at_war = no
		has_variable = enable_sun_king_events
		ruler ?= {
			adm > 70
			dip > 70
			mil > 70
		}
		prestige >= 70
 	}

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

 	option = { # All of history shall remember the name of <monarch>
		name = flavor_fra.429.a
		historical_option = yes
		if = {
			limit = {
				ruler ?= {
           	 		is_female = no
				}
			}
			ruler ?= {
				set_nickname = nick_the_sun_king
			}
        }
		if = {
			limit = {
				ruler ?= {
           	 		is_female = yes
				}
			}
			ruler ?= {
				set_nickname = nick_the_sun_queen
			}
        }
		add_prestige = prestige_extreme_bonus
		add_legitimacy = legitimacy_extreme_bonus
		ruler ?= {
			add_character_modifier = {
                modifier = the_sun_king_bonus
                years = -1 # 'Permanent' but disappears after character dies
                mode = add_and_extend
            }
		}
		set_variable = { name = enable_sun_king_successor_events value = 1 }
 	}

}