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_eth.20 葡萄牙使团到访!

时间范围

1500.1.1 - 1550.1.1,在此期间内,每月有 5% 的概率触发此事件。

触发条件

  • 国家拥有变量 portuguese_embassy
  • 国家 与葡萄牙(c:POR)处于战争状态。

关键效果

事件提供三个选项,每个选项都会将创建的人物 弗朗西斯科·阿尔瓦雷斯 移往葡萄牙。

  • 选项 A (flavor_eth.20.a)

    • 触发条件:国家与马穆鲁克(c:MAM)接壤。
    • 效果
      • 显示自定义提示 flavor_eth.20.tt
      • 葡萄牙将在 6年 后静默触发事件 flavor_eth.21
      • 获得 少量陆军传统
      • 历史选项:此选项被标记为历史选项(historical_option = yes)。
  • 选项 B (flavor_eth.20.b)

    • 效果
      • 获得 少量政府力量
      • 获得 少量陆军传统
  • 选项 C (flavor_eth.20.c)

    • 效果
      • 获得 大量金钱change_gold_effect = { scale = 4 })。

背景介绍

此事件模拟了16世纪早期葡萄牙王国向埃塞俄比亚派遣外交使团的历史互动。事件中创建的人物弗朗西斯科·阿尔瓦雷斯是一位真实存在的葡萄牙传教士和探险家,他于1520年至1526年间作为葡萄牙大使馆的一员访问了埃塞俄比亚,并留下了关于该地区的珍贵记录。事件反映了葡萄牙在印度洋扩张背景下,试图与东非基督教王国建立联系的外交努力。

完整事件代码

flavor_eth.20 = { #An Embassy Is Here!
	type = country_event
	title = flavor_eth.20.title
	desc = flavor_eth.20.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = ETH
		from = 1500.1.1
		to = 1550.1.1
		monthly_chance = 5
	}
	
	trigger = {
		has_variable = portuguese_embassy
		NOT = {	is_at_war_with = c:POR }
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_background_effect = { background = estate_type:nobles_estate }
		c:POR.capital = {
			random_pop  = { 
				limit = { 
					religion = religion:catholic
					pop_type = pop_type:nobles
				}
				save_scope_as = target_pop
			}	
		}
		create_character = { #https://en.wikipedia.org/wiki/Francisco_%C3%81lvares
			first_name = name_francis
			last_name = Alvares
			birth_location = location:coimbra
			birth_date = 1465.1.1
			culture = culture:portuguese
			religion = religion:catholic
			female = no
			adm = 50 dip = 75 mil = 70
			estate = estate_type:clergy_estate
			script = por_francisco_alvares
			save_scope_as = francisco_alvares
		}
	}

	option = {
		name = flavor_eth.20.a
		trigger = {
			is_neighbor_of = c:MAM
		}
		custom_tooltip = flavor_eth.20.tt
		c:POR = {
			trigger_event_silently = { id = flavor_eth.21 years = 6}
		}
		add_army_tradition = army_tradition_mild_bonus
		historical_option = yes
		scope:francisco_alvares = {
			move_country = c:POR
		}
	}

	option = {
		name = flavor_eth.20.b
		add_government_power = government_power_mild_bonus
		add_army_tradition = army_tradition_mild_bonus
		scope:francisco_alvares = {
			move_country = c:POR
		}
	}

	option = {
		name = flavor_eth.20.c
		change_gold_effect = { scale = 4 }
		scope:francisco_alvares = {
			move_country = c:POR
		}
	}
}