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.2031] 公益同盟

时间范围:1450.1.1 - 1475.1.1,每月 10% 概率触发

触发条件

  • 国家处于和平状态(at_war = no)。
  • 国家拥有统治者(has_ruler = yes)。
  • 社会价值观“中央集权 vs 地方分权”低于 -10(societal_value:centralization_vs_decentralization < -10),即法国初始状态高度分权。

关键效果

  • 历史选项:我们绝不与叛军谈判。
    • 效果:触发一个隐藏机制,所有满足条件的封臣(拥有全局变量 league_of_public_weal_enabled、是采邑类型且未与法国共主邦联)将静默触发事件 flavor_fra.2032
    • 提示:采邑现在可以采取“公益同盟”改革;超过六个(采邑)将触发战争。

背景介绍: “公益同盟”是法国历史上在15世纪中期(1450-1475年间)发生的一场重大贵族叛乱。当时,以勃艮第公爵大胆查理为首的一批大贵族,因不满法王路易十一加强中央集权、削弱封建领主权力的政策,结成同盟,公开反抗王权。这一事件深刻反映了中世纪晚期法国王权与地方封建势力之间的激烈斗争,是法国走向绝对君主制过程中的一次关键冲突。

完整事件代码

flavor_fra.2031 = { # The League of the Public Weal
	type = country_event
	fire_only_once = yes

 	title = flavor_fra.2031.t
 	desc = flavor_fra.2031.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1450.1.1
		to = 1475.1.1
		monthly_chance = 10
	}

 	trigger = {
		at_war = no
		has_ruler = yes
		societal_value:centralization_vs_decentralization < -10 # France starts heavily decentralized
 	}

	illustration_tags = {
		10 = angry
		10 = interior
	}	

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		set_global_variable = league_of_public_weal_enabled
        ruler ?= {
            save_scope_as = ruler_fra
        }
 	}

 	option = { # We will never negotiate with Rebels.
		name = flavor_fra.2031.a
		historical_option = yes
		custom_tooltip = appanages_can_now_take_public_weal_reform
		custom_tooltip = more_than_six_will_trigger_war
		hidden_effect = {
			every_subject = {
				limit = {
					has_global_variable = league_of_public_weal_enabled
					is_subject_type = appanage
					NOT = { in_union_with = c:FRA }
				}
				trigger_event_silently = flavor_fra.2032
			}
		}
 	}
}