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_ned.22 米希尔·德·鲁伊特登场

时间范围:1632.1.1 - 1650.1.1(每月 1% 概率)

触发条件

  • 事件仅能触发一次。
  • 触发国家为 NED(尼德兰)。

关键效果

  • 选项 A (flavor_ned.22.a)

    • 改变社会价值观:land_vs_naval 向右侧移动。
    • 获得海军传统:navy_tradition_severe_bonus
    • 将创建的人物 target_character2 移入本国。
  • 选项 B (flavor_ned.22.b)

    • 改变社会价值观:land_vs_naval 向左侧移动。
    • 获得陆军传统:army_tradition_severe_bonus
    • 将创建的人物 target_character2 移入本国。
  • 选项 C (flavor_ned.22.c)

    • 将创建的人物 target_character2 移入本国。
    • 为该人物添加角色修正:de_ruyter,持续 120 个月,效果为叠加并延长。

背景介绍: 17世纪是荷兰的“黄金时代”,其海上力量达到顶峰。米希尔·德·鲁伊特是这一时期最杰出的海军统帅之一,他出身平民,凭借卓越的战术才能和对海战的深刻理解,在多次英荷战争中领导荷兰海军取得关键胜利,成为荷兰海军传统和国家荣耀的象征。此事件模拟了这位传奇海军上将登上历史舞台,并让尼德兰(荷兰)的统治者面临国家军事发展方向的战略抉择。

完整事件代码

flavor_ned.22 = {
	type = country_event

	title = flavor_ned.22.title
	desc = flavor_ned.22.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = NED
		from = 1632.1.1
		to = 1650.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		create_character = {
			first_name = name_michael
			last_name = de_ruyter
			birth_date = 1607.3.24
			adm = 83
			dip = 92
			mil = 95
			culture = root.culture
			birth_location = location:middelburg
			save_scope_as = target_character2
			script = ned_michiel_de_ruyter
			estate = estate_type:burghers_estate
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_ned.22.a

		change_societal_value = {
			type = land_vs_naval
			value = societal_value_move_to_right
		}
		add_navy_tradition = navy_tradition_severe_bonus
		scope:target_character2 = {
			move_country = root
		}
	}

	option = {
		name = flavor_ned.22.b

		change_societal_value = {
			type = land_vs_naval
			value = societal_value_move_to_left
		}
		add_army_tradition = army_tradition_severe_bonus
		scope:target_character2 = {
			move_country = root
		}
	}

	option = {
		name = flavor_ned.22.c

		scope:target_character2 = {
			move_country = root
			add_character_modifier = {
				modifier = de_ruyter
				months = 120
				mode = add_and_extend
			}
		}
	}
}