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_rus.41 阿拉斯加毛皮贸易

时间范围:1770.1.1 - 1840.1.1(每月 5% 概率)

触发条件

  • 首都市场正在进口毛皮 (goods:fur)。
  • 没有在阿拉斯加地区 (region:alaska_region) 拥有贸易公司 (trade_company) 类型的附属国。
  • 阿拉斯加地区 (region:alaska_region) 满足以下条件:
    • 区域内至少有一个沿海地点。
    • 区域内至少有3个地点同时满足:
      • 拥有毛皮 (goods:fur) 作为原材料。
      • 已被本国 (root) 发现。
      • 地点等级为乡村定居点 (location_rank:rural_settlement)。
      • 没有海外贸易站 (building_type:overseas_trading_post) 建筑。

关键效果

  • 选项 A (flavor_rus.41.a)
    • 花费一定金钱 (change_gold_effect = { scale = -1 })。
    • target_location 所在市场中,选取最多8个满足以下条件的地点:
      • 地点等级为乡村定居点 (location_rank:rural_settlement)。
      • 拥有毛皮 (goods:fur) 作为原材料。
      • 没有海外贸易站 (building_type:overseas_trading_post) 建筑。
    • 按人口 (order_by = population) 排序,为这些地点各建造1级海外贸易站 (building_type:overseas_trading_post),所有者为触发国 (owner = root)。
  • 选项 B (flavor_rus.41.b)
    • 使社会价值观“重商主义 vs 自由贸易” (mercantilism_vs_free_trade) 向右移动 (societal_value_move_to_right),即偏向自由贸易。

背景介绍: 此事件模拟了18世纪末至19世纪初俄罗斯帝国在阿拉斯加地区的毛皮贸易扩张活动。随着俄罗斯探险家向东探索,阿拉斯加丰富的海獭等毛皮资源吸引了商人和殖民者。事件反映了俄罗斯通过建立贸易站点来系统性开发该地区资源的决策点,以及在国家经济政策上偏向重商主义(直接控制资源)或自由贸易(减少干预)的路线选择。

事件代码

flavor_rus.41 = {
	type = country_event

	fire_only_once = yes

	title = flavor_rus.41.title
	desc = flavor_rus.41.desc

	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_fur.dds"

	dynamic_historical_event = {
		tag = RUS
		from = 1770.1.1
		to = 1840.1.1
		monthly_chance = 5
	}

	trigger = {

		capital.market = {
			any_import = {
				goods = goods:fur
			}
		}

		NOT = {
			any_subject_or_below = {
				is_subject_type = trade_company
				capital.region = region:alaska_region
			}
		}

		region:alaska_region = {
			any_location_in_region = {
				is_coastal_within_range = yes
			}
			any_location_in_region = {
				count >= 3
				raw_material = goods:fur
				is_discovered_by = root
				location_rank = location_rank:rural_settlement
				NOT = { has_building = building_type:overseas_trading_post }
			}
		}
	}



	immediate = {
		region:alaska_region = {
			random_location_in_region = {
				limit = {
					raw_material = goods:fur
					is_discovered_by = root
					location_rank = location_rank:rural_settlement
					NOT = { has_building = building_type:overseas_trading_post }
				}
				save_scope_as = target_location
			}
		}
	}

	option = {
		name = flavor_rus.41.a

		change_gold_effect = { scale = -1 }

		scope:target_location.market = {
			ordered_location_in_market = {
				limit = {
					location_rank = location_rank:rural_settlement
					raw_material = goods:fur
					NOT = { has_building = building_type:overseas_trading_post }
				}
				order_by = population
				max = 8

				change_building_level_in_location = {
					building = building_type:overseas_trading_post
					value = 1
					owner = root
				}
			}
		}
	}

	option = {
		name = flavor_rus.41.b

		change_societal_value = {
			type = mercantilism_vs_free_trade
			value = societal_value_move_to_right
		}
	}

	historical_info = flavor_rus.41.historical_info

}