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_eng.223] 霍雷肖·纳尔逊登场

时间范围

  • 事件窗口:1779年1月1日 - 1810年1月1日
  • 触发概率:每月 1% 概率

触发条件

事件仅当以下条件全部满足时才会触发:

  1. 国家为 英格兰 (ENG)大不列颠 (GBR)
  2. 满足以下任意一项条件:
    • 社会价值观 land_vs_naval(陆军与海军侧重)大于或等于 -20。
    • 已启用政策 board_of_admirals_policy(海军部委员会政策)。
    • 首都拥有至少1级的 admiralty(海军部)建筑。
  3. 国家拥有 norwich(诺里奇)地区。

关键效果

事件提供三个选项,其核心效果如下:

  • 选项 A (flavor_eng.223.a)

    • 历史选项:是
    • 为创建的霍雷肖·纳尔逊角色随机添加一个“海军上将”类别的特质。
    • 显示自定义提示 flavor_eng.223.tt1
  • 选项 B (flavor_eng.223.b)

    • 为国家增加 navy_tradition_extreme_bonus(海军传统极大加成)。
    • 为霍雷肖·纳尔逊角色添加 unsuited_for_naval_command(不适合海军指挥)和 unsuited_for_army_command(不适合陆军指挥)特质。
    • 显示自定义提示 flavor_eng.223.tt2
  • 选项 C (flavor_eng.223.c)

    • 隐藏效果:静默杀死霍雷肖·纳尔逊角色。
    • 为国家增加 prestige_mild_bonus(威望轻度加成)。

背景介绍

霍雷肖·纳尔逊是英国历史上最著名的海军将领之一,以其在拿破仑战争期间,特别是在特拉法加海战中的卓越指挥和决定性胜利而闻名。他出生于诺里奇,其军事生涯体现了英国在18世纪末至19世纪初对海军力量的重视和投入。此事件模拟了这位传奇人物登上历史舞台的可能性,其命运与玩家(作为英格兰或大不列颠)的战略选择紧密相连。

完整事件代码

flavor_eng.223 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.223.title
	desc = flavor_eng.223.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1779.1.1
		to = 1810.1.1
		monthly_chance = 1
	}

	trigger = {

		OR = {
			societal_value:land_vs_naval >= -20
			has_policy = board_of_admirals_policy
			capital = {
				has_building_with_at_least_one_level = admiralty
			}
		}

		location:norwich = { owner = root }

	}
	image = "gfx/interface/illustrations/units/navy_heavy_ship.dds"
	immediate = {

		location:norwich = { save_scope_as = target_location }

		create_character = {
			first_name = name_horatius
			last_name = Nelson
			estate = estate_type:nobles_estate
			adm = 24
			dip = 37
			mil = 100
			birth_location = location:norwich
			birth_date = 1758.1.1
			culture = culture:english
			script = eng_horatio_nelson
			save_scope_as = horatio_nelson
		}

	}

	option = {
		name = flavor_eng.223.a
		historical_option = yes

		scope:horatio_nelson = {
			add_random_trait_from_category = admiral
		}

		custom_tooltip = flavor_eng.223.tt1

	}

	option = {
		name = flavor_eng.223.b

		add_navy_tradition = navy_tradition_extreme_bonus

		scope:horatio_nelson = {
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
		}

		custom_tooltip = flavor_eng.223.tt2

	}

	option = {
		name = flavor_eng.223.c

		hidden_effect = { kill_character_silently = scope:horatio_nelson }

		add_prestige = prestige_mild_bonus

	}

	historical_info = flavor_eng.223.historical_info

}