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.134 安妮·博林之女的未来

时间范围

1540.1.1 - 1570.1.1 (每月 5% 概率触发)

触发条件

  • 人物 eng_anne_boleyn (安妮·博林) 必须至少有一个孩子。
  • 必须存在一个满足以下所有条件的在世人物:
    • eng_anne_boleyn 的女儿。
    • 处于青少年时期。
    • 未婚。
    • 不是统治者。
    • 是当前国家统治者的近亲。

关键效果

选项 A (历史选项)

  • 国库减少 3 金币。
  • 安妮·博林的女儿获得 25 行政能力和 25 外交能力。
  • 安妮·博林的女儿获得特质 scholar (学者)。
  • 显示自定义提示 flavor_eng.134.tt1

选项 B

  • 如果 本国存在满足以下条件的未婚成年男性 (年龄小于50岁):
    • 不是安妮·博林女儿的近亲。
    • 属于 nobles_estate (贵族阶层) 或 burghers_estate (市民阶层)。
    • 则从中随机选择一人作为 potential_husband (潜在丈夫)。
  • 否则,创建一个新的男性角色作为 potential_husband,其属性如下:
    • 行政、外交、军事能力各 25。
    • 出生于 1520.1.1。
    • 出生地点为 london (伦敦)。
    • 属于 burghers_estate (市民阶层)。
    • 宗教信仰与国家相同。
    • 脚本标签为 eng_potential_husband
  • potential_husband 与安妮·博林的女儿结婚。
  • 显示自定义提示 flavor_eng.134.tt2

背景介绍

此事件围绕英格兰国王亨利八世的第二任王后安妮·博林的女儿展开。安妮·博林因未能诞下男性继承人等多种原因被处决,她的女儿伊丽莎白(即后来的伊丽莎白一世女王)的命运也因此变得复杂且充满政治考量。本事件模拟了在伊丽莎白青少年时期,王室需要为她规划未来道路的抉择:是让她专注于学术与宫廷教育,还是通过政治联姻来巩固权力或建立联盟。

完整事件代码

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1540.1.1
		to = 1570.1.1
		monthly_chance = 5
	}

	trigger = {

		character:eng_anne_boleyn ?= {
			num_of_children > 0
		}

		any_character = {
			is_child_of = character:eng_anne_boleyn
			is_female = yes
			is_alive = yes
			is_married = no
			is_ruler = no
			is_adolescent = yes
			is_close_relative = root.ruler
		}

	}
	illustration_tags = {
		10 = happy
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_character = {
			limit = {
				is_child_of = character:eng_anne_boleyn
				is_female = yes
				is_alive = yes
				is_ruler = no
				is_adolescent = yes
				is_married = no
			}
			save_scope_as = daughter_of_boleyn
		}

		capital = { save_scope_as = target_location }

	}

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

		change_gold_effect = { scale = -3 }

		scope:daughter_of_boleyn = {
			add_adm = 25
			add_dip = 25
			add_trait = trait:scholar
		}

		custom_tooltip = flavor_eng.134.tt1

	}

	option = {
		name = flavor_eng.134.b

		if = {
			limit = {
				any_character = {
					owner = root
					NOT = { is_close_relative = scope:daughter_of_boleyn }
					is_female = no
					is_married = no
					is_adult = yes
					age_in_years < 50
					OR = {
						has_estate = estate_type:nobles_estate
						has_estate = estate_type:burghers_estate
					}
				}
			}
			random_character = {
				limit = {
					owner = root
					NOT = { is_close_relative = scope:daughter_of_boleyn }
					is_female = no
					is_married = no
					is_adult = yes
					age_in_years < 50
					OR = {
						has_estate = estate_type:nobles_estate
						has_estate = estate_type:burghers_estate
					}
				}
				save_scope_as = potential_husband
			}
		}
		else = {
			create_character = {
				adm = 25
				dip = 25
				mil = 25
				birth_date = 1520.1.1
				female = no
				birth_location = location:london
				estate = estate_type:burghers_estate
				religion = root.religion
				save_scope_as = potential_husband
				script = eng_potential_husband
			}
		}

		scope:potential_husband = {
			marry_character = scope:daughter_of_boleyn
		}

		custom_tooltip = flavor_eng.134.tt2

	}

	historical_info = flavor_eng.134.historical_info

}