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_tur.72 皮里·雷斯登场

时间范围:1500.1.1 - 1540.1.1(每月 20% 概率)

触发条件

  • 全球变量 new_world_discovered 已存在(新世界已被发现)。
  • 海军规模大于 50。
  • 拥有允许探索的修正 may_explore
  • 变量 kemal_reis_created 已存在。

关键效果

  • 选项 A (历史选项)
    • 将创建的人物“皮里·雷斯”移动到本国。
    • 为该人物随机添加一个“海军上将”类特质。
    • 在 2 到 3 年后,非静默地触发事件 flavor_tur.73
  • 选项 B
    • 将创建的人物“皮里·雷斯”移动到本国。
    • 为该人物随机添加一个“探险家”类特质。
    • 在 2 到 3 年后,静默地触发事件 flavor_tur.73
  • 事件后:移除变量 kemal_reis_created

背景介绍: 此事件模拟了奥斯曼帝国著名制图师、海军上将皮里·雷斯的登场。皮里·雷斯以其绘制的世界地图而闻名,该地图包含了当时欧洲人尚未完全探明的美洲海岸线细节。他出身于加里波利的一个航海世家,其叔父凯末尔·雷斯也是一位著名的海军指挥官。在奥斯曼帝国海军力量壮大并开始关注远洋探索的时代背景下,皮里·雷斯的才华得以展现。他不仅参与了多次海战,还撰写了重要的航海指南《海洋之书》,对后世影响深远。

完整事件代码

flavor_tur.72 = { #Piri Reis
	type = country_event
	title = flavor_tur.72.title
	desc = flavor_tur.72.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1500.1.1
		to = 1540.1.1
		monthly_chance = 20
	}

	historical_info = flavor_tur.72.historical_info


	trigger = {

		has_global_variable = new_world_discovered

		navy_size > 50

		modifier:may_explore = yes

		has_variable = kemal_reis_created

	}

	immediate = {

		create_character = {
			first_name = Ahmed_Muhiddin
			last_name = Piri
			adm = 85
			dip = 50
			mil = 75
			estate = estate_type:burghers_estate
			religion = religion:sunni
			culture = culture:turkish_culture
			birth_date = 1465
			birth_location = location:gallipoli
			add_trait = trait:cartographer
			save_scope_as = piri_reis
			script = tur_piri_reis
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_tur.72.a
		historical_option = yes

		scope:piri_reis = {
			move_country = root
			add_random_trait_from_category = admiral
		}

		root = {
			trigger_event_non_silently = {
				id = flavor_tur.73
				years = { 2 3 }
			}
		}
	}

	option = {
		name = flavor_tur.72.b

		scope:piri_reis = {
			move_country = root
			add_random_trait_from_category = explorer
		}


		hidden_effect = {
			root = {
				trigger_event_silently = {
					id = flavor_tur.73
					years = { 2 3 }
				}
			}
		}
	}

	after = {
		remove_variable = kemal_reis_created
	}
}