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.104 亨利·都铎的诞生

时间范围:1457.1.28 - 1487.1.1(每月 10% 概率触发)

触发条件

  • 国家为 ENG(英格兰)或 GBR(大不列颠)。
  • 国家拥有变量 supports_house_of_york(支持约克家族)或 supports_house_of_lancaster(支持兰开斯特家族)。
  • 当前统治者的兄弟(男性、未婚、非统治者)中至少有一人存在。

关键效果

  • 选项 A (历史选项)
    • 将创建的人物 玛格丽特·博福特 与当前统治者的兄弟结婚。
    • 获得大量政府权力。
    • 教士阶层满意度大幅下降。
    • 显示自定义提示 flavor_eng.104.tt1
  • 选项 B
    • (隐藏效果)无声地杀死创建的人物 亨利·都铎
    • 教士阶层满意度大幅提升。
    • 显示自定义提示 flavor_eng.104.tt2

背景介绍: 此事件模拟了英格兰玫瑰战争期间的关键时刻。玛格丽特·博福特,兰开斯特家族的重要成员,与国王的兄弟埃德蒙·都铎结婚。他们的儿子亨利·都铎于1457年出生,他后来成为亨利七世,开创了都铎王朝,并结束了玫瑰战争。事件反映了当时复杂的政治联姻、王位继承斗争以及不同贵族派系(约克与兰开斯特)的支持对王位继承人的影响。

完整事件代码

flavor_eng.104 = {
	type = country_event
	title = flavor_eng.104.title
	desc = flavor_eng.104.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1457.1.28
		to = 1487.1.1
		monthly_chance = 10
	}

	trigger = {

		OR = {
			has_variable = supports_house_of_york
			has_variable = supports_house_of_lancaster
		}

		any_character = {
				is_sibling_of = root.ruler
				is_ruler = no
				is_female = no
				is_married = no
		}

	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

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

		character:eng_henry_iii ?= { save_scope_as = henry_iii }

		random_character = {
			limit = {
				is_sibling_of = root.ruler
				is_ruler = no
				is_female = no
				is_married = no
			}
			save_scope_as = brother
		}

		create_character = {
			first_name = name_margaret
			dynasty = dynasty:beaufort_dynasty
			estate = estate_type:nobles_estate
			adm = 80
			dip = 80
			mil = 10
			birth_date = 1443.1.1
			female = yes
			birth_location = location:bedford
			religion = religion:catholic
			save_scope_as = margaret_beaufort
			script = eng_margaret_beaufort
		}

		create_character = {
			first_name = name_henry
			dynasty = dynasty:tudor_dynasty
			adm = 70
			dip = 25
			mil = 60
			birth_date = 1457.1.28
			birth_location = location:pembroke
			father = scope:brother
			mother = scope:margaret_beaufort
			religion = religion:catholic
			culture = culture:english
			save_scope_as = henry_tudor
			script = eng_henry_tudor
		}

		location:chalons_champagne = { save_scope_as = chalons_champagne }

	}

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

		character:eng_margaret_beaufort ?= { marry_character = scope:brother }

		add_government_power = government_power_extreme_bonus

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_penalty
		}

		custom_tooltip = flavor_eng.104.tt1

	}

	option = {
	name = flavor_eng.104.b

		hidden_effect = { kill_character_silently = scope:henry_tudor }

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_bonus
		}

		custom_tooltip = flavor_eng.104.tt2

	}

	historical_info = flavor_eng.104.historical_info

}