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_por.2003 伊内斯刺杀完成

时间范围:无明确起止日期(动态事件,满足条件后触发) 触发概率:无 monthly_chance 字段,为条件满足后触发的即时事件

触发条件

  • 必须满足条件:is_pedro_and_ines_in_affair = yes(佩德罗与伊内斯存在婚外情关系)

关键效果

选项:flavor_por.2003.a

  • 历史选项:未标注 historical_option = yes,非强制历史选项
  • 核心结果
    1. 若存在已指定的刺客(scope:assassin),则刺客将杀死目标人物(scope:target_character),死因为“刺杀”(assassination)。
    2. 若不存在指定刺客,则目标人物(scope:target_character)仍被杀死,死因为“刺杀”。
    3. 强制触发后续事件 flavor_por.2004(非静默方式)。

背景介绍

此事件描绘了葡萄牙历史上佩德罗王子(未来的佩德罗一世)与其情人伊内斯·德·卡斯特罗之间悲剧关系的高潮。伊内斯是佩德罗的贵族情妇,两人的关系因政治原因遭到佩德罗父亲、国王阿方索四世的强烈反对。国王担心伊内斯的卡斯特罗家族势力会威胁葡萄牙王国的稳定,最终下令处决伊内斯。这一刺杀行动成为了葡萄牙中世纪一段著名的宫廷悲剧,深刻影响了佩德罗继位后的统治与情感。

完整事件代码

flavor_por.2003 = { # Assassination Complete
	hide_portraits = yes
	type = country_event
	title = flavor_por.2003.title
	desc = flavor_por.2003.desc

	trigger = {
		is_pedro_and_ines_in_affair = yes
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_character = {
			limit = {
				is_female = no
				is_adult = yes
				NOR = {
					is_ruler = yes
					dynasty ?= scope:target_character.dynasty
					this = scope:target_character
					this = scope:target_character2
				}
			}
			save_scope_as = assassin
		}
		set_variable = assassination_of_ines
		if = {
			limit = {
				exists = scope:assassin
			}
			set_variable = {
				name = assassin_of_ines
				value = scope:assassin
			}
		}
	}

	option = {
		name = flavor_por.2003.a

		if = {
			limit = {
				exists = scope:assassin
			}
			kill_character = {
				target = scope:target_character
				reason = assassination
				killer = scope:assassin
			}
		}
		else = {
			kill_character = {
				target = scope:target_character
				reason = assassination
			}
		}

		trigger_event_non_silently = {
			id = flavor_por.2004
		}
	}
}