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_swe.1 瑞典的领土主张

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

触发条件

  • 国家为瑞典(tag = SWE
  • 不是附庸国(is_subject = no
  • 未处于战争状态(at_war = no

关键效果

  • 选项 A (flavor_swe.1.a)

    • 若当前时代为宗教改革时代或更晚,则轻微提升重商主义(mercantilism_vs_free_trade)社会价值。
    • 提升和解主义(belligerent_vs_conciliatory)社会价值。
    • 轻微提升中央集权(centralization_vs_decentralization)社会价值。
    • 领土主张
      • 若未完全控制哥特兰省(gotland_province),则对该省份人口最多的非本国控制地生成一个征服该省份的宣战理由(casus_belli:cb_conquer_province),并导致该地所有者对瑞典产生“瑞典宣称哥特兰”(swe_claims_gotland)的负面看法。
      • 若未完全控制斯堪尼亚地区(skaneland_area),则对该地区人口最多的非本国控制省份生成一个征服该省份的宣战理由,并导致该省份所有者对瑞典产生“瑞典宣称斯堪尼亚”(swe_claims_skane)的负面看法。
  • 选项 B (flavor_swe.1.b)

    • 承受一次轻微声望惩罚(add_prestige = prestige_weak_penalty)。

背景介绍: 该事件反映了16世纪中叶瑞典王国在瓦萨王朝统治下,寻求巩固和扩张其领土主权的历史背景。瑞典试图重申对波罗的海战略要地哥特兰岛以及传统上属于丹麦的斯堪尼亚地区的领土主张,这既是国家安全的考量,也体现了其增强在波罗的海地区影响力的野心。事件中的不同选项代表了瑞典王室是选择积极进取的外交与军事策略,还是选择更为保守、避免冲突的立场。

完整事件代码

flavor_swe.1 = {
	type = country_event
	title = flavor_swe.1.title
	desc = flavor_swe.1.desc
	historical_info = flavor_swe.1.historical_info

	fire_only_once = yes
	dynamic_historical_event = {
		tag = SWE
		from = 1530.1.1
		to = 1550.1.1
		monthly_chance = 5
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	trigger = {
		is_subject = no
		at_war = no
	}

	option = {
		name = flavor_swe.1.a
		if = {
			limit = {
				current_age_or_later = { age = age_4_reformation }
			}
			change_societal_value = { type = mercantilism_vs_free_trade value = societal_value_minor_move_to_right }
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_left }
		change_societal_value = { type = centralization_vs_decentralization	value = societal_value_minor_move_to_left	}

		if = {
			limit = {
				NOT = {
					own_entire_province = province_definition:gotland_province
				}
			}
			province_definition:gotland_province = {
				ordered_location_in_province_definition = {
					limit = {
						owner != root
					}
					order_by = population
					max = 1

					root = { add_casus_belli = { target =prev.owner type = casus_belli:cb_conquer_province province = prev.province } }

					owner = {	add_opinion = { target = root modifier = swe_claims_gotland } }
				}
			}
		}

		if = {
			limit = {
				NOT = {
					own_entire_area = area:skaneland_area
				}
			}
			area:skaneland_area = {
				ordered_location_in_area= {
					limit = {
						owner != root
					}
					order_by = population
					max = 1

					root = { add_casus_belli = { target = prev.owner type = casus_belli:cb_conquer_province province = prev.province } }
					owner = {	add_opinion = { target = root modifier = swe_claims_skane } }
				}
			}
		}

	}
	option = {
		name = flavor_swe.1.b
		add_prestige = prestige_weak_penalty
	}
}