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_cas_rio_salado.4] 葡萄牙的回应

时间范围

  • 事件为一次性触发,无固定时间范围。

触发条件

  • 事件为一次性触发,具体触发条件由前置事件或脚本控制。

关键效果

  • 选项 A (flavor_cas_rio_salado_response.34.a):
    • 如果未与卡斯蒂利亚(CAS)结盟,则与其建立同盟关系。
    • 如果已与卡斯蒂利亚(CAS)结盟,则增加卡斯蒂利亚对我国的“外交行动”好感度修正。
  • 选项 B (flavor_cas_rio_salado_response.34.b):
    • 减少大量威望。
    • 减少大量正统性。

背景介绍

此事件模拟了在萨拉多河战役(Battle of Río Salado)相关历史背景下,葡萄牙王国可能做出的外交决策。面对伊比利亚半岛上基督教王国与格拉纳达埃米尔国(MOR)及其北非盟友的冲突,葡萄牙需要决定是否明确支持卡斯蒂利亚一方。选项A代表了与卡斯蒂利亚巩固或建立军事同盟的积极外交路线,而选项B则可能象征着拒绝介入或采取消极态度所带来的国内声望与统治合法性的损失。

完整事件代码

flavor_cas_rio_salado.4 = { #Portugals response
	type = country_event
	title = flavor_cas_rio_salado_response.34.title
	desc = flavor_cas_rio_salado_response.34.desc
	
	fire_only_once = yes
	
	illustration_tags = {
		10 = armed
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		c:CAS = {
			save_scope_as = target_ally
		}
		c:MOR = {
			save_scope_as = target_enemy
		}
	}

	option = {
		name = flavor_cas_rio_salado_response.34.a

		if = {
			limit = {
				NOT = {
					is_allied_with = { target = c:CAS }
				}
			}
			create_relation = {
				first = this
				second = c:CAS
				type = relation_type:alliance
			}
		}
		else_if = {
			limit = {
				is_allied_with = { target = c:CAS }
			}
			add_opinion = { target = c:CAS modifier = opinion_diplomatic_move }
		}
	}

	option = {
		name = flavor_cas_rio_salado_response.34.b

		add_prestige = prestige_extreme_penalty
		add_legitimacy = legitimacy_extreme_penalty

	}
}