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_nor.5 奥克尼与设得兰群岛的归属

时间范围:1460.1.1 - 1475.1.1(每月 50% 概率触发)

触发条件

  • 苏格兰(c:SCO)必须存在。
  • 挪威(事件触发国)或其非宗主附庸国拥有奥克尼(location:orkney)和设得兰(location:shetland)两地。
  • 苏格兰:
    • 未与挪威处于战争状态。
    • 未与挪威处于共主联邦关系。
    • 完全拥有整个苏格兰高地地区(area:scottish_highlands_area)。

关键效果

  • 选项 A (flavor_nor.5.a)

    • 为苏格兰静默触发事件 flavor_nor.6
    • 将奥克尼和设得兰两地的所有权转移给苏格兰,并移除挪威对这两地的核心。
    • 挪威获得200金币。
    • 挪威与苏格兰之间获得停战协议。
    • 外交关系修正:
      • 苏格兰对挪威获得“战略性联姻”观点修正(nor_strategic_marriage)。
      • 挪威对苏格兰获得“放弃奥克尼”观点修正(nor_gave_away_orkney)。
  • 选项 B (flavor_nor.5.b)

    • 为挪威在赫布里底地区(area:hebrides_area)所有非核心省份添加核心。
    • 外交关系修正:
      • 挪威与苏格兰互相获得“关于赫布里底的税收冲突”观点修正(nor_taxation_conflict_over_hebrides)。
    • 如果苏格兰尚未拥有奥克尼和设得兰两地的核心,则为其添加核心。

背景介绍: 15世纪中后期,挪威王国与苏格兰王国就北海上的奥克尼群岛与设得兰群岛的归属问题存在长期争议。这些岛屿历史上曾是挪威的领土,但随着苏格兰势力的巩固与扩张,其主权主张日益增强。本事件模拟了挪威王室面临的一个关键抉择:是接受现实,通过交易(可能涉及嫁妆或赎金)将岛屿主权让渡给苏格兰以换取资金与和平;还是坚持主权主张,通过强化在邻近的赫布里底群岛的统治来作为回应,但这可能导致与苏格兰关系的持续紧张。

完整事件代码

flavor_nor.5 = {
	type = country_event
	title = flavor_nor.5.title
	desc = flavor_nor.5.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = NOR
		from = 1460.1.1
		to = 1475.1.1
		monthly_chance = 50
	}

	trigger = {
		country_exists = c:SCO
		owns_or_non_sovereign_subject_owns = location:orkney
		owns_or_non_sovereign_subject_owns = location:shetland
		c:SCO = {
			NOT = { is_at_war_with = root }
			NOT = { in_union_with = root }
			own_entire_area = area:scottish_highlands_area
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	
	option = {
		name = flavor_nor.5.a
		c:SCO = {
			trigger_event_silently = { id = flavor_nor.6 }
		}
		custom_tooltip = flavor_nor.5.a.tt
		show_as_tooltip = {
			c:NOR = {
				add_opinion = { target = root modifier = nor_gave_away_orkney }
			}
			location:orkney = {
				change_location_owner = c:SCO
				remove_core = c:NOR
			}
			location:shetland = {
				change_location_owner = c:SCO
				remove_core = c:NOR
			}
			c:SCO = {
				add_opinion = { target = root modifier = nor_strategic_marriage }
			}

			add_gold = 200.00
			add_truce_with = { target = c:SCO }
		}
	}
	option = {
		name = flavor_nor.5.b
		area:hebrides_area = {
			every_location_in_area = {
				limit = {
					NOT = { is_core_of = c:NOR }
				}
				add_core = c:NOR
			}
		}

		add_opinion = { target = c:SCO modifier = nor_taxation_conflict_over_hebrides }
		c:SCO = {
			if = {
				limit = {
					location:orkney = {
						NOT = {
							is_core_of = c:SCO
						}
					}
				}
				add_location_as_core = location:orkney
			}
			if = {
				limit = {
					location:shetland = {
						NOT = {
							is_core_of = c:SCO
						}
					}
				}
				add_location_as_core = location:shetland
			}
			add_opinion = { target = root modifier = nor_taxation_conflict_over_hebrides }
		}
	}
}