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_bah.1001] 王位继承与艺术品移交

时间范围:无明确 fromto 日期,事件为一次性触发 (fire_only_once = yes)。

触发条件

  • 事件为重大事件 (major = yes)。
  • 主要触发条件 (major_trigger):当前国家 (this) 必须等于 scope:target_country2

关键效果

  • 选项 A (历史选项)
    • scope:target_art 所指的艺术品移动到 scope:target_country2 的首都。
    • scope:target_country2 互相添加停战协议。
    • 静默触发事件 flavor_bah.1001
  • 选项 B
    • scope:target_country2 添加观点修正 bah_rejected_giving_up_throne
    • scope:target_country2 对当前国家添加相同的观点修正 bah_rejected_giving_up_throne

背景介绍: 此事件涉及两个国家之间关于王位或统治权的潜在交接。一个选项是遵循历史轨迹,移交一件具有象征意义的艺术品至对方首都并确立和平关系;另一个选项则是拒绝这一安排,导致双方关系因王位继承问题而恶化。

完整事件代码

flavor_bah.1001 = {
	type = country_event
	title = flavor_bah.1001.title
	desc = flavor_bah.1001.desc
    historical_info = flavor_bah.1001.historical_info

	fire_only_once = yes
	major = yes

	major_trigger = {
		this = scope:target_country2
	}

	illustration_tags = {
		10 = exterior
		10 = regular
	}

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

	option = {
		name = flavor_bah.1001.a
		historical_option = yes

        scope:target_art = {
			move_art = scope:target_country2.capital
		}
		add_truce_with = { target = scope:target_country2 mutual = yes }

		trigger_event_silently = flavor_bah.1001

	}
	option = {
		name = flavor_bah.1001.b

		add_opinion = { target = scope:target_country2 modifier = bah_rejected_giving_up_throne }
		scope:target_country2 = {
			add_opinion = { target = root modifier = bah_rejected_giving_up_throne }
		}
	}
}