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.204 黄金铺路

时间范围:1700.1.1 - 1800.1.1(每月 1% 概率)

触发条件

  • 首都所在区域 (capital.area) 中,至少有一个地点 (any_location_in_area) 满足条件 location_paved_with_gold_trigger = yes

关键效果

  • 选项 A (flavor_eng.204.a):鼓励谣言

    • 在目标地点 (scope:target_location) 添加名为 eng_paved_with_gold_rumor 的地点修正,持续 20 年,模式为叠加与延长 (mode = add_and_extend)。
  • 选项 B (flavor_eng.204.b):让农奴留在田地里

    • 改变社会价值观 (change_societal_value):
      • 类型:serfdom_vs_free_subjects(农奴制 vs 自由民)
      • 方向:向左移动 (societal_value_move_to_left),即加强农奴制倾向。
  • 选项 C (flavor_eng.204.c):真的用黄金铺路

    • 改变社会价值观 (change_societal_value):
      • 类型:serfdom_vs_free_subjects(农奴制 vs 自由民)
      • 方向:向右移动 (societal_value_move_to_right),即加强自由民倾向。
    • 在目标地点 (scope:target_location) 执行:
      • 其所属市场 (market) 添加临时需求 (add_temporary_demand):
        • 类型:demand:eng_paved_with_gold
        • 持续时间:240 个月。
      • 添加名为 eng_paved_with_gold_actually 的地点修正,持续 10 年,模式为叠加与延长 (mode = add_and_extend)。

背景介绍: 在18世纪,关于某些地区“街道铺满黄金”的传说或夸张描述开始流传,这通常象征着极度的财富与繁荣。此类谣言可能源于对遥远富庶之地的想象、对贵金属产区的夸大,或是社会对财富积累的集体幻想。对于英格兰(或大不列颠)的统治者而言,如何处理这种传闻成为一个问题:是放任谣言以刺激人们的向往与经济活动,还是压制它以维持稳定的社会秩序,抑或是投入巨大资源去创造一个象征性的“黄金之城”以彰显国力?这一事件反映了启蒙时代人们对财富、社会流动性以及国家形象塑造的复杂态度。

完整事件代码

flavor_eng.204 = {
	type = country_event

	title = flavor_eng.204.title
	desc = flavor_eng.204.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1700.1.1
		to = 1800.1.1
		monthly_chance = 1
	}

	trigger = {
		capital.area = {
			any_location_in_area = { location_paved_with_gold_trigger = yes }
		}
	}
	
	illustration_tags = {
		10 = happy
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		capital.area = { 
			ordered_location_in_area = {
				limit = { location_paved_with_gold_trigger = yes }
				max = 1
				order_by = {
					value = population
					multiply = development
				}
				save_scope_as = target_location
			}
		}
	}

	# encourage the rumors
	option = {
		name = flavor_eng.204.a
		scope:target_location = {
			add_location_modifier = {
				modifier = eng_paved_with_gold_rumor
				years = 20
				mode = add_and_extend
			}
		}
	}

	# keep the serfs to their fields
	option = {
		name = flavor_eng.204.b
		change_societal_value = {
			type = serfdom_vs_free_subjects
			value = societal_value_move_to_left
		}
	}

	# actually pave the streets with gold
	option = {
		name = flavor_eng.204.c
		change_societal_value = {
			type = serfdom_vs_free_subjects
			value = societal_value_move_to_right
		}
		scope:target_location = {
			market = {
				add_temporary_demand = {
					type = demand:eng_paved_with_gold
					months = 240
				}
			}

			add_location_modifier = {
				modifier = eng_paved_with_gold_actually
				years = 10
				mode = add_and_extend
			}
		}
	}
}