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_hab.2501] 普鲁士竞争事件

时间范围
事件为动态历史事件,无固定 fromto 日期,触发概率取决于游戏引擎动态计算,未指定 monthly_chance

触发条件
事件触发条件未在代码中直接定义,通常由游戏引擎根据历史进程或特定条件自动触发。

关键效果

  • 历史选项historical_option = yes):
    选择此选项将执行以下效果:
    1. 对奥地利(HAB)
      • 获得对普鲁士(PRU)的“羞辱”宣战理由(casus_belli:cb_humiliate)。
      • 将普鲁士设为历史宿敌(add_historical_rival_scripted),且不触发对方接收事件。
    2. 对普鲁士(PRU)
      • 将奥地利设为历史宿敌(add_historical_rival_scripted),且不触发对方接收事件。
    3. 对其他国家
      • 对所有非奥地利附属国、且非奥地利敌对或宿敌、但与普鲁士为宿敌或敌对的国家,增加对奥地利的“反普鲁士联盟”好感度修正(opinion_anti_prussian_coalition)。

背景介绍
该事件模拟了历史上奥地利与普鲁士在中欧地区的长期竞争关系。自18世纪起,两国在神圣罗马帝国内部及德意志地区的主导权上冲突不断,最终在七年战争等重大冲突中演变为全面对抗。事件通过设立历史宿敌关系、提供特定宣战理由及影响其他国家态度,重现了这一地缘政治 rivalry 对欧洲格局的影响。

代码块

flavor_hab.2501 = { #Prussian Event about the rivalry
    type = country_event
	title = flavor_hab.2501.title
	desc = flavor_hab.2501.desc

	historical_info = flavor_hab.2500.historical_info

    option = {
        name = flavor_hab.2501.a
		historical_option = yes
		show_as_tooltip = {
			c:HAB = {
				add_casus_belli = {
					target = c:PRU
					type = casus_belli:cb_humiliate
				}
				add_historical_rival_scripted = { target = c:PRU trigger_recipient_event = no }
				c:PRU = {
					add_historical_rival_scripted = { target = c:HAB trigger_recipient_event = no }
				}
				every_country = {
					limit = {
						NOT = {
							is_subject_of = root
						}
						NOT = {
							OR = {
								is_rival_of = ROOT
								is_enemy_of = ROOT
							}
						}
						OR = {
							is_rival_of = c:PRU
							is_enemy_of = c:PRU
						}
					}
					add_opinion = { target = root modifier = opinion_anti_prussian_coalition }
				}
			}
		}
    }
}