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_dan_teu.5 圣乔治之夜起义

时间范围
无明确 fromto 日期,事件触发概率未在代码中指定(无 monthly_chance 字段)。

触发条件
代码中未包含 trigger 字段,因此无具体触发条件。

关键效果

  • 选项flavor_dan_teu.5.a
    • 效果
      • 在所有省份立即征召军队(raise_levies)。
      • 在首都创建一个 a_villagers 类型的子单位。
      • 为国家添加一个名为 teu_fervor_st_georges_night_uprising 的修正,持续3年。

背景介绍
该事件描述了“圣乔治之夜起义”,一场由农民发起的反抗运动。事件中,农民被动员起来,在首都形成村民单位,同时国家获得持续三年的狂热修正,反映了起义带来的社会动荡与军事动员。

完整事件代码

flavor_dan_teu.5 = {
	type = country_event
	title = flavor_dan_teu.5.title
	desc = flavor_dan_teu.5.desc
	historical_info = flavor_dan_teu.1.historical_info

	illustration_tags = {
        10 = armed
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
	}
	
	option = {
		name = flavor_dan_teu.5.a
		
		every_province = {
			raise_levies = { 
				type = army
				instant = yes
			}
		}
		capital = {
			create_sub_unit = unit_type:a_villagers
		}
		add_country_modifier = {
			modifier = teu_fervor_st_georges_night_uprising
			years = 3
		}
	}
}