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.49] 金雀花王朝继承危机

时间范围

1400.1.1 - 1500.1.1(每月 20% 概率)

触发条件

  • 当前统治者(ruler)必须满足以下所有条件:
    • 属于金雀花王朝(dynasty:plantagenet_dynasty)
    • 已婚(is_married = yes)
    • 没有子女(num_of_children = 0)
    • 其第一配偶(first_spouse)未怀孕(is_pregnant = no)
  • 约克王朝(dynasty:york_dynasty)的家族首领(dynasty_head)必须存在且为成年男性(is_adult = yes, is_female = no)
  • 兰开斯特王朝(dynasty:lancaster_dynasty)的家族首领(dynasty_head)必须存在且为成年男性(is_adult = yes, is_female = no)

关键效果

选项: flavor_eng.49.a

  • 效果:
    • 获得大量政府力量(add_government_power = government_power_extreme_bonus)
    • 触发一个自定义提示(custom_tooltip),其文本为 flavor_eng.49.a.tooltip。若当前统治者存在,则:
      • 统治者生育能力降低100(add_fertility = -100)
      • 其第一配偶生育能力降低100(add_fertility = -100)

背景介绍

在15世纪的英格兰,金雀花王朝的统治面临潜在的继承危机。当君主没有直系后代时,王位的合法继承问题变得尤为敏感。这一时期,势力强大的约克家族和兰开斯特家族都已具备成年男性首领,他们各自对王位有着潜在的宣称。此事件模拟了君主无嗣可能引发的政治紧张局势,以及王室为应对继承不确定性而可能采取的措施,这些措施往往伴随着权力的集中。

完整事件代码

flavor_eng.49 = {
	type = country_event
	fire_only_once = yes
	title = flavor_eng.49.title
	desc = flavor_eng.49.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1400.1.1
		to = 1500.1.1
		monthly_chance = 20
	}

	trigger = {
		ruler ?= {
			dynasty = dynasty:plantagenet_dynasty
			is_married = yes
			num_of_children = 0
			first_spouse = {
				is_pregnant = no
			}
		}
		dynasty:york_dynasty ?= {
			dynasty_head ?= {
				is_adult = yes
				is_female = no
			}
		}
		dynasty:lancaster_dynasty ?= {
			dynasty_head ?= {
				is_adult = yes
				is_female = no
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_eng.49.a
		custom_tooltip = {
			text = flavor_eng.49.a.tooltip
			ruler ?= {
				add_fertility = -100
				first_spouse ?= {
					add_fertility = -100
				}
			}
		}
		add_government_power = government_power_extreme_bonus
	}
}