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_fra_sco.105 巴利奥尔拒绝支持/处决事件

时间范围:无具体起止日期(由变量触发)。事件触发后仅发生一次 (fire_only_once = yes)。

触发条件

  • 国家必须满足以下条件之一:
    • 拥有变量 balliol_refuses_french_support
    • 拥有变量 david_ii_executed_by_sbl

关键效果

  • 选项 A (此乃彻底失败)

    • 触发条件:拥有变量 david_ii_executed_by_sbl
    • 效果
      • 国家获得 prestige_extreme_penalty(声望极端惩罚)。
      • 隐藏效果
        1. 国家 SBL 处决角色 scope:david_ii_bruce,处决者为统治者,原因为 execution
        2. 国家 SCO 对本国产生 opinion_surrendered_our_king(交出我方国王)的负面看法。
        3. 国家 SBL 对本国产生 opinion_executed_fra_delegation(处决法国代表团)的负面看法。
    • AI选择权重:base = 1
  • 选项 B (外交上的重大失败)

    • 触发条件:拥有变量 balliol_refuses_french_support
    • 效果
      • 国家获得 prestige_extreme_penalty(声望极端惩罚)。
      • 隐藏效果
        • 国家 SCO 对本国产生 opinion_attempted_surrender_of_king(试图交出国王)的负面看法。
    • AI选择权重:base = 1

背景介绍: 此事件涉及苏格兰王位继承战争期间,英格兰支持的傀儡国王约翰·巴利奥尔(John Balliol)与法国及苏格兰布鲁斯派系之间的复杂互动。事件描述了两种可能的失败外交局面:一是巴利奥尔拒绝了法国的关键支持,导致外交孤立;二是更为严重的后果,即巴利奥尔或其支持者处决了苏格兰国王大卫二世(David II)或法国使团,引发了严重的声望损失和国际谴责。

完整事件代码

flavor_fra_sco.105 = { # Balliol refuses support/executes
	type = country_event
	title = flavor_fra_sco.105.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					has_variable = balliol_refuses_french_support
				}
				desc = flavor_fra_sco.105.balliol_refuses.desc
			}
			triggered_desc = {
				trigger = {
					has_variable = david_ii_executed_by_sbl
				}
				desc = flavor_fra_sco.105.balliol_executes_delegation.desc
			}
		}
	}

	fire_only_once = yes

	trigger = {
		OR = {
			has_variable = balliol_refuses_french_support
			has_variable = david_ii_executed_by_sbl
		}
	}

	illustration_tags = {
		10 = angry
		10 = exterior
	}	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	
	option = { # This has been a complete failure
		name = flavor_fra_sco.105.a
		trigger = {
			has_variable = david_ii_executed_by_sbl
		}
		add_prestige = prestige_extreme_penalty
		show_as_tooltip = {
			c:SBL = {
				kill_character = {
					target = scope:david_ii_bruce
					reason = execution
					killer = ruler
				}
			}
			reverse_add_opinion = { target = c:SCO modifier = opinion_surrendered_our_king }
			add_opinion = { target = c:SBL modifier = opinion_executed_fra_delegation }
		}
		ai_chance = {
			base = 1
		}
	}

	option = { # Failure but worst diplomatically
		trigger = {
			has_variable = balliol_refuses_french_support
		}
		name = flavor_fra_sco.105.a
		add_prestige = prestige_extreme_penalty
		show_as_tooltip = {
			reverse_add_opinion = { target = c:SCO modifier = opinion_attempted_surrender_of_king }
		}
		ai_chance = {
			base = 1
		}
	}
}