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_byz.1401 拜占庭请求士兵

时间范围
1444.1.1-1820.12.31(无明确 fromto 字段,此为默认游戏时间范围),无 monthly_chance 字段,为一次性触发事件。

触发条件
无明确 trigger 字段,此事件通常由其他事件或脚本调用触发。

关键效果

  • 选项 A (flavor_byz.1401.a)

    • 目标国家(scope:target_country2)向事件发起国(scope:target_country)转移1点年度黄金收入。
    • 从事件发起国首都向目标地点(scope:target_location)迁移5%的农民人口(文化同事件发起国),迁移持续80个月。
    • 瓦兰吉角色(scope:varangian_character)移动至目标国家(scope:target_country2)。
    • 目标国家(scope:target_country2)在1天后静默触发事件 flavor_byz.1402
  • 选项 B (flavor_byz.1401.b)

    • 目标国家(scope:target_country2)在1天后静默触发事件 flavor_byz.1403

背景介绍
拜占庭帝国在面临军事压力或扩张需求时,可能向其他国家或盟友请求士兵支援。此事件模拟了拜占庭通过外交途径获取军事人力资源的过程,可能涉及资金补偿、人口迁移以及著名的瓦兰吉卫队成员的调动,是帝国维系其防务与对外影响力的典型外交互动。

完整事件代码

flavor_byz.1401 = { #Byzantium requests soldiers
	type = country_event
	title = flavor_byz.1401.title
	desc = flavor_byz.1401.desc

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		capital = {
			save_scope_as = target_location2
		}
	}

	option = {
		name = flavor_byz.1401.a

		scope:target_country2 = {
			transfer_yearly_gold = {
				value = 1
				target = scope:target_country
			}
		}

		add_migration = {
			owner = this
			from = root.capital.province_definition
			to = scope:target_location.province_definition
			culture = root.culture
			amount = 0.05
			months = 80
			type = pop_type:peasants
		}

		scope:varangian_character = {
			move_country = scope:target_country2
		}

		scope:target_country2 = {
			trigger_event_silently = { id = flavor_byz.1402 days = 1 }
		}
	}

	option = {
		name = flavor_byz.1401.b

		scope:target_country2 = {
			trigger_event_silently = { id = flavor_byz.1403 days = 1 }
		}
	}
}