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.9] 鞑靼税吏的抉择

时间范围:1337.1.1 - 1377.1.1(每月 10% 概率)

触发条件

  • 国家是莫斯科(MOS)或俄罗斯(RUS)。
  • 国家是国际组织“鞑靼之轭”(tatar_yoke)的成员,并在该组织中拥有“鞑靼税吏”(tatar_tax_collector)的特殊地位。
  • 当前统治者(ruler)的外交(dip)或行政(adm)能力至少有一项大于等于50。

关键效果

选项 A:必要的恶行,以确保我们的显赫地位。 (历史选项)

  • 对金帐汗国(GLH)的效果
    • 增加金帐汗国对我国的信任(添加信任修正 trust_efficient_tax_collector)。
    • 设置变量 kalita_the_tax_collector 的值为 0。
    • 静默触发事件 flavor_glh.2
  • 对国际组织“鞑靼之轭”的效果
    • 所有不拥有“鞑靼税吏”特殊地位且不是金帐汗国(GLH)的成员国,将对我国产生负面看法(添加观点修正 bleeding_us_dry)。

选项 B:他们已经承受了足够的苦难。

  • 对金帐汗国(GLH)的效果(根据条件触发)
    • 如果金帐汗国对我国有至少25点的间谍网络:
      • 设置变量 discovered_treachery 的值为 0。
      • 静默触发事件 flavor_glh.2
    • 否则,随机发生以下一种情况(各50%概率):
      1. 金帐汗国设置变量 discovered_treachery 为 0 并静默触发事件 flavor_glh.2
      2. 无额外效果(仅显示对应提示)。
  • 通用效果
    • 在金帐汗国(GLH)的首都引发敌对行动(添加敌对修正 antagonism_not_raising_taxes)。

背景介绍: 在蒙古金帐汗国统治罗斯诸公国时期,莫斯科公国逐渐崛起。作为“鞑靼之轭”体系下的税吏,莫斯科大公承担着为汗国征收贡赋的重任。这一角色既带来了压榨同胞的骂名,也赋予了莫斯科积累财富、扩大影响力的独特机会。本事件模拟了莫斯科统治者面对这一两难处境时的抉择:是高效履行税吏职责以取悦宗主并巩固自身地位,还是暗中减轻同胞负担以争取民心,但需承担被金帐汗国发现的风险。

完整事件代码

flavor_mos.9 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_mos.9.title
	desc = flavor_mos.9.desc
	image = "gfx/interface/illustrations/international_organization_types/tatar_yoke.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1337.1.1
		to = 1377.1.1
		monthly_chance = 10
	}

	trigger = {
		international_organization:tatar_yoke = {
			country_has_special_status = {
				type = special_status:tatar_tax_collector
				country = root
			}
		}
		ruler ?= {
			OR = {
				dip >= 50
				adm >= 50
			}
		}
	}

	immediate = {
		capital = {
			save_scope_as = target_location
		}
		ruler = {
			save_scope_as = target_character
		}
		root = { save_scope_as = target_root_country }
	}

	#A necessary evil to secure our prominence.
	option = {
		name = flavor_mos.9.a
		historical_option = yes
		c:GLH = {
			add_trust = {
				modifier = trust_efficient_tax_collector
				target = root
			}
			set_variable = {
				name = kalita_the_tax_collector
				value = 0
			}
			trigger_event_silently = flavor_glh.2
			custom_tooltip = flavor_mos.9.tt1
		}
		international_organization:tatar_yoke = {
			custom_tooltip = {
				text = flavor_mos.9.at
				every_international_organization_member = {
					limit = {
						NOT = {
							OR = {
								has_special_status_in_international_organization = {
									type = special_status:tatar_tax_collector
									international_organization = international_organization:tatar_yoke
								}
								tag = GLH
							}
						}
					}
					add_opinion = {
						target = root
						modifier = bleeding_us_dry
					}
				}
			}
		}
		ai_chance = {
			factor = 1
		}
	}

	#They endure enough hardship.
	option = {
		name = flavor_mos.9.b
		if = {
			limit = {
				c:GLH = {
					spy_network = {
						target = root
						value >= 25
					}
				}
			}
			c:GLH = {
				set_variable = {
					name = discovered_treachery
					value = 0
				}
				trigger_event_silently = flavor_glh.2
			}
			custom_tooltip = flavor_mos.9.tt2
		}
		else = {
			random_list = {
				50 = {
					c:GLH = {
						set_variable = {
							name = discovered_treachery
							value = 0
						}
						trigger_event_silently = flavor_glh.2
					}
					custom_tooltip = flavor_mos.9.tt3
				}
				50 = {
					custom_tooltip = flavor_mos.9.tt4
				}
			}
		}
		drop_antagonism_bomb = {
			target = c:GLH.capital
			modifier = antagonism_not_raising_taxes
		}
		ai_chance = {
			factor = 0.5
		}
	}
	historical_info = flavor_mos.9.historical_info
}