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_cas.110 波托西银矿

时间范围:1540.1.1 - 1600.3.14(每月 5% 概率)

触发条件

  • 事件仅对 CAS(卡斯蒂利亚)或 SPA(西班牙)国家触发。
  • andes_region(安第斯区域)内,至少有一个地点满足以下条件:
    • 该地点的所有者是事件触发国(root)或其附属国。
    • 该地点的原材料是白银(goods:silver)。

关键效果

  • 选项 A (历史选项)

    • 设置变量 spa_diego_event
    • 减少国家黄金储备(change_gold_effect = { scale = -5 })。
    • 在安第斯区域中,所有由触发国或其附属国拥有、且原材料为白银的地点,获得持续20年的修正 spa_potosi_silver
    • 社会价值观 capital_economy_vs_traditional_economy 向左移动(societal_value_move_to_left)。
  • 选项 B

    • 在安第斯区域中,所有由触发国或其附属国拥有、且原材料为白银的地点,获得繁荣度加成(change_prosperity = prosperity_severe_bonus)。

背景介绍: 16世纪中叶,西班牙殖民者在秘鲁总督辖区(今玻利维亚)的波托西发现了巨大的银矿。这一发现迅速将波托西变成了当时世界上最大的银矿和全球白银供应的主要来源,对西班牙帝国的经济和全球贸易产生了深远影响,但也伴随着对当地原住民的残酷剥削和环境破坏。

完整事件代码

flavor_cas.110 = { #The Potosí Silver
	type = country_event
	title = flavor_cas.110.title
	desc = flavor_cas.110.desc
	historical_info = flavor_cas.110.historical_info
	fire_only_once = yes
	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_silver.dds"

	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1540.1.1
		to = 1600.3.14
		monthly_chance = 5
	}

	trigger = {
		region:andes_region = {
			any_location_in_region = {
				OR = {
					owner ?= root
					owner ?= { is_subject_of = root }
				}
				raw_material = goods:silver
			}
		}
	}

	option = {
		name = flavor_cas.110.a
		historical_option = yes
		set_variable = spa_diego_event
		change_gold_effect = { scale = -5
		}
		custom_tooltip = {
			text = flavor_cas.110.a.tt
			region:andes_region = {
				every_location_in_region = {
					limit = {
						OR = {
							owner ?= root
							owner ?= { is_subject_of = root }
						}
						raw_material = goods:silver
					}
					add_location_modifier = { modifier = spa_potosi_silver years = 20 mode = add }
				}
			}
		}
		change_societal_value = {
			type = capital_economy_vs_traditional_economy
			value = societal_value_move_to_left
		}
	}

	option = {
		name = flavor_cas.110.b
		custom_tooltip = {
			text = flavor_cas.110.b.tt
			region:andes_region = {
				every_location_in_region = {
					limit = {
						OR = {
							owner ?= root
							owner ?= { is_subject_of = root }
						}
						raw_material = goods:silver
					}
					change_prosperity = prosperity_severe_bonus
				}
			}
		}
	}
}