flavor_rus.55 贵族女子学院
时间范围:1750.1.1 - 1800.1.1,每月 5% 概率触发
触发条件:
- 人物
rus_ivan_betskoy必须存活、在政府内阁中,且未拥有barred_from_educational_ministry特质。 - 满足以下任一条件:
neva地区由玩家控制,其地点等级为town或city,且拥有enlightenment思潮。- 首都由玩家控制,且拥有
enlightenment思潮。
- 国家未采用
education_of_the_people政策。
关键效果:
-
选项 A (历史选项):
- 触发条件:
neva地区由玩家控制,其地点等级为town或city,且拥有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
}