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_rus.7 莫斯科大劫掠

时间范围:1540.1.1 - 1560.1.1(每月 10% 概率触发)

触发条件

  • 玩家国家(root)拥有莫斯科地区(location:moscow)。
  • 莫斯科地区当前的控制者(controller)不是玩家国家(root)。
  • 莫斯科地区当前的控制者不是叛军(c:REB)。

关键效果

  • 选项 A (历史选项)
    • 对莫斯科的劫掠者(scope:moscow_sacker)添加观点修正 rus_sacked_moscow
    • 减少国家黄金储备(change_gold_effect = { scale = -3 })。
    • 在莫斯科地区,为所有属于玩家(owner = root)的人口(pop)添加满意度修正 pop_satisfaction_ultimate_bonus
    • 改变社会价值观:好战性 vs 和解性(belligerent_vs_conciliatory)向“右”(societal_value_move_to_right)移动。
  • 选项 B
    • 在莫斯科地区,为所有属于玩家(owner = root)的人口(pop)添加满意度修正 pop_satisfaction_ultimate_penalty
    • 改变社会价值观:好战性 vs 和解性(belligerent_vs_conciliatory)向“左”(societal_value_move_to_left)移动。
    • 改变社会价值观:中央集权 vs 地方分权(centralization_vs_decentralization)向“左”(societal_value_move_to_left)移动。

背景介绍: 此事件模拟了16世纪中叶莫斯科公国可能遭遇的一次重大危机——首都莫斯科被外部势力攻陷并劫掠。尽管玩家国家名义上拥有该地,但实际控制权已落入敌手。这迫使统治者必须在耻辱性的妥协与代价高昂的强硬立场之间做出抉择,其决定将深刻影响民众情绪与国家的发展方向。

完整事件代码

flavor_rus.7 = { #DEVASTATION
	type = country_event
	title = flavor_rus.7.title
	desc = flavor_rus.7.desc
	image = "gfx/interface/illustrations/situation/black_death.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1540.1.1
		to = 1560.1.1
		monthly_chance = 10
	}

	trigger = {
		location:moscow = {
			owner = root
			controller != root
			controller != c:REB
		}
	}

	immediate = {
		location:moscow = {
			controller = {
				save_scope_as = moscow_sacker
			}
			save_scope_as = target_location
		}
	}


	option = {
		name = flavor_rus.7.a
		historical_option = yes

		add_opinion = { target = scope:moscow_sacker  modifier = rus_sacked_moscow }

		change_gold_effect = { scale = -3 }

		location:moscow = {
			every_pop = {
				limit = {
					owner = root
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_bonus
			}
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_right }
	}

	option = {
		name = flavor_rus.7.b

		location:moscow = {
			every_pop = {
				limit = {
					owner = root
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_penalty
			}
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_left }
		change_societal_value = { type = centralization_vs_decentralization	value = societal_value_move_to_left	}
	}

	historical_info = flavor_rus.7.historical_info

}