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_por.61] 休达十字军

时间范围

  • 起始日期:1415年1月1日
  • 结束日期:1500年1月1日
  • 触发概率:每月 3% 概率

触发条件

  • 省份 ceuta 的拥有者必须满足以下所有条件:
    • 不是事件触发国(葡萄牙)。
    • 不是事件触发国的附属国或下属国。
    • 与事件触发国没有同盟关系。

关键效果

  • 选项 A (flavor_por.61.a)
    • 历史选项:是
    • ceuta 省份的拥有者添加一个“征服省份”的宣战理由(casus_belli:cb_conquer_province),目标省份为 ceuta
  • 选项 B (flavor_por.61.b)
    • 使社会价值观“好战 vs 和解”(belligerent_vs_conciliatory)向右轻微移动(societal_value_minor_move_to_right)。

背景介绍

该事件模拟了15世纪葡萄牙王国对北非战略要地休达(Ceuta)的征服企图。休达位于直布罗陀海峡南岸,控制着地中海与大西洋的交通咽喉。1415年,葡萄牙国王若昂一世率领军队发动远征,成功占领休达,这不仅是葡萄牙海外扩张的开端,也被视为一场针对穆斯林的“十字军”行动,标志着欧洲国家向非洲大陆进行殖民与贸易渗透的起点。

完整事件代码

flavor_por.61 = { #Ceuta Crusade
	type = country_event
	title = flavor_por.61.title
	desc = flavor_por.61.desc
	historical_info = flavor_por.61.historical_info

	dynamic_historical_event = {
		tag = POR
		from = 1415.1.1
		to = 1500.1.1
		monthly_chance = 3
	}
	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		location:ceuta.owner ?= {
			this != root
			NOT = {
				is_subject_or_below_of = ROOT
			}
			NOT = {
				has_mutual_scripted_relation = {
					type = relation_type:alliance
					target = root
				}
			}
		}
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }

		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		location:ceuta = {
			save_scope_as = target_location
			owner ?= {
				save_scope_as = target_country
			}
		}
	}

	option = {
		name = flavor_por.61.a
		historical_option = yes

		add_casus_belli = {
			target = scope:target_location.owner
			type = casus_belli:cb_conquer_province
			province = scope:target_location.province
		}
	}

	option = {
		name = flavor_por.61.b

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_minor_move_to_right
		}
	}
}