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.63 莫斯科的新圣女修道院

时间范围

1525.1.1 - 1625.1.1,每月有 1% 的概率触发。

触发条件

  • 事件所属国家(root)必须同时拥有并控制其首都省份 moscow
  • 事件所属国家必须完全拥有 smolensk_area 地区。
  • 事件所属国家当前不能处于战争状态。
  • 事件所属国家的宗教影响力(religious_influence)必须大于等于 10

关键效果

选项 A:flavor_mos.63.a (历史选项)

  • 设置国家变量 novodevichy_convent 的值为 1
  • 在首都省份 moscow 建造建筑 novodevichy_convent(新圣女修道院)。
  • AI 选择此选项的概率因子为 1

选项 B:flavor_mos.63.b

  • 为国家增加 prestige_mild_bonus 数量的威望。
  • AI 选择此选项的概率因子为 0.5

选项 C:flavor_mos.63.c

  • 减少国家金钱(具体数值由 change_gold_effectscale = -1 决定)。
  • 使国家的社会价值观在 精神主义 vs 人文主义 轴上向右移动(即偏向人文主义)。
  • AI 选择此选项的概率因子为 0.5

背景介绍

该事件模拟了莫斯科公国在16至17世纪巩固其领土与宗教影响力的历史进程。新圣女修道院是莫斯科一座著名的东正教女修道院,其建造与当时莫斯科大公国在收复斯摩棱斯克地区后,致力于提升国家威望和宗教地位的努力密切相关。事件反映了统治者如何在和平时期利用宗教建筑来强化国家认同与精神统治。

完整事件代码

flavor_mos.63 = {
	type = country_event
	fire_only_once = yes
	title = flavor_mos.63.title
	desc = flavor_mos.63.desc

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1525.1.1
		to = 1625.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {

		location:moscow = {
			owner = root
			controller = root
			is_capital = yes
		}

		own_entire_area = area:smolensk_area

		at_war = no

		religious_influence >= 10

	}

	immediate = {

		location:moscow = {
			save_scope_as = target_location
		}

		root = { save_scope_as = target_root_country }

		event_illustration_estate_effect = { foreground = estate_type:clergy_estate	background = estate_type:clergy_estate }
	}

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

		set_variable = {
			name = novodevichy_convent
			value = 1
		}

		location:moscow = {
			construct_building = {
				building_type = building_type:novodevichy_convent
			}
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.63.b

		add_prestige = prestige_mild_bonus

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_mos.63.c

		change_gold_effect = { scale = -1 }

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_right
		}

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.63.historical_info

}