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.33] 威廉·皮特登场

时间范围

1728年1月1日 - 1740年1月1日,每月 10% 概率触发

触发条件

  • 国家拥有伦敦地区

关键效果

选项: flavor_eng.33.a

  • 将人物威廉·皮特(昵称“老皮特”)移入本国
  • 使其与一位符合条件的女性结婚并使其怀孕

背景介绍

该事件模拟了英国政治家威廉·皮特(老皮特)在18世纪上半叶登上历史舞台的过程。皮特是英国历史上重要的政治人物,曾担任首相,并在七年战争期间领导英国取得重大胜利,对英国殖民扩张和全球影响力产生了深远影响。事件通过创建这位高能力值的政治家并为其安排婚姻,来反映其家族传承与政治生涯的开端。

完整事件代码

flavor_eng.33 = {
	type = country_event
	fire_only_once = yes
	title = flavor_eng.33.title
	desc = flavor_eng.33.desc
	historical_info = flavor_eng.33.historical_info

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1728.1.1
		to = 1740.1.1
		monthly_chance = 10
	}

	trigger = {
		owns = location:london
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = name_william
			last_name = Pitt
			nickname = nick_the_elder
			adm = { 78 95 }
			dip = { 78 95 }
			mil = { 78 95 }
			estate = estate_type:nobles_estate
			birth_location = location:london
			culture = culture:english

			birth_date = 1708.7.30
			create_in_limbo = yes
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
			script = eng_william_pitt_the_older
			save_scope_as = pitt_the_older
		}

		if = {
			limit = {
				any_character = {
					age_in_years >= 20
					age_in_years < 40
					is_married = no
					is_female = yes	#We do not want a male pregnancy in this DHE
					is_ruler = no
					is_regent = no
					has_dynasty = no
					is_pregnant = no
				}
			}
			random_character = {
				limit = {
					age_in_years >= 20
					age_in_years < 40
					is_married = no
					is_female = yes
					is_ruler = no
					is_regent = no
					has_dynasty = no
					is_pregnant = no
				}
				marry_character = scope:pitt_the_older
				save_scope_as = target_mom
			}
		}
		else = {
			create_character = {
				age = 20
				female = yes
				save_scope_as = target_mom
			}
		}
	}

	option = {
		name = flavor_eng.33.a

		scope:pitt_the_older = {
			move_country = root
			marry_character = scope:target_mom
			hidden_effect = { impregnate = scope:target_mom }
		}
	}
}