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.5 黎塞留枢机主教登场

时间范围:1621.1.1 - 1632.1.1(每月 25% 概率触发)

触发条件

  • 国家(ROOT)拥有至少3位枢机主教(any_cardinal_in_country.count >= 3)。
  • 国家拥有统治者(has_ruler = yes)。

关键效果

  • 选项 A (flavor_fra.5.a):
    • 为事件创建的目标人物(黎塞留枢机主教)添加一个名为 cardinal_richelieu_proficiency 的修正,持续300个月。

背景介绍: 此事件模拟了法国历史上著名的政治家、枢机主教阿尔芒·让·迪普莱西·德·黎塞留(Armand Jean du Plessis de Richelieu)登上政治舞台的关键时刻。黎塞留于1624年成为路易十三的首席大臣,在任期间极大地强化了法国的中央王权,削弱了贵族和胡格诺派的力量,并积极介入三十年战争,为法国在欧洲的霸权奠定了基础。该事件在游戏中的触发条件反映了黎塞留作为高级神职人员(枢机主教)的身份,以及他在法国宫廷中崛起所需的政治环境。

完整事件代码

flavor_fra.5 = { # Cardinal Richelieu
	type = country_event
	title = flavor_fra.5.title
	desc = flavor_fra.5.desc
	historical_info = flavor_fra.5.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1621.1.1
		to = 1632.1.1
		monthly_chance = 25
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	trigger = {
		ROOT = {
			any_cardinal_in_country	= {
				count >= 3
			}
		}
		has_ruler = yes
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_herman
			last_name = du_plessis
			adm = 82
			dip = 78
			mil = 66
			culture = culture:french
			birth_location = location:paris
			religion = religion:catholic
			birth_date = 1585.9.9
			estate = estate_type:clergy_estate
			script = cardinal_richelieu
			save_scope_as = target_character
		}
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

	option = {
		name = flavor_fra.5.a
        scope:target_character = {
            add_character_modifier = {
                modifier = cardinal_richelieu_proficiency
                months = 300
                mode = add
            }
        }
	}
}