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.38 胡安·德拉科萨的新世界地图

时间范围:1490.1.1 - 1510.1.1(每月 1% 概率)

触发条件

  • 国家拥有变量 cas_de_la_cosa_map
  • 角色 cas_de_la_cosa 存活

关键效果

  • 历史选项:选择此选项将:
    • 获得海军传统轻度加成 (add_navy_tradition = navy_tradition_mild_bonus)
    • 社会价值观向“海军”方向移动 (change_societal_value)
    • 在首都创建一件艺术品:
      • 艺术家:胡安·德拉科萨 (scope:target_character)
      • 作品键:de_la_cosa_map
      • 品质:75
      • 类型:论文 (work_of_art_type:treatise)
  • 事件结束后,移除变量 cas_de_la_cosa_map

背景介绍: 该事件模拟了西班牙制图师胡安·德拉科萨于1500年左右绘制其著名的“新世界地图”的历史时刻。德拉科萨曾参与哥伦布的早期航行,他的地图是现存最早的描绘美洲海岸线的欧洲地图之一,极大地提升了欧洲对美洲地理的认知,并对后续的航海探索产生了深远影响。

完整事件代码

flavor_cas.38 = { #Juan de la Cosa's Map of the New World
	type = country_event
	title = flavor_cas.38.title
	desc = flavor_cas.38.desc
	image = "gfx/interface/illustrations/institutions/new_world.dds"

	fire_only_once = yes

	historical_info = flavor_cas.38.historical_info

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1490.1.1
		to = 1510.1.1
		monthly_chance = 1
	}

	trigger = {
		has_variable = cas_de_la_cosa_map
		character:cas_de_la_cosa = {
			is_alive = yes
		}
	}

	immediate = {
		character:cas_de_la_cosa = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_cas.38.a
		historical_option = yes
		add_navy_tradition = navy_tradition_mild_bonus
		change_societal_value = {
			type = land_vs_naval
			value = societal_value_move_to_right
		}
		capital = {
			create_art = {
				artist = scope:target_character
				key = de_la_cosa_map
				quality = 75
				type = work_of_art_type:treatise
			}
		}
	}

	after = {
		remove_variable = cas_de_la_cosa_map
	}
}