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.59] 巴托洛梅·德·梅迪纳

时间范围

1560年1月1日 - 1570年1月1日

  • 触发概率:每月 1% 概率

触发条件

  • 国家拥有变量 cas_unlock_salamanca_events
  • 国家拥有托莱多(location:toledo

关键效果

选项 A (flavor_cas.59.a)

  • 历史选项:是
  • 效果:
    • 减少国家金钱(change_gold_effect = { scale = -3 }
    • 将创建的人物 target_character 移动至本国
    • 增加少量研究进度(add_research_progress = research_progress_mild_bonus

选项 B (flavor_cas.59.b)

  • 效果:
    • 秘密处决创建的人物 target_character
    • 增加少量研究进度惩罚(add_research_progress = research_progress_mild_penalty

背景介绍

此事件围绕西班牙炼金术士、冶金学家巴托洛梅·德·梅迪纳展开。他因发明了使用汞从银矿石中提取白银的“汞齐化法”而闻名,该方法在16世纪下半叶极大地促进了美洲(尤其是秘鲁和墨西哥)银矿的开采效率,对西班牙帝国的经济产生了深远影响。事件模拟了卡斯提尔或西班牙是否选择接纳并资助这位关键人物,以推动其冶金技术发展的历史抉择。

完整事件代码

flavor_cas.59 = { #Bartolome de Medina
	type = country_event
	title = flavor_cas.59.title
	desc = flavor_cas.59.desc
	image = "gfx/interface/illustrations/institutions/scientific_revolution.dds"
	
	historical_info = flavor_cas.59.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1560.1.1
		to = 1570.1.1
		monthly_chance = 1
	}

	immediate = {
		create_character = {
			first_name = name_bartholomew
			last_name = de_Medina
			birth_date = 1527.7.25
			birth_location = location:medina_de_rioseco
			culture = culture:castilian
			adm = { 40 70 }
			dip = { 40 70 }
			mil = { 20 40 }
			estate = estate_type:clergy_estate
			create_in_limbo = yes
			save_scope_as = target_character
			script = cas_de_medina
		}
	}

	trigger = {
		has_variable = cas_unlock_salamanca_events
		owns = location:toledo
	}

	option = {
		name = flavor_cas.59.a
		historical_option = yes
		change_gold_effect = { scale = -3 }
		scope:target_character = {
			move_country = root
		}
		add_research_progress = research_progress_mild_bonus
	}

	option = {
		name = flavor_cas.59.b
		hidden_effect = {
			kill_character_silently = {
				target = scope:target_character
			}
		}
		add_research_progress = research_progress_mild_penalty
	}
}