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_eng.75 牛津大学骚乱

时间范围

1350.1.1 - 1370.1.1

  • 触发概率:每月 1% 概率

触发条件

  • 省份 oxford 必须拥有至少一级的大学建筑。
  • 省份 oxford 中至少存在一个人口,其满意度小于等于 0.5。

关键效果

选项 A:flavor_eng.75.a (历史选项)

  • oxford 省份:
    • 将控制度改变为 control_mild_bonus
    • 所有属于本国且类型为 pop_type:peasants 的人口,其满意度增加 pop_satisfaction_ultimate_penalty

选项 B:flavor_eng.75.b

  • oxford 省份:
    • 繁荣度改变 prosperity_weak_penalty
    • 随机选择一个类型为 pop_type:peasants 的人口,其人口规模减少 1%。

背景介绍

该事件描绘了14世纪中叶英格兰牛津大学可能发生的骚乱。作为欧洲最古老的学术中心之一,牛津大学在此时已颇具规模,但其周边社区与大学师生之间,或因资源、权利、社会地位等问题,长期存在紧张关系。当大学建筑存在且当地居民(特别是农民阶层)普遍不满时,这种矛盾可能激化,引发社会动荡,迫使统治者在安抚民众与维持秩序之间做出抉择。

完整事件代码

flavor_eng.75 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.75.title
	desc = flavor_eng.75.desc

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1350.1.1
		to = 1370.1.1
		monthly_chance = 1
	}

	trigger = {
		location:oxford = {
			has_building_with_at_least_one_level = university
			any_pop = { pop_satisfaction <= 0.5 }
		}
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		location:oxford = {
			save_scope_as = target_location
		}

	}

	option = {
		name = flavor_eng.75.a
		historical_option = yes

		location:oxford = {
			change_control = control_mild_bonus

			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:peasants
				}
				add_pop_satisfaction = pop_satisfaction_ultimate_penalty
			}
		}

	}

	option = {
		name = flavor_eng.75.b

		location:oxford = {
			change_prosperity = prosperity_weak_penalty

			random_pop = {
				limit = { pop_type = pop_type:peasants }
				add_pop_size = {
					value = pop_size
					multiply = -0.01
				}
			}
		}

	}

	historical_info = flavor_eng.75.historical_info

}