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.55 贵族女子学院

时间范围:1750.1.1 - 1800.1.1,每月 5% 概率触发

触发条件

  • 人物 rus_ivan_betskoy 必须存活、在政府内阁中,且未拥有 barred_from_educational_ministry 特质。
  • 满足以下任一条件:
    1. neva 地区由玩家控制,其地点等级为 towncity,且拥有 enlightenment 思潮。
    2. 首都由玩家控制,且拥有 enlightenment 思潮。
  • 国家未采用 education_of_the_people 政策。

关键效果

  • 选项 A (历史选项)

    • 触发条件:neva 地区由玩家控制,其地点等级为 towncity,且拥有 enlightenment 思潮。
    • 设置变量 institute_of_noble_maidens 为 1。
    • neva 地区建造 institute_of_noble_maidens 建筑。
    • neva 地区的市场添加为期 24 个月的 rus_printed_charters 临时需求。
    • AI 选择权重因子:1。
  • 选项 B

    • 触发条件:首都(非 neva 地区)由玩家控制,且拥有 enlightenment 思潮。
    • 设置变量 institute_of_noble_maidens 为 1。
    • 在首都建造 institute_of_noble_maidens 建筑。
    • 在首都的市场添加为期 24 个月的 rus_printed_charters 临时需求。
    • AI 选择权重因子:0.5。
  • 选项 C

    • 触发条件:moscow 地区拥有 novodevichy_convent 建筑,且由玩家控制。
    • 将社会价值观 individualism_vs_communalism 向右移动。
    • 将社会价值观 aristocracy_vs_plutocracy 向右移动。
    • clergy_estate 阶层增加大量满意度。
    • AI 选择权重因子:0.5。
  • 选项 D

    • 将社会价值观 individualism_vs_communalism 向左移动。
    • nobles_estate 阶层增加大量满意度。
    • AI 选择权重因子:0.5。

背景介绍: 该事件反映了18世纪下半叶俄罗斯帝国在启蒙运动影响下,关于女性教育与贵族角色定位的讨论。以伊万·别茨科伊为代表的改革派试图建立贵族女子学院,提升女性教育水平,这既是启蒙思想的实践,也触及了传统社会结构与价值观的调整。事件的不同选项代表了改革的不同路径与阻力。

完整事件代码

flavor_rus.55 = {
	type = country_event
	title = flavor_rus.55.title
	desc = flavor_rus.55.desc
	image = "gfx/interface/illustrations/institutions/enlightenment.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1750.1.1
		to = 1800.1.1
		monthly_chance = 5
	}

	trigger = {

		character:rus_ivan_betskoy ?= {
			is_alive = yes
			in_cabinet = yes
			NOT = { has_character_modifier = barred_from_educational_ministry }
		}

		OR = {
			location:neva = {
				owner = root
				controller = root
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
				has_institution = institution:enlightenment
			}
			capital = {
				has_institution = institution:enlightenment
				controller = root
			}
		}

		NOT = {
			has_policy = education_of_the_people
		}
	}


	immediate = {

		character:rus_ivan_betskoy ?= {
			save_scope_as = ivan_betskoy
		}

		capital = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_rus.55.a
		trigger = {
			location:neva = {
				owner = root
				controller = root
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
				has_institution = institution:enlightenment
			}
		}
		historical_option = yes

		set_variable = {
			name = institute_of_noble_maidens
			value = 1
		}

		location:neva = {
			construct_building = {
				building_type = building_type:institute_of_noble_maidens
			}
			market = {
				add_temporary_demand = {
					type = demand:rus_printed_charters
					months = 24
				}
			}
		}

		custom_tooltip = flavor_rus.55.tt1

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_rus.55.b
		trigger = {
			capital = {
				NOT = { this = location:neva }
				has_institution = institution:enlightenment
				controller = root
			}
		}

		set_variable = {
			name = institute_of_noble_maidens
			value = 1
		}

		capital = {
			construct_building = {
				building_type = building_type:institute_of_noble_maidens
			}
			market = {
				add_temporary_demand = {
					type = demand:rus_printed_charters
					months = 24
				}
			}
		}

		custom_tooltip = flavor_rus.55.tt1

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_rus.55.c
		trigger = {
			location:moscow = {
				has_building = building_type:novodevichy_convent
				owner = root
				controller = root
			}
		}

		change_societal_value = {
			type = individualism_vs_communalism
			value = societal_value_move_to_right
		}

		change_societal_value = {
			type = aristocracy_vs_plutocracy
			value = societal_value_move_to_right
		}

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_bonus
		}

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_rus.55.d

		change_societal_value = {
			type = individualism_vs_communalism
			value = societal_value_move_to_left
		}

		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_bonus
		}

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_rus.55.historical_info

}