[flavor_iro.50] 毛皮贸易
时间范围:1530.1.1 - 1776.1.1,每月 10% 概率触发
触发条件:
- 国家拥有统治者。
- 存在至少一个邻国满足以下所有条件:
- 拥有
has_colonial_charters属性(拥有殖民特许状)。 - 宗教属于基督教组 (
religion_group:christian)。 - 已接纳“新世界”制度 (
institution:new_world)。 - 对本国(触发国)的看法值大于等于 25。
- 拥有
关键效果:
- 选项 A:向殖民者提供毛皮
- 标记为 历史选项 (
historical_option = yes)。 - 获得金钱,数额为邻国月贸易与税收收入的 6 倍。
- 获得国家修正
iro_trading_of_furs,持续 10 年。 - 与邻国互相增加看法修正
trading_in_furs_iro。 - 设置变量
can_fire_beaver_wars。
- 标记为 历史选项 (
- 选项 B:过度捕猎海狸可能破坏环境
- 获得
stability_severe_bonus稳定性加成。
- 获得
背景介绍: 该事件模拟了16至18世纪,易洛魁联盟(IRO)与抵达北美东海岸的欧洲殖民者之间兴起的毛皮贸易。欧洲市场对海狸皮等毛皮的需求巨大,这为易洛魁人提供了重要的经济机会,他们利用其在内陆的贸易网络和狩猎技能,成为欧洲商人关键的毛皮供应者。这一贸易关系极大地影响了易洛魁人的经济、社会结构及其与欧洲殖民势力的外交关系,同时也对当地的野生动物种群(尤其是海狸)和生态环境产生了深远影响。
完整事件代码:
flavor_iro.50 = { # Exchange of Fur
type = country_event
title = flavor_iro.50.title
desc = flavor_iro.50.desc
image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_fur.dds"
fire_only_once = yes
dynamic_historical_event = {
tag = IRO
from = 1530.1.1
to = 1776.1.1
monthly_chance = 10
}
trigger = {
has_ruler = yes
any_neighbor_country = {
has_colonial_charters = yes
religion.group = religion_group:christian
has_embraced_institution = institution:new_world
opinion = { target = root value >= 25 }
}
}
immediate = {
ruler ?= {
save_scope_as = our_ruler
}
random_neighbor_country = {
limit = {
has_colonial_charters = yes
religion.group = religion_group:christian
has_embraced_institution = institution:new_world
opinion = { target = root value >= 25 }
}
save_scope_as = neighbor_country
}
}
illustration_tags = {
10 = regular
10 = interior
}
option = { # Offer fur to the colonizers
name = flavor_iro.50.a
historical_option = yes
add_gold = {
value = scope:neighbor_country.monthly_income_trade_and_tax
multiply = 6
}
add_country_modifier = { modifier = iro_trading_of_furs years = 10 mode = add }
add_opinion = { target = scope:neighbor_country modifier = trading_in_furs_iro }
reverse_add_opinion = { target = scope:neighbor_country modifier = trading_in_furs_iro }
set_variable = can_fire_beaver_wars
}
option = { # Overhunting of the beavers may risk environmental disruption
name = flavor_iro.50.b
add_stability = stability_severe_bonus
}
}