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.7 约翰一世的海军改革

时间范围:1500.1.1 - 1520.1.1(每月 3% 概率)

触发条件

  • 国家拥有至少一个沿海省份。
  • 存在至少一个海军规模大于或等于本国的宿敌。

关键效果

  • 选项 A (flavor_dan.7.a) [历史选项]
    • 花费大量金钱。
    • 社会价值观向“重视海军”方向移动。
    • 获得少量海军传统。
    • 一个海军规模大于或等于本国的宿敌将对我国产生“愤怒”的外交态度修正。
  • 选项 B (flavor_dan.7.b)
    • 花费大量金钱。
    • 社会价值观向“重视陆军”方向移动。
    • 获得少量陆军传统。
  • 选项 C (flavor_dan.7.c)
    • 社会价值观向“传统主义”方向移动。

背景介绍: 在16世纪初,丹麦国王约翰一世(汉斯国王)统治时期,面对波罗的海及北海地区日益复杂的海上竞争与安全挑战,丹麦王国开始审视其海军力量。这一时期,丹麦的宿敌,如瑞典或汉萨同盟,其海军力量构成了直接威胁。为了维护其“北海帝国”的遗产和贸易航线,丹麦宫廷内出现了改革海军、增强海上力量的呼声。此事件反映了当时丹麦在陆军与海军发展优先权上的战略抉择,以及改革派与传统保守势力之间的角力。

完整事件代码

flavor_dan.7 = { #Naval Reforms of John I
	type = country_event
	title = flavor_dan.7.title
	desc = flavor_dan.7.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = DAN
		from = 1500.1.1
		to = 1520.1.1
		monthly_chance = 3
	}

	illustration_tags = {
		10 = armed
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		random_rival = {
			limit = {
				navy_size >= root.navy_size
			}
			save_scope_as = rival_country
		}
	}

	trigger = {
		any_owned_location = {
			is_coastal = yes
		}
		any_rival ?= {
			navy_size >= root.navy_size
		}
	}

	option = {
		name = flavor_dan.7.a
		historical_option = yes

		change_gold_effect = { scale = -2 }
		change_societal_value = { type = land_vs_naval value = societal_value_move_to_right }
		add_navy_tradition = navy_tradition_mild_bonus
		scope:rival_country = {
			add_opinion = { target = root modifier = opinion_angry }
		}
	}
	option = {
		name = flavor_dan.7.b
		change_gold_effect = { scale = -2 }
		change_societal_value = { type = land_vs_naval value = societal_value_move_to_left }
		add_army_tradition = army_tradition_mild_bonus
	}
	option = {
		name = flavor_dan.7.c
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_move_to_left }
	}
}