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_mos.3 莫斯科公国的崛起

时间范围:1353.1.1 - 1373.1.1 (每月 5% 概率触发)

触发条件

  • 国家 LIT(立陶宛)和 GLH(金帐汗国)必须存在。
  • 国家 LIT(立陶宛):
    • 不是附庸国。
    • 其大国分数高于触发此事件的国家(即 MOSRUS)。
  • 国家 GLH(金帐汗国):
    • 其大国分数高于触发此事件的国家(即 MOSRUS)。
    • 满足以下任一条件:
      • 稳定度 ≤ 25。
      • 处于内战状态。
  • 触发此事件的国家(即 MOSRUS)满足以下任一条件:
    • GLH(金帐汗国)的附庸。
    • 是国际组织 tatar_yoke(鞑靼枷锁)的成员。
  • 触发此事件的国家(即 MOSRUS)当前未处于战争状态。

关键效果

  • 选项 A (flavor_mos.3.a) - 历史选项
    • GLH(金帐汗国)对触发国增加 opinion_benevolent_overlord 好感度修正。
    • LIT(立陶宛)对触发国增加 trust_mongol_allegiance 信任度修正。
    • 触发国获得 government_power_mild_bonus 政府点数。
    • 显示自定义提示 flavor_mos.3.tt1
    • AI 选择权重因子:1。
  • 选项 B (flavor_mos.3.b)
    • LIT(立陶宛)对触发国增加 opinion_benevolent_overlord 好感度修正。
    • GLH(金帐汗国)对触发国增加 trust_slavic_allegiance 信任度修正。
    • 触发国获得 prestige_mild_bonus 威望。
    • 显示自定义提示 flavor_mos.3.tt2
    • AI 选择权重因子:0.5。
  • 选项 C (flavor_mos.3.c)
    • LIT(立陶宛)对触发国增加 trust_asserting_independence 信任度修正。
    • GLH(金帐汗国)对触发国增加 trust_asserting_independence 信任度修正。
    • 触发国获得“趋向孤立主义”的推动效果。
    • AI 选择权重因子:0.5。

背景介绍: 在14世纪中叶,莫斯科公国(或罗斯诸国)在金帐汗国的统治和立陶宛大公国的扩张之间寻求生存与发展空间。这一时期,金帐汗国内部可能出现动荡,而立陶宛则日益强大。此事件模拟了莫斯科公国(或罗斯)在这一关键历史窗口期,如何利用周边强权的相对变化,通过外交或独立姿态来巩固自身地位、争取盟友或摆脱束缚,为其未来的崛起奠定基础。

完整事件代码

flavor_mos.3 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_mos.3.title
	desc = flavor_mos.3.desc
	image = "gfx/interface/illustrations/government/diplomacy_illustration.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1353.1.1
		to = 1373.1.1
		monthly_chance = 5
	}

	trigger = {

		country_exists = c:LIT
		country_exists = c:GLH

		c:LIT = {
			is_subject = no
			great_power_score > root.great_power_score
		}

		c:GLH = {
			great_power_score > root.great_power_score
			OR = {
				stability <= 25
				in_civil_war = yes
			}
		}

		OR = {
			is_subject_of = c:GLH
			is_member_of_international_organization = international_organization:tatar_yoke
		}

		at_war = no

	}

	immediate = {

		c:GLH = {
			ruler ?= {
				save_scope_as = target_character
			}
			capital = {
				save_scope_as = target_location
			}
		}

		root = { save_scope_as = target_root_country }

	}

	option = {
		name = flavor_mos.3.a
		historical_option = yes

		c:GLH = {
			add_opinion = {
				target = root
				modifier = opinion_benevolent_overlord
			}
		}

		c:LIT = {
			add_trust = {
				target = root
				modifier = trust_mongol_allegiance
			}
		}

		add_government_power = government_power_mild_bonus

		custom_tooltip = flavor_mos.3.tt1

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.3.b

		c:LIT = {
			add_opinion = {
				target = root
				modifier = opinion_benevolent_overlord
			}
		}

		c:GLH = {
			add_trust = {
				target = root
				modifier = trust_slavic_allegiance
			}
		}

		add_prestige = prestige_mild_bonus

		custom_tooltip = flavor_mos.3.tt2

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_mos.3.c

		c:LIT = {
			add_trust = {
				target = root
				modifier = trust_asserting_independence
			}
		}

		c:GLH = {
			add_trust = {
				target = root
				modifier = trust_asserting_independence
			}
		}

		nudge_towards_isolationism = yes

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.3.historical_info

}