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.103 巩固旧盟

时间范围:1347.1.1 - 1376.1.1(每月 33% 概率触发)

触发条件

  • 苏格兰(SCO)拥有统治者。
  • 法兰西(FRA)与英格兰(ENG)国家均存在。
  • 苏格兰未处于内战状态。
  • 苏格兰未处于任何战争状态。
  • 苏格兰与英格兰未处于战争状态。
  • 苏格兰与英格兰未处于停战状态。
  • 法兰西(FRA)正与英格兰(ENG)处于战争状态。

关键效果

  • 选项 A:我们应立即准备入侵英格兰!(历史选项)

    • 稳定性小幅下降。
    • 苏格兰与法兰西建立单方面保证关系。
    • 苏格兰获得针对英格兰的宣战理由 cb_sco_invade_england
    • 苏格兰获得持续5年的国家修正 sco_advance_into_england
    • 苏格兰与法兰西互相获得观点修正 opinion_sco_hyw_auld_alliance
    • AI选择权重:基础70%,若稳定性低于10级则为0%。
  • 选项 B:我们无力与英格兰开战,但可以通过其他方式援助法兰西

    • 苏格兰与法兰西建立单方面保证关系。
    • 苏格兰获得持续5年的国家修正 sco_auld_alliance_funding_fra
    • 法兰西获得持续5年的国家修正 sco_fra_receiving_auld_funding
    • 苏格兰与法兰西互相获得观点修正 opinion_sco_hyw_monetary_auld_alliance
    • AI选择权重:20%。
  • 选项 C:暂时避免卷入冲突

    • 苏格兰获得持续5年的国家修正 sco_fortifying_against_england
    • 法兰西对苏格兰获得观点修正 opinion_sco_dishonored_hyw_auld_alliance
    • AI选择权重:10%。

背景介绍: 此事件模拟了百年战争期间,苏格兰王国面对其传统盟友法兰西与英格兰开战时所作出的战略抉择。“旧盟”(Auld Alliance)是苏格兰与法兰西之间长期存在的防御性同盟。当法兰西在战场上陷入困境时,苏格兰统治者面临着是否履行盟约、以何种方式介入英法冲突的重大决策。选择直接军事干预、提供财政支持或是保持谨慎回避,都将对苏格兰的国家安全、财政状况以及与两大强国的关系产生深远影响。

完整事件代码

flavor_sco.103 = { # Honoring the Auld Alliance
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.103.title
 	desc = flavor_sco.103.desc

	dynamic_historical_event = {
		tag = SCO
		from = 1347.1.1
		to = 1376.1.1
		monthly_chance = 33
	}

 	trigger = {
		has_ruler = yes
		country_exists = c:FRA
		country_exists = c:ENG
		in_civil_war = no
		at_war = no
		NOT = {	is_at_war_with = c:ENG }
		NOT = {	has_truce_with = c:ENG }
		c:FRA = {
			is_at_war_with = c:ENG
		}
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

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

 	option = { # We shall make preparations to invade England at once!
		name = flavor_sco.103.a
		historical_option = yes
		add_stability = stability_mild_penalty
		create_relation = {
			first = c:FRA
			second = c:SCO
			type = relation_type:guarantee
		}
		add_casus_belli = {
			target = c:ENG
			type = casus_belli:cb_sco_invade_england
		}
		add_country_modifier = { modifier = sco_advance_into_england years = 5 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.7
			modifier = {
				factor = 0
				stability < 10
			}
		}
 	}

 	option = { # We cannot afford a war with England, but we can aid France by other means
		name = flavor_sco.103.b
		create_relation = {
			first = c:FRA
			second = c:SCO
			type = relation_type:guarantee
		}
		add_country_modifier = { modifier = sco_auld_alliance_funding_fra years = 5 mode = add_and_extend }
		c:FRA = {
			add_country_modifier = { modifier = sco_fra_receiving_auld_funding years = 5 mode = add_and_extend }
		}
		c:FRA = {
			add_opinion = { target = c:SCO modifier = opinion_sco_hyw_monetary_auld_alliance }
		}
		add_opinion = { target = c:FRA modifier = opinion_sco_hyw_monetary_auld_alliance }
		ai_chance = {
			factor = 0.2
		}
 	}

 	option = { # Avoid involving ourselves for now
		name = flavor_sco.103.c
		add_country_modifier = { modifier = sco_fortifying_against_england years = 5 mode = add_and_extend }
		c:FRA = {
			add_opinion = { target = c:SCO modifier = opinion_sco_dishonored_hyw_auld_alliance }
		}
		ai_chance = {
			factor = 0.1
		}
 	}
}