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_rus.21 对瑞典帝国的政治姿态

时间范围:1680.1.1 - 1730.1.1(每月 5% 概率触发)

触发条件

  • 俄罗斯(RUS)与瑞典(SWE)接壤。
  • 俄罗斯与瑞典不是同盟关系。
  • 瑞典满足以下所有条件:
    • 国家等级为帝国(country_rank:rank_empire)。
    • 不是附庸国(is_subject = no)。
    • 存在至少一个敌人,且该敌人不是俄罗斯,也不是俄罗斯的敌人或宿敌。

关键效果

  • 选项 A (flavor_rus.21.a)
    • 俄罗斯获得对瑞典的“俄罗斯政治挑衅”(rus_political_aggressions)观点修正。
    • 瑞典的每一个敌人(排除俄罗斯自身、俄罗斯的敌人和宿敌)将与俄罗斯互相获得“瑞典之敌”(rus_enemy_of_sweden)观点修正。
  • 选项 B (flavor_rus.21.b)
    • 俄罗斯获得“趋向孤立主义”(nudge_towards_isolationism)效果。

背景介绍: 在17世纪末至18世纪初,瑞典帝国是波罗的海地区的霸主,其领土与正在扩张的俄罗斯接壤。两国关系紧张,冲突不断,最终演变为北方战争。此事件模拟了俄罗斯在面对强大的邻国瑞典帝国时,在外交上需要做出的战略抉择:是主动展示对抗姿态,拉拢瑞典的敌人,还是转向更为保守的孤立政策。

完整事件代码

flavor_rus.21 = {
	type = country_event
	title = flavor_rus.21.title
	desc = flavor_rus.21.desc
	image = "gfx/interface/illustrations/government/diplomacy_illustration.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1680.1.1
		to = 1730.1.1
		monthly_chance = 5
	}

	trigger = {

		is_neighbor_of = c:SWE

		NOT = {	is_allied_with = { target = c:SWE } }

		c:SWE = {
			country_rank = country_rank:rank_empire
			is_subject = no
			any_enemy = {
				NOT = {
					tag = RUS
					is_enemy_of = c:RUS
					is_rival_of = c:RUS
				}
			}
		}
	}

	immediate = {
		c:SWE.capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_rus.21.a

		add_opinion = {
			target = c:SWE
			modifier = rus_political_aggressions
		}

		c:SWE = {
			every_enemy = {
				limit = {
					NOT = {
						tag = RUS
						is_enemy_of = root
						is_rival_of = root
					}
				}
				add_opinion = {
					target = root
					modifier = rus_enemy_of_sweden
				}
				root = {
					add_opinion = {
						target = prev
						modifier = rus_enemy_of_sweden
					}
				}
			}
		}

	}

	option = {
		name = flavor_rus.21.b
		nudge_towards_isolationism = yes
	}

	historical_info = flavor_rus.21.historical_info

}