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.210] 伦敦霜冻集市

时间范围

1680.1.1 - 1690.1.1,在此期间,每月有 10% 的概率触发此事件。

触发条件

  • 国家为 英格兰(ENG)大不列颠(GBR)
  • 当前月份为 1月、2月、3月11月、12月(即 current_month < 4current_month > 10)。
  • 伦敦地区(location:london)的 所有者控制者 均为本国(root)。

关键效果

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

  • 财政:损失相当于 3 个月收入的黄金。
  • 经济:在伦敦市场(scope:target_location.market)添加一个持续 12 个月的临时需求 demand:frost_fair(霜冻集市)。
  • 阶层满意度
    • 农民阶层(estate_type:peasants_estate)获得 estate_satisfaction_weak_bonus(小幅满意度提升)。
    • 市民阶层(estate_type:burghers_estate)获得 estate_satisfaction_weak_bonus(小幅满意度提升)。
  • 文化:主流文化获得 cultural_tradition_mild_bonus(温和的文化传统增益)。

选项 B:flavor_eng.210.b

  • 威望:获得 prestige_mild_bonus(温和的威望增益)。

背景介绍

在17世纪末的“小冰期”,泰晤士河在严冬时节会完全封冻。伦敦市民借此机会在冰面上举办盛大的“霜冻集市”(Frost Fair),设有摊位、娱乐活动和临时酒馆,成为当时独特的社会与经济现象。此事件反映了极端气候对城市生活、商业活动及社会各阶层的影响。

完整事件代码

flavor_eng.210 = {
	type = country_event

	title = flavor_eng.210.title
	desc = flavor_eng.210.desc
	historical_info = flavor_eng.210.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1680.1.1
		to = 1690.1.1
		monthly_chance = 10
	}

	trigger = {

		OR = {
			current_month < 4
			current_month > 10
		}

		location:london = {
			owner = root
			controller = root
		}

	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		location:london = { save_scope_as = target_location }

	}

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

		change_gold_effect = { scale = -3 }

		scope:target_location.market = {
			add_temporary_demand = {
				type = demand:frost_fair
				months = 12
			}
		}

		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_weak_bonus }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_weak_bonus }

		culture = {
			add_cultural_tradition = cultural_tradition_mild_bonus
		}

	}

	option = {
		name = flavor_eng.210.b

		add_prestige = prestige_mild_bonus

	}

}