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.210 粗暴求婚

时间范围:1542.1.1 - 1561.1.1(每月 12% 概率)

触发条件

  • 苏格兰(SCO)拥有统治者。
  • 国家英格兰(ENG)存在。
  • 国家法兰西(FRA)存在。
  • 苏格兰未与英格兰处于战争状态。
  • 苏格兰与英格兰没有停战协议。
  • 苏格兰不是英格兰的附庸。
  • 苏格兰未与英格兰处于联合统治中。
  • 苏格兰与法兰西是盟友。
  • 英格兰满足以下条件:
    • 拥有统治者。
    • 不是苏格兰的附庸。
    • 未与苏格兰处于联合统治中。

关键效果

  • 选项 A:准备防御英格兰
    • 历史选项:是
    • 英格兰获得对苏格兰的“吞并”宣战理由。
    • 苏格兰获得持续8年的国家修正“sco_on_the_defensive”。
    • 法兰西对苏格兰增加“opinion_sco_hyw_auld_alliance”好感度。
    • 苏格兰对法兰西增加“opinion_sco_hyw_auld_alliance”好感度。
    • AI选择概率:90%
  • 选项 B:安抚英格兰并破坏与法国的关系
    • 苏格兰与英格兰签订相互停战协议。
    • 解除苏格兰与法兰西的同盟关系。
    • 苏格兰损失大量威望(prestige_severe_penalty)。
    • 英格兰对苏格兰增加“sco_appease_great_wooing”好感度。
    • 法兰西对苏格兰增加“sco_broke_auld_alliance_great_wooing”好感度。
    • AI选择概率:10%

背景介绍: “粗暴求婚”指的是1543年至1551年间,英格兰国王亨利八世及其继任者爱德华六世为迫使苏格兰接受《格林威治条约》(约定苏格兰玛丽女王与爱德华六世联姻)而对苏格兰发动的军事行动。这一系列入侵旨在终结苏格兰与法国的传统同盟(“老同盟”),将苏格兰纳入英格兰的势力范围。事件反映了苏格兰在英格兰军事压力与法国传统盟友支持之间的艰难抉择。

完整事件代码

flavor_sco.210 = { # The Rough Wooing
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.210.title
 	desc = flavor_sco.210.desc

	dynamic_historical_event = {
		tag = SCO
		from = 1542.1.1
		to = 1561.1.1
		monthly_chance = 12
	}

 	trigger = {
		has_ruler = yes
		country_exists = c:ENG
		country_exists = c:FRA
		NOT = { is_at_war_with = c:ENG }
		NOT = { has_truce_with = c:ENG }
		NOT = { is_subject_of = c:ENG }
		NOT = { in_union_with = c:ENG }
		is_allied_with = { target = c:FRA }
		c:ENG = {
			has_ruler = yes
			NOT = { is_subject_of = c:SCO }
			NOT = { in_union_with = c:SCO }
		}
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = sco_ruler
        }
		c:ENG = {
			ruler ?= {
            	save_scope_as = eng_ruler
        	}
		}
	}

 	option = { # Prepare for a defense against England
		name = flavor_sco.210.a
		historical_option = yes
		c:ENG = {
			add_casus_belli = {
				type = casus_belli:cb_annex
				target = c:SCO
			}
		}
		add_country_modifier = { modifier = sco_on_the_defensive years = 8 mode = add_and_extend }
		c:FRA = {
			add_opinion = { target = c:SCO modifier = opinion_sco_hyw_auld_alliance }
		}
		add_opinion = { target = c:FRA modifier = opinion_sco_hyw_auld_alliance }
		ai_chance = {
			factor = 0.90
		}
 	}

 	option = { # Appease England and breakdown relations with France
		name = flavor_sco.210.b
		add_truce_with = { target = c:ENG mutual = yes }
		remove_relation = {
			first = c:SCO
			second = c:FRA
			type = relation_type:alliance
		}
		add_prestige = prestige_severe_penalty
		c:ENG = {
			add_opinion = { target = c:SCO modifier = sco_appease_great_wooing }
		}
		c:FRA = {
			add_opinion = { target = c:SCO modifier = sco_broke_auld_alliance_great_wooing }
		}
		ai_chance = {
			factor = 0.10
		}
 	}
}