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.193] 克里特岛人才涌现

时间范围

1750.1.1 - 1790.1.1,每月有 2% 的概率触发。

触发条件

  • 完全控制省份 crete_province(克里特岛)。

关键效果

事件触发时,会立即创建一位名为 John Vlachos 的希腊东正教市民阶层人物,其出生日期为1726年8月2日,出生地为 rethymno(雷西姆农)。该人物拥有高行政(60-100)、高外交(60-100)和中等军事(40-100)能力。

玩家可从以下三个选项中选择其一:

  1. 选项 A (flavor_tur.193.a)

    • 将 John Vlachos 招揽至本国。
    • 为其随机添加一个 海军将领特质
  2. 选项 B (flavor_tur.193.b)

    • 将 John Vlachos 招揽至本国。
    • 市民阶层 支付一笔黄金,金额相当于本国 月度贸易与税收收入的两倍
  3. 选项 C (flavor_tur.193.c)

    • 驱逐 John Vlachos。
    • 如果存在 greek_culture(希腊文化),则为其添加 轻微的文化影响力惩罚传统

背景介绍

在18世纪中后期,奥斯曼帝国治下的克里特岛孕育了许多杰出人才。此事件模拟了当地一位名为约翰·弗拉霍斯的希腊裔精英的登场。作为东正教徒和市民阶层的代表,他的才能可能被帝国吸纳以增强行政或海军力量,也可能因其文化背景和宗教身份引发一定的社会张力。玩家的选择将决定这位历史人物是成为帝国的助力,还是因文化隔阂而被边缘化。

完整事件代码

flavor_tur.193 = {
	type = country_event
	title = flavor_tur.193.title
	desc = flavor_tur.193.desc

	dynamic_historical_event = {
		tag = TUR
		from = 1750.1.1
		to = 1790.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		own_entire_province = province_definition:crete_province
	}

	immediate = {
		create_character = {
			first_name = name_john
			last_name = vlachos
			adm = {
				60
				100
			}
			dip = {
				60
				100
			}
			mil = {
				40
				100
			}
			culture = culture:greek_culture
			religion = religion:orthodox
			estate = estate_type:burghers_estate
			birth_date = 1726.8.2
			birth_location = location:rethymno
			save_scope_as = target_character
			create_in_limbo = yes
		}

		ruler_or_regent ?= {
			save_scope_as = target_character2
		}
	}

	option = {
		name = flavor_tur.193.a

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

	option = {
		name = flavor_tur.193.b

		scope:target_character = { move_country = root }
		add_gold_to_estate = {
			estate_type = estate_type:burghers_estate
				value = {
					value = monthly_income_trade_and_tax
					multiply = 2
				}
		}
	}

	option = {
		name = flavor_tur.193.c

		culture:greek_culture ?= {
			add_cultural_tradition = cultural_influence_mild_penalty
		}

		scope:target_character = {
			banish_character = yes
		}
	}
}