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_lit.15 立陶宛的东正教联盟提议

时间范围

1340年1月1日 - 1360年1月1日,每月有 1% 的概率触发。

触发条件

  • 事件国家 未处于战争状态
  • 事件国家 不是附庸国
  • 事件国家 未处于破产状态
  • 国家 莫斯科 (c:MOS) 必须存在。
  • 东正教 (orthodox) 宗教组中,存在至少一个满足以下所有条件的国家:
    • 不是莫斯科 (c:MOS)。
    • 不是附庸国。
    • 俄罗斯地区 (region:russian_region) 有存在感。
    • 与莫斯科 没有 同盟关系。
    • 国家类型不是 popbuilding

关键效果

事件提供了三个选项,其中第一个为历史选项。

选项 A (flavor_lit.15.a)

  • 历史选项:是。
  • 触发前提:必须存在三个符合条件的东正教国家(target_country1, target_country2, target_country3)。
  • 效果
    1. 事件国家损失一笔金币,金额为这三个目标国家月收入总和的 5倍
    2. 分别对这三个目标国家非静默触发事件 flavor_lit.16

选项 B (flavor_lit.15.b)

  • 效果
    1. 事件国家损失一笔金币,金额为目标国家1 (target_country1) 月收入的 5倍
    2. 对目标国家1 (target_country1) 非静默触发事件 flavor_lit.16

选项 C (flavor_lit.15.c)

  • 效果
    1. 如果事件国家的宗教 不属于基督教组,则显示一个关于外交孤立的自定义提示。
    2. 事件国家获得一个 极端的政府权力惩罚 (government_power_extreme_penalty)。

背景介绍

在14世纪中叶,立陶宛大公国正处于扩张和巩固的关键时期。作为欧洲最后一个皈依基督教的主要异教国家,立陶宛与东方的东正教罗斯诸公国关系复杂。此事件模拟了立陶宛统治者可能面临的外交抉择:是尝试与罗斯地区强大的东正教邻国(如特维尔、梁赞、下诺夫哥罗德等)建立联系或达成某种协议,以换取边境稳定或影响力,还是选择更为孤立或谨慎的路径。历史选项(选项A)可能指向立陶宛大公阿尔吉尔达斯时期与特维尔等公国的互动,这些互动旨在对抗莫斯科公国日益增长的影响力。

完整事件代码

flavor_lit.15 = {
	hide_portraits = yes
	type = country_event

	title = flavor_lit.15.title
	desc = flavor_lit.15.desc
	historical_info = flavor_lit.15.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = LIT
		from = 1340.1.1
		to = 1360.1.1
		monthly_chance = 1
	}

	trigger = {
		at_war = no
		is_subject = no
		is_during_bankruptcy = no
		country_exists = c:MOS
		religion:orthodox = {
			any_country_in_religion = {
				NOT = { this = c:MOS }
				is_subject = no
				has_presence_in = region:russian_region
				NOT = {
					has_mutual_scripted_relation = {
						type = relation_type:alliance
						target = c:MOS
					}
				}
				NOT = { country_type = pop }
				NOT = { country_type = building }
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = target_country
		ruler_or_regent = { save_scope_as = target_character }
		religion:orthodox = {
			ordered_country_in_religion = {
				limit = {
					NOT = { this = c:MOS }
					is_subject = no
					has_presence_in = region:russian_region
				}
				order_by = total_population
				position = 1
				check_range_bounds = no
				save_scope_as = target_country1
				ruler_or_regent = { save_scope_as = target_character1 }
			}
			ordered_country_in_religion = {
				limit = {
					NOT = { this = c:MOS }
					is_subject = no
					has_presence_in = region:russian_region
				}
				order_by = total_population
				position = 2
				check_range_bounds = no
				save_scope_as = target_country2
				ruler_or_regent = { save_scope_as = target_character2 }
			}
			ordered_country_in_religion = {
				limit = {
					NOT = { this = c:MOS }
					is_subject = no
					has_presence_in = region:russian_region
				}
				order_by = total_population
				position = 3
				check_range_bounds = no
				save_scope_as = target_country3
				ruler_or_regent = { save_scope_as = target_character3 }
			}
		}
	}

	option = {
		name = flavor_lit.15.a

		historical_option = yes

		trigger = {
			exists = scope:target_country1
			exists = scope:target_country2
			exists = scope:target_country3
		}

		add_gold = {
			value = {
				add = scope:target_country1.monthly_income_total
				add = scope:target_country2.monthly_income_total
				add = scope:target_country3.monthly_income_total
			}
			multiply = -5
		}
		scope:target_country1 = { trigger_event_non_silently = flavor_lit.16 }
		scope:target_country2 = { trigger_event_non_silently = flavor_lit.16 }
		scope:target_country3 = { trigger_event_non_silently = flavor_lit.16 }
	}

	option = {
		name = flavor_lit.15.b

		add_gold = {
			value = scope:target_country1.monthly_income_total
			multiply = -5
		}

		scope:target_country1 = { trigger_event_non_silently = flavor_lit.16 }
	}

	option = {
		name = flavor_lit.15.c

		if = {
			limit = {
				NOT = { religion.group = religion_group:christian }
			}
			custom_tooltip = diplomatic_isolation_tt
		}
		add_government_power = government_power_extreme_penalty
	}
}