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.232 亚伯拉罕·达比与焦炭冶炼

时间范围

1709.1.1 - 1738.1.1,每月 5% 概率触发。

触发条件

  • 地区控制:在 great_britain_region 地区,至少有 3 个地点同时满足以下条件:
    • 所有者为触发国。
    • 拥有至少 1iron_foundry(铁工厂)建筑。
  • 社会价值观societal_value:traditionalist_vs_innovative(传统主义 vs 创新)的值 ≥ 20

关键效果

选项 A(历史选项)

  • historical_option = yes
  • 设置变量 unlocked_advance_coke_smelting1
  • 设置变量 the_iron_bridge1
  • 显示自定义提示 enable_coke_smelting_advance
  • location:shrewsbury.market(什鲁斯伯里市场)添加一个永久性临时需求 demand:coke_smelting(焦炭冶炼需求)。
  • 显示自定义提示 flavor_eng.232.tt1flavor_eng.232.tt2

选项 B

  • 增加 少量威望prestige_mild_bonus)。
  • 显示自定义提示 flavor_eng.232.tt1

事件背景

此事件模拟了工业革命早期的重要人物——亚伯拉罕·达比的登场。达比在1709年成功使用焦炭替代木炭进行生铁冶炼,这一技术革新极大地提高了铁产量,降低了成本,为英国的工业发展奠定了关键基础。事件发生的时间窗口(1709-1738年)正值这项技术从发明到初步推广的时期,其触发条件反映了英国本土具备一定工业基础(多个铁工厂)和社会氛围倾向于创新的环境。

完整事件代码

flavor_eng.232 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.232.title
	desc = flavor_eng.232.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1709.1.1
		to = 1738.1.1
		monthly_chance = 5
	}

	trigger = {

		region:great_britain_region = {
			any_location_in_region = {
				count >= 3
				owner ?= root
				has_building_with_at_least_one_level = iron_foundry
			}
		}

		societal_value:traditionalist_vs_innovative >= 20

	}
	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_coal.dds"
	immediate = {

		create_character = {
			first_name = name_abraham
			last_name = Darby
			adm = 28
			dip = 25
			mil = 25
			birth_location = location:worcester
			birth_date = 1678.1.1
			estate = estate_type:peasants_estate
			script = eng_abraham_darby
			save_scope_as = abraham_darby
			add_trait = trait:unsuited_for_naval_command
			add_trait = trait:unsuited_for_army_command
		}

		capital = { save_scope_as = target_location }

	}

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

		set_variable = { name = unlocked_advance_coke_smelting value = 1 }

		set_variable = { name = the_iron_bridge value = 1 }

		custom_tooltip = enable_coke_smelting_advance

		location:shrewsbury.market = {
			add_temporary_demand = {
				type = demand:coke_smelting
				months = -1
			}
		}

		custom_tooltip = flavor_eng.232.tt1
		custom_tooltip = flavor_eng.232.tt2

	}

	option = {
		name = flavor_eng.232.b

		add_prestige = prestige_mild_bonus

		custom_tooltip = flavor_eng.232.tt1

	}

	historical_info = flavor_eng.232.historical_info

}