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.2025 雅克·科尔事件

时间范围:1445.1.1 - 1465.1.1 (每月 12% 概率触发)

触发条件

  • 国家拥有统治者。
  • 名为“雅克·科尔”的人物存在。
  • 该人物“雅克·科尔”处于存活状态,且未被监禁。

关键效果

  • 选项 A (历史选项) - 他的野心现已远超他对宫廷的用处,将他流放
    • 获得 2000 金币。
    • 如果存在国家修正 fra_royal_expenditure_managed,则移除该修正。
    • 如果存在国家修正 fra_enterprising_nobles,则移除该修正。
    • 监禁目标人物(雅克·科尔),持续时间为“非常长”的修正年限。
    • 如果目标人物在内阁中,则将其从内阁中移除。
    • 为贵族阶层、神职人员阶层、市民阶层各增加“轻微增益”的阶层满意度。
  • 选项 B - 科尔极大地惠及了宫廷,允许他留下
    • 增加“轻微惩罚”的威望。
    • 为贵族阶层、神职人员阶层、市民阶层各增加“轻微惩罚”的阶层满意度。

背景介绍: 雅克·科尔是15世纪法国著名的商人和金融家,曾担任法王查理七世的财政官,对法国的经济复苏和商业扩张做出了巨大贡献。然而,他的财富、影响力以及与宫廷的紧密联系也招致了贵族和神职人员的嫉妒与敌意。本事件模拟了雅克·科尔最终因被指控滥用职权和叛国罪而失势并被流放的历史时刻,反映了中世纪晚期宫廷政治、阶层矛盾与商业资本之间的复杂博弈。

完整事件代码

flavor_fra.2025 = { # Monopolization of Coeur
	type = country_event
	title = flavor_fra.2025.title
	desc = flavor_fra.2025.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1445.1.1
		to = 1465.1.1
		monthly_chance = 12
	}

	trigger = {
		has_ruler = yes
		exists = character:jacques_coeur
		character:jacques_coeur = {
			is_alive = yes
			NOT = { has_character_modifier = imprisoned }
		}
	}
	
	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		character:jacques_coeur ?= {
			save_scope_as = target_character
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	option = { # His ambition now greatly outweighs his usefulness to the court, exile him
		name = flavor_fra.2025.a
		historical_option = yes
		add_gold = 2000
		if = {
			limit = {
				has_country_modifier = fra_royal_expenditure_managed
			}
			remove_country_modifier = fra_royal_expenditure_managed
		}
		if = {
			limit = {
				has_country_modifier = fra_enterprising_nobles
			}
			remove_country_modifier = fra_enterprising_nobles
		}
		scope:target_character = {
			imprison_character_effect = {
				years = modifier_duration_years_very_long
			}
		}
		if = {
			limit = {
				scope:target_character = {
					in_cabinet = yes
				}
			}
			remove_from_cabinet = scope:target_character
		}
		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 }
	}
	
	option = { # Couer has benefited this court greatly, allow him to remain
		name = flavor_fra.2025.b
		add_prestige = prestige_mild_penalty
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_mild_penalty }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_penalty }
	}
}