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.55 弗朗西斯科·苏亚雷斯登场

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

触发条件

  • 国家拥有变量 cas_unlock_salamanca_events
  • 国家拥有格拉纳达地区(location:granada)。

关键效果

  • 选项 A (历史选项)
    • 将创建的人物 target_character 移动至本国。
    • 获得 legitimacy_mild_penalty(合法性小幅惩罚)。
    • 社会价值观 traditionalist_vs_innovative 向“传统”方向小幅移动(societal_value_minor_move_to_right)。
  • 选项 B
    • (隐藏效果)静默处决人物 target_character
    • 获得 legitimacy_mild_bonus(合法性小幅奖励)。
    • 社会价值观 traditionalist_vs_innovative 向“创新”方向小幅移动(societal_value_minor_move_to_left)。

背景介绍: 该事件模拟了西班牙耶稣会神学家、哲学家弗朗西斯科·苏亚雷斯(Francisco Suárez)的登场。苏亚雷斯出生于格拉纳达,是萨拉曼卡学派晚期的重要人物,以其在自然法、国际法和政治哲学方面的著作而闻名,对欧洲思想史产生了深远影响。事件反映了西班牙帝国在16世纪末期如何吸纳国内顶尖学者,以及国家在传统与创新价值观之间的潜在抉择。

完整事件代码

flavor_cas.55 = { #Francisco Suarez
	type = country_event
	title = flavor_cas.55.title
	desc = flavor_cas.55.desc
	image = "gfx/interface/illustrations/institutions/legalism.dds"
	
	historical_info = flavor_cas.55.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_francis
			last_name = Suarez
			birth_date = 1548.1.5
			birth_location = location:granada
			culture = culture:castilian
			adm = { 40 70 }
			dip = { 70 90 }
			mil = { 20 40 }
			estate = estate_type:clergy_estate
			create_in_limbo = yes
			save_scope_as = target_character
			script = cas_suarez
		}
	}

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

	option = {
		name = flavor_cas.55.a
		historical_option = yes
		scope:target_character = {
			move_country = root
		}
		add_legitimacy = legitimacy_mild_penalty
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_minor_move_to_right }
	}

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