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_ser.120 莱采发现金矿

时间范围:1337.1.1 - 1387.1.1(每月 10% 概率)

触发条件

  • 国家拥有莱采(location:glubocica)地区。

关键效果

  • 选项 A (历史选项)
    • 国家黄金储量增加(change_gold_effect = { scale = -5.00 })。
    • 引发两次人口迁移:
      1. 从布迪姆利亚(location:budimlja)迁移 10% 的德裔特兰西瓦尼亚(culture:german_transylvanian)天主教(religion:catholic)农民(pop_type:peasants)至莱采,迁移过程持续 5 个月。
      2. 从新布尔多(location:novo_brdo)迁移 6% 的德裔特兰西瓦尼亚天主教农民至莱采,迁移过程持续 5 个月。
    • 将莱采(location:glubocica)的原材料产出改为黄金(goods:goods_gold)。
  • 选项 B
    • 社会价值观向“资本经济”方向偏移(change_societal_value = { type = capital_economy_vs_traditional_economy value = societal_value_move_to_right })。

背景介绍: 在14世纪中叶,塞尔维亚王国境内(今科索沃地区)的莱采(Lece)发现了金矿。这一发现吸引了大量来自其他矿区(如新布尔多)或邻近地区的德裔矿工和农民前来定居与开发,促进了当地采矿业的发展和经济的繁荣,同时也改变了当地的人口与文化结构。

完整事件代码

flavor_ser.120 = { #Gold found in Lece
	hide_portraits = yes
	type = country_event
	title = flavor_ser.120.title
	desc = flavor_ser.120.desc
	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_goods_gold.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = SER
		from = 1337.1.1
		to = 1387.1.1
		monthly_chance = 10
	}

	trigger = {
		owns = location:glubocica
	}

	immediate = {
		ruler ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_ser.120.a
		historical_option = yes
	
		change_gold_effect = { scale = -5.00 }
		add_migration = {
			owner = this
			from = location:budimlja.province_definition
			to = location:glubocica.province_definition
			culture = culture:german_transylvanian
			religion = religion:catholic
			type = pop_type:peasants
			amount = 0.100
			months = 5
		}
		add_migration = {
			owner = this
			from = location:novo_brdo.province_definition
			to = location:glubocica.province_definition
			culture = culture:german_transylvanian
			religion = religion:catholic
			type = pop_type:peasants
			amount = 0.060
			months = 5
		}
		location:glubocica = {
			change_raw_material = goods:goods_gold
		}
	}

	option = {
		name = flavor_ser.120.b
		change_societal_value = {
			type = capital_economy_vs_traditional_economy
			value = societal_value_move_to_right
		}
	}
}