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

时间范围
无具体起止日期(from/to未定义),事件仅触发一次(fire_only_once = yes)。

触发条件

  • 事件为法国(FRA)专属国家事件。
  • 无明确trigger字段,但事件代码位于flavor_fra.2032.txt文件中,通常由游戏内部机制或前置事件触发。

关键效果

  • 选项一(历史选项)flavor_fra.2032.a

    • 显示自定义提示:“appanages_can_now_take_public_weal_reform”(采邑现在可以采取公益改革)与“more_than_six_will_trigger_war”(超过六个将触发战争)。
    • AI选择概率:基础10%。
  • 选项二flavor_fra.2032.b

    • 触发条件:主体忠诚度(subject_loyalty)低于33。
    • 效果:添加政府改革“member_of_league_of_public_weal”(成为公益同盟成员)。
    • 显示相同自定义提示:“appanages_can_now_take_public_weal_reform”与“more_than_six_will_trigger_war”。
    • AI选择概率:基础85%。

背景介绍
公益同盟是15世纪中叶法国贵族反对国王路易十一中央集权的一次重大叛乱。事件反映了法国大贵族(如勃艮第公爵、波旁公爵等)为维护自身封建特权而结盟对抗王权的斗争,是法国中世纪晚期王权与贵族势力冲突的关键体现。该事件通常关联采邑(Appanages)系统的政治抉择,可能引发内战或改革。

完整事件代码

flavor_fra.2032 = { # The League of Public the Public Weal # For Appanges
	hide_portraits = yes
	type = country_event
	fire_only_once = yes

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

	illustration_tags = {
		10 = regular
		10 = interior
	}	

 	immediate = {	
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		c:FRA = {
        	ruler ?= {
            	save_scope_as = ruler_fra
        	}
		}
 	}

 	option = { # Should our interests align, we should consider joining the League
		name = flavor_fra.2032.a
		historical_option = yes
		custom_tooltip = appanages_can_now_take_public_weal_reform
		custom_tooltip = more_than_six_will_trigger_war
        ai_chance = {
            base = 10
        }
 	}
 	option = { # The crown has grown too powerful, join the league!
		name = flavor_fra.2032.b
		trigger = {
			subject_loyalty < 33
		}
		add_reform = government_reform:member_of_league_of_public_weal
		custom_tooltip = appanages_can_now_take_public_weal_reform
		custom_tooltip = more_than_six_will_trigger_war
        ai_chance = {
            base = 85
        }
 	}
}