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.1501] 塞维利亚港(在贸易署建立后)

时间范围

1550.1.1 - 1620.1.1,每月 10% 概率触发

触发条件

  • 国家在美洲大陆有存在 (has_presence_in = continent:america)
  • 国家拥有政府改革“贸易署” (has_reform = government_reform:casa_de_contratacion)
  • 国家拥有变量 future_trade_center
  • 国家拥有变量 future_trade_center 所指向的地区 (owns = var:future_trade_center)

关键效果

选项: flavor_cas.1501.a

  • 对之前保存的 trade_center_location 地区执行:
    • 大幅增加发展度 (change_development = development_extreme_bonus)
    • 如果该地区等级为“乡村定居点”,则提升为“城镇”
    • 如果该地区等级为“城镇”,则提升为“城市”
  • 设置国家变量 world_port_established

背景介绍

此事件模拟了在西班牙(卡斯蒂利亚或西班牙)建立“贸易署”后,其美洲殖民贸易体系的发展。贸易署的设立旨在集中管理新大陆的贸易和移民,这极大地促进了特定港口(如塞维利亚)的繁荣,使其成为连接美洲与欧洲的关键枢纽,并带动了当地经济和城市规模的飞速增长。

完整事件代码

flavor_cas.1501 = { #Port of Sevilla after Casa de Contratacion is established
	type = country_event
	title = flavor_cas.1501.title
	desc = flavor_cas.1501.desc
	image = "gfx/interface/illustrations/institutions/global_trade.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1550.1.1
		to = 1620.1.1
		monthly_chance = 10
	}

	immediate = {
		var:future_trade_center = { save_scope_as = trade_center_location }
	}

	trigger = {
		has_presence_in = continent:america
		has_reform = government_reform:casa_de_contratacion
		has_variable = future_trade_center
		owns = var:future_trade_center
	}

	option = {
		name = flavor_cas.1501.a

		scope:trade_center_location = {
			change_development = development_extreme_bonus
			if = {
				limit = {
					location_rank = location_rank:rural_settlement
				}
				change_location_rank = location_rank:town
			}
			else_if = {
				limit = {
					location_rank = location_rank:town
				}
				change_location_rank = location_rank:city
			}
		}
		set_variable = world_port_established
	}
}