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.68] 波罗的海霸权

时间范围:1337.1.1 - 1836.1.1,每月 10% 概率触发

触发条件

  • 国家海军规模 (navy_size) 大于等于 50。
  • 国家海军传统 (navy_tradition) 大于等于 60。
  • eastern_baltic_sea 地区,满足以下所有条件:
    • 该地区是沿海海域 (is_area_coastal_sea = yes)。
    • 所有与该地区相邻的港口 (any_adjacent_ports_to_area) 满足以下任一条件:
      • 没有所有者 (has_owner = no)。
      • 所有者为事件触发国 (owner ?= root)。
      • 所有者的海军规模小于事件触发国 (owner ?= { navy_size < root.navy_size })。

关键效果

  • 选项flavor_dan.68.a
    • 获得巨额海军传统加成 (add_navy_tradition = navy_tradition_extreme_bonus)。
    • 为国家添加名为 dan_dominium_maris_baltici 的修正,持续10年,若已有此修正则延长持续时间 (mode = add_and_extend)。

背景介绍: 此事件模拟了丹麦(DAN)在波罗的海地区建立海上霸权的历史进程。在中世纪晚期至近代早期,控制波罗的海的贸易路线和港口对于斯堪的纳维亚国家至关重要。当丹麦海军足够强大,并且在波罗的海东部海域的港口控制权上占据绝对优势时,它便有机会宣称对整个波罗的海的统治权,即“波罗的海霸权”(Dominium Maris Baltici),这不仅能带来巨大的声望,也能巩固其在该地区的经济和军事主导地位。

完整事件代码

flavor_dan.68 = { #Dominium Maris Baltici
	type = country_event
	title = flavor_dan.68.title
	desc = flavor_dan.68.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = DAN
		from = 1337.1.1
		to = 1836.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	trigger = {
		navy_size >= 50
		navy_tradition >= 60
		area:eastern_baltic_sea = {
			is_area_coastal_sea = yes
			any_adjacent_ports_to_area = {
				OR = {
					has_owner = no
					owner ?= root
					owner ?= {
						navy_size < root.navy_size
					}
				}
				count = all
			}
		}
	}

	immediate = {
		event_illustration_government_estate_effect = yes
	}

	option = {
		name = flavor_dan.68.a
		add_navy_tradition = navy_tradition_extreme_bonus
		add_country_modifier = {
			modifier = dan_dominium_maris_baltici
			years = 10
			mode = add_and_extend
		}
	}
}