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.2064] 三级会议授予“人民之父/母”称号

时间范围:1510.1.1 - 1540.1.1,每月 10% 概率

触发条件

  • 国家拥有统治者。
  • 国家宗教为天主教。
  • 国家威望 ≥ 50。
  • 统治者拥有角色修正 fra_ruler_encouraged_self_iconography

关键效果

  • 选项:欣然接受此称号。 (历史选项)
    • 效果:
      • 增加大量威望 (prestige_extreme_bonus)。
      • 增加贵族阶层满意度 (estate_satisfaction_mild_bonus)。
      • 增加神职人员阶层满意度 (estate_satisfaction_mild_bonus)。
      • 增加市民阶层满意度 (estate_satisfaction_mild_bonus)。
      • 若统治者为男性,则为其设置绰号 nick_fra_father_of_the_people
      • 若统治者为女性,则为其设置绰号 nick_fra_mother_of_the_people

背景介绍: 在16世纪早期的法国,君主与各阶层的关系对国家稳定至关重要。当一位享有崇高威望的天主教君主,通过积极的自我形象宣传赢得国内主要阶层的广泛认可时,由贵族、教士和市民代表组成的三级会议可能会授予其“人民之父”或“人民之母”的崇高称号,以表彰其统治,并进一步巩固君主与各阶层之间的联系。

完整事件代码

flavor_fra.2064 = { # Estates-General bestow ruler title 'Father/Mother of the People'
	type = country_event
	title = flavor_fra.2064.title
	
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					ruler ?= {
           	 			is_female = no
					}
				}
				desc = flavor_fra.2064.desc_king
			}
			triggered_desc = {
				trigger = {
					ruler ?= {
           	 			is_female = yes
					}
				}
				desc = flavor_fra.2064.desc_queen
			}
		}
	}
	
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1510.1.1
		to = 1540.1.1
		monthly_chance = 10
	}

	trigger = {
		has_ruler = yes
		religion = religion:catholic
		prestige >= 50
		ruler = {
			has_character_modifier = fra_ruler_encouraged_self_iconography
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	option = { # Accept the title with grace.
		name = flavor_fra.2064.a
		historical_option = yes
		add_prestige = prestige_extreme_bonus
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_bonus }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_bonus }
		if = {
			limit = {
				ruler ?= {
           	 		is_female = no
				}
			}
			ruler ?= {
				set_nickname = nick_fra_father_of_the_people
			}
        }
		if = {
			limit = {
				ruler ?= {
           	 		is_female = yes
				}
			}
			ruler ?= {
				set_nickname = nick_fra_mother_of_the_people
			}
        }
	}
}