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_sco.1000 英格兰对苏格兰的宣称

时间范围

1330.1.1 - 1500.1.1,每月 20% 概率触发。

触发条件

  • 事件触发国(通常为英格兰 ENG):
    • 拥有统治者。
    • 未处于战争状态。
  • 苏格兰 c:SCO 存在,且:
    • 未处于内战。
    • 未处于战争状态。
    • 拥有统治者。
    • 不是 事件触发国的附庸。
    • 是事件触发国的邻国。
  • 省份定义 lothian_provinceteviotdale_province 中,至少有一个地块的所有者是苏格兰 c:SCO

关键效果

  • 选项 A (历史选项)
    • 对苏格兰 c:SCO 静默触发后续事件 flavor_sco.1001
    • 显示自定义提示 flavor_sco.1000.tt
  • 选项 B
    • 苏格兰 c:SCO 对事件触发国增加 opinion_pleased(满意)好感度修正。

背景介绍

该事件模拟了14至15世纪英格兰对苏格兰的领土宣称与干涉。历史上,英格兰国王爱德华三世曾支持爱德华·巴里奥(Edward Balliol)对苏格兰王位的宣称,并借此介入苏格兰事务,试图控制洛锡安和特威奥特代尔等南部边境地区,引发了长期的冲突与外交博弈。

事件代码

flavor_sco.1000 = {
	hide_portraits = yes
	type = country_event

	title = flavor_sco.1000.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					character:sco_edward_balliol ?= {
						c:SCO.ruler != this
					}
				}
				desc = flavor_sco.1000.desc_no_balliol
			}
			triggered_desc = {
				trigger = { always = yes }
				desc = flavor_sco.1000.desc
			}
		}
	}

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
		from = 1330.1.1
		to = 1500.1.1
		monthly_chance = 20
	}

	trigger = {
		has_ruler = yes
		country_exists = c:SCO
		c:SCO = {
			in_civil_war = no
			at_war = no
			has_ruler = yes
			NOT = { is_subject_of = root }
			is_neighbor_of = root
		}
		province_definition:lothian_province = {
			any_location_in_province_definition = { owner ?= c:SCO }
		}
		province_definition:teviotdale_province = {
			any_location_in_province_definition = { owner ?= c:SCO }
		}
		at_war = no
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		character:sco_edward_balliol ?= {
			save_scope_as = balliol
		}

		c:SCO.ruler = {
			if = {
				limit = { this != character:sco_edward_balliol }
				save_scope_as = target_character
			}
		}

		province_definition:lothian_province = { save_scope_as = lothian }

		province_definition:teviotdale_province = { save_scope_as = teviotdale }

		location:edinburgh = { save_scope_as = target_location }

	}

	option = {
		name = flavor_sco.1000.a
		historical_option = yes

		hidden_effect = {
			c:SCO = { trigger_event_silently = flavor_sco.1001 }
		}

		custom_tooltip = flavor_sco.1000.tt

	}

	option = {
		name = flavor_sco.1000.b

		c:SCO = {
			add_opinion = {
				target = root
				modifier = opinion_pleased
			}
		}

	}

	historical_info = flavor_sco.1000.historical_info

}