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.1001 斯坎德培登场

时间范围:无明确 fromto 日期限制,事件通过 major_trigger 条件触发,无 monthly_chance 概率。

触发条件

  • 事件为 major 事件,其 major_trigger 条件为:this = scope:target_country2。这意味着事件在满足特定游戏逻辑(通常与 target_country2 这个作用域国家相关)时才会被标记为重大事件并可能触发。

关键效果

  • 选项 A (flavor_tur.1001.a)
    1. 将创建的人物 target_character2(斯坎德培)移动到 target_country2 国家。
    2. target_country2 国家互相添加 tur_gave_hostages 意见修正。
    3. 在4年后,静默触发事件 flavor_tur.1002
  • 选项 B (flavor_tur.1001.b)
    1. target_country2 国家互相添加 tur_rejected_giving_hostage 意见修正。
    2. 将创建的人物 target_character2(斯坎德培)移动到事件所属国(root)。

背景介绍: 该事件模拟了15世纪阿尔巴尼亚民族英雄乔治·卡斯特里奥蒂(斯坎德培)的登场。斯坎德培出身于阿尔巴尼亚贵族家庭,幼年时曾被送至奥斯曼帝国宫廷作为人质,并在那里接受军事训练,后成为奥斯曼帝国的一名军官。然而,他最终选择反抗奥斯曼统治,回到阿尔巴尼亚领导了长期而卓有成效的抵抗运动,成为抵御奥斯曼扩张的关键人物和阿尔巴尼亚的民族象征。此事件处理了奥斯曼帝国如何处置这位未来英雄的抉择。

完整事件代码

flavor_tur.1001 = {
	type = country_event
	title = flavor_tur.1001.title
	desc = flavor_tur.1001.desc
	major = yes
	major_trigger = {
		this = scope:target_country2
	}

	immediate = {
		location:elbasan = {
			create_dynasty_from_location = kastrioti_dynasty
		}
		create_character = {
			first_name = name_george
			nickname = nick_skanderbeg
			dynasty = dynasty:kastrioti_dynasty
			adm = {
				60
				90
			}
			dip = {
				60
				80
			}
			mil = {
				80
				100
			}
			culture = culture:albanian
			religion = religion:orthodox
			estate = estate_type:nobles_estate
			birth_location = location:elbasan
			birth_date = 1400.6.3
			save_scope_as = target_character2
			script = skanderbeg_kastrioti
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_tur.1001.a

		scope:target_character2 = {
			move_country = scope:target_country2
		}

		add_opinion_mutual_effect = {
			modifier = tur_gave_hostages
			target = scope:target_country2
		}

		trigger_event_silently = {
			id = flavor_tur.1002
			years = 4
		}
	}

	option = {
		name = flavor_tur.1001.b

		add_opinion_mutual_effect = {
			modifier = tur_rejected_giving_hostage
			target = scope:target_country2
		}
		scope:target_character2 = { move_country = root }
	}
}