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.56] 加布里埃尔·巴斯克斯登场

时间范围:1580.1.1 - 1600.1.1(每月 1% 概率)

触发条件

  • 国家拥有变量 cas_unlock_salamanca_events
  • 国家拥有库恩卡地区(location:cuenca)。

关键效果

  • 选项 A (历史选项)
    • 将创建的人物 target_character 移动到本国。
    • 获得少量研究进度加成(research_progress_mild_bonus)。
  • 选项 B
    • 静默杀死创建的人物 target_character
    • 社会价值观向“传统主义”方向轻微移动(societal_value_minor_move_to_left)。

背景介绍: 该事件模拟了西班牙神学家、耶稣会士加布里埃尔·巴斯克斯(Gabriel Vásquez)在16世纪末登上历史舞台的情景。巴斯克斯以其在神学和法律哲学方面的著作而闻名,是萨拉曼卡学派的重要人物之一。事件反映了当时西班牙帝国在知识、宗教领域的人才涌现及其对国家发展的潜在影响。

完整事件代码

flavor_cas.56 = { #Gabriel Vásquez
	type = country_event
	title = flavor_cas.56.title
	desc = flavor_cas.56.desc
	image = "gfx/interface/illustrations/institutions/legalism.dds"
	
	historical_info = flavor_cas.56.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1580.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	immediate = {
		create_character = {
			first_name = name_gabriel
			last_name = Vasquez
			birth_date = 1549.1.1
			birth_location = location:cuenca
			culture = culture:castilian
			adm = { 80 90 }
			dip = { 80 90 }
			mil = { 20 40 }
			estate = estate_type:clergy_estate
			create_in_limbo = yes
			save_scope_as = target_character
			script = cas_vasquez
		}
	}

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

	option = {
		name = flavor_cas.56.a
		historical_option = yes
		scope:target_character = {
			move_country = root
		}
		add_research_progress = research_progress_mild_bonus
	}

	option = {
		name = flavor_cas.56.b
		hidden_effect = {
			kill_character_silently = {
				target = scope:target_character
			}
		}
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_left }
	}
}