flavor_eng.238 不满的工厂工人
时间范围:1790.1.1 - 1820.1.1(每月 10% 概率)
触发条件:
- 国家为
ENG(英格兰)或GBR(大不列颠)。 - 在
great_britain_region(大不列颠地区)内,至少有5个地点满足以下所有条件:- 地点等级为
town(城镇)或city(城市)。 - 拥有
midgame_manufactory_building(中期工场建筑)。 - 所有者为触发事件的国家。
- 地点等级为
- 国家已采用
unregulated_conditions(无管制条件)政策。
关键效果:
- 选项 A (历史选项):
- 采用
trade_unions_prohibited(禁止工会)政策。 - 为
burghers_estate(市民阶层)和nobles_estate(贵族阶层)增加少量满意度。 - 在大不列颠地区内,随机选取最多10个符合条件的城镇或城市,将其中的
peasants(农民)人口转变为disgruntled_factory_workers(不满的工厂工人)叛军。 - 为国家添加名为
eng_disgruntled_factory_workers_rebellion(英格兰不满工厂工人叛乱)的修正,持续5年(可叠加延长)。
- 采用
- 选项 B:
- 采用
trade_unions_allowed(允许工会)政策。 - 为
burghers_estate(市民阶层)和nobles_estate(贵族阶层)减少少量满意度。 - 清除
disgruntled_factory_workers(不满的工厂工人)叛军。
- 采用
背景介绍: 在工业革命初期,英国工厂的工作环境恶劣,工时漫长且缺乏安全保障。随着工厂的扩张,工人群体逐渐形成,他们开始自发组织起来,争取改善工作条件和权益。这一事件反映了早期工人阶级意识的觉醒,以及他们与工厂主、政府之间日益紧张的关系。政府面临选择:是镇压工人的集体行动以维护现有秩序,还是承认并规范工会活动以缓和矛盾。
完整事件代码:
flavor_eng.238 = {
hide_portraits = yes
type = country_event
fire_only_once = yes
title = flavor_eng.238.title
desc = flavor_eng.238.desc
dynamic_historical_event = {
tag = ENG
tag = GBR
from = 1790.1.1
to = 1820.1.1
monthly_chance = 10
}
trigger = {
region:great_britain_region = {
any_location_in_region = {
count >= 5
OR = {
location_rank ?= location_rank:town
location_rank ?= location_rank:city
}
has_midgame_manufactory_building = yes
owner ?= root
}
}
has_policy = unregulated_conditions
}
illustration_tags = {
10 = angry
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
region:great_britain_region = {
random_location_in_region = {
limit = {
OR = {
location_rank = location_rank:town
location_rank = location_rank:city
}
has_midgame_manufactory_building = yes
owner ?= root
}
save_scope_as = target_location
}
}
set_variable = { name = trade_unions_law value = 1 }
create_rebel = {
category = estate
estate = peasants_estate
name = disgruntled_factory_workers
save_scope_as = disgruntled_factory_workers
}
}
option = {
name = flavor_eng.238.a
historical_option = yes
custom_tooltip = {
text = flavor_eng.238.custom
}
add_policy = policy:trade_unions_prohibited
add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_weak_bonus }
add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_weak_bonus }
custom_tooltip = {
text = flavor_eng.238.a.custom
region:great_britain_region = {
while = {
count >= 10
random_location_in_region = {
limit = {
OR = {
location_rank = location_rank:town
location_rank = location_rank:city
}
OR = {
has_midgame_manufactory_building = yes
has_institution = institution:industrialization
}
owner ?= root
}
every_pop = {
limit = {
pop_type = pop_type:peasants
}
change_pop_allegiance = scope:disgruntled_factory_workers
}
}
}
}
}
add_country_modifier = {
modifier = eng_disgruntled_factory_workers_rebellion
years = 5
mode = add_and_extend
}
}
option = {
name = flavor_eng.238.b
custom_tooltip = {
text = flavor_eng.238.custom
}
add_policy = policy:trade_unions_allowed
add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_weak_penalty }
add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_weak_penalty }
destroy_rebel = scope:disgruntled_factory_workers
}
historical_info = flavor_eng.238.historical_info
}