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_dan_corfitz_ulfeldt.1 科菲茨·乌尔费尔特登场

时间范围:1635.1.1 - 1640.1.1 (每月 10% 概率)

触发条件

  • 国家存在统治者 (exists = ruler)

关键效果

  • 选项 A (历史选项)
    • 将新创建的角色科菲茨·乌尔费尔特 (target_character) 与符合条件的未婚成年公主 (target_princess) 结婚。
    • 增加少量正统性 (add_legitimacy = legitimacy_weak_bonus)。
    • 触发条件:统治者至少有一位年龄在40岁及以下的未婚成年女儿。
  • 选项 B
    • 增加少量威望 (add_prestige = prestige_weak_bonus)。

背景介绍: 此事件模拟了丹麦贵族科菲茨·乌尔费尔特在17世纪30年代末登上历史舞台的情景。乌尔费尔特是丹麦历史上一位极具争议的人物,他出身贵族,才华横溢但野心勃勃,最终因叛国罪被流放。事件为他安排了与王室联姻的可能性,这既是他政治生涯的起点,也预示了他未来与王室紧密而复杂的关系。

完整事件代码

flavor_dan_corfitz_ulfeldt.1 = { #Corfits Ulfeldt
	type = country_event
	title = flavor_dan_corfitz_ulfeldt.1.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					ruler = {
						any_child = {
							is_female = yes
							is_adult = yes
							age_in_years <= 40
							is_married = no
						}
					}
				}
				desc = flavor_dan_corfitz_ulfeldt.1.marriage.desc
			}
			desc = flavor_dan_corfitz_ulfeldt.1.desc
		}
	}

	fire_only_once = yes

	dynamic_historical_event = {
		tag = DAN
		from = 1635.1.1
		to = 1640.1.1
		monthly_chance = 10
	}

	trigger = {
		exists = ruler
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_cornificius
			last_name = ulfeldt
			birth_date = 1606.7.10
			birth_location = location:assens
			adm = 73
			dip = 61
			mil = 48
			culture = culture:danish
			religion = religion:catholic
			estate = estate_type:nobles_estate
			script = corfitz_ulfeldt_script
			save_scope_as = target_character
		}

		ruler = {
			save_scope_as = target_ruler
			random_child = {
				limit = {
					is_female = yes
					is_adult = yes
					age_in_years <= 40
					is_married = no
				}
				save_scope_as = target_princess
			}
		}
		trigger_event_silently = {
			id = flavor_dan_corfitz_ulfeldt.2
			months = { 50 60 }
		}
	}

	option = {
		name = flavor_dan_corfitz_ulfeldt.1.a
		historical_option = yes
		trigger = {
			ruler = {
				any_child = {
					is_female = yes
					is_adult = yes
					age_in_years <= 40
					is_married = no
				}
			}
		}
		scope:target_character = { marry_character = scope:target_princess }
		add_legitimacy = legitimacy_weak_bonus
	}

	option = {
		name = flavor_dan_corfitz_ulfeldt.1.b
		add_prestige = prestige_weak_bonus
	}
}