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.2041 路易十一的财政审慎

时间范围:1460.1.1 - 1490.1.1,每月 25% 概率触发

触发条件

  • 国家拥有君主。
  • 当前君主的行政能力(adm)大于等于 60。

关键效果

  • 选项 A:这是繁荣的时代
    • 历史选项:是
    • 效果:
      • 君主行政能力(adm)+10。
      • 君主获得持续20年的角色修正 fra_king_fiscal_prudence
      • 国家稳定度小幅提升(stability_mild_bonus)。
      • 贵族阶层(estate_type:nobles_estate)满意度极大提升(estate_satisfaction_extreme_bonus)。
      • AI 选择概率:75%。
  • 选项 B:给予市民阶层更多好处
    • 效果:
      • 君主行政能力(adm)+10。
      • 君主获得持续20年的角色修正 fra_king_fiscal_prudence
      • 国家稳定度小幅提升(stability_mild_bonus)。
      • 市民阶层(estate_type:burghers_estate)满意度极大提升(estate_satisfaction_extreme_bonus)。
      • AI 选择概率:20%。
  • 选项 C:致力于全面的税收改革
    • 效果:
      • 君主行政能力(adm)+10。
      • 君主获得持续20年的角色修正 fra_king_fiscal_prudence
      • 国家获得持续5年的国家修正 fra_fiscal_tax_reforms
      • AI 选择概率:5%。

背景介绍: 此事件模拟了法国国王路易十一(或符合条件的高行政能力君主)在位期间推行的财政政策。路易十一以其精明的财政管理和对王国经济的巩固而闻名,他通过审慎的税收和开支政策,增强了王室的财政实力,为法国的中央集权和后续的强盛奠定了基础。事件反映了君主在平衡各阶层利益与推行全国性改革之间的不同政策选择。

完整事件代码

flavor_fra.2041 = { #The Fiscal Prudence of Louis XI (Takes current ruler name)
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2041.t
 	desc = flavor_fra.2041.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1460.1.1
		to = 1490.1.1
		monthly_chance = 25
	}

 	trigger = {
		has_ruler = yes
		ruler = { adm >= 60 }
 	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
        ruler ?= {
            save_scope_as = target_character
        }
 	}

 	option = { # These are flourishing times
		name = flavor_fra.2041.a
		historical_option = yes
		ruler = {
			add_adm = 10
			add_character_modifier = {
				modifier = fra_king_fiscal_prudence
				years = 20
				mode = add
			}
		}
		add_stability = stability_mild_bonus
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_bonus }
        ai_chance = {
            base = 75
        }
 	}

 	option = { # Offer greater benefits to the Burghers
		name = flavor_fra.2041.b
		ruler = {
			add_adm = 10
			add_character_modifier = {
				modifier = fra_king_fiscal_prudence
				years = 20
				mode = add
			}
		}
		add_stability = stability_mild_bonus
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_extreme_bonus }
        ai_chance = {
            base = 20
        }
 	}

 	option = { # Strive for general tax reform
		name = flavor_fra.2041.c
		ruler = {
			add_adm = 10
			add_character_modifier = {
				modifier = fra_king_fiscal_prudence
				years = 20
				mode = add
			}
		}
		add_country_modifier = {
			modifier = fra_fiscal_tax_reforms
			years = 5
			mode = add
		}
        ai_chance = {
            base = 5
        }
 	}
}