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_eng.156] 东印度胡椒贸易站

时间范围:1570.1.1 - 1620.1.1(每月 5% 概率)

触发条件

  • 国家为 ENG(英格兰)或 GBR(大不列颠)。
  • 国家处于和平状态(at_war = no)。
  • 国家拥有一支由人物 eng_james_lancaster(詹姆斯·兰开斯特)领导的探索舰队,且该舰队位于以下任一海域区域:
    • area:indonesia_coasts_area(印度尼西亚海岸区)
    • area:southeast_asian_coasts_area(东南亚海岸区)
    • area:papua_sea_zones_area(巴布亚海区)
  • region:indonesia_region(印度尼西亚地区)内,存在至少一个满足以下条件的沿海陆地省份:
    • 不为本国所有。
    • 省份等级高于 location_rank:rural_settlement(即非乡村定居点)。
    • 主流宗教所属的宗教组与本国不同。
    • 其所属市场生产商品 goods:pepper(胡椒)。

关键效果

  • 选项 A (flavor_eng.156.a) - 历史选项

    • 在随机选定的符合条件的沿海省份(factory_location)上:
      • 为本国发现该省份。
      • 建造 1 级 building_type:trade_office(贸易办公室),并归本国所有。
    • 同时,发现该省份所在省份定义(province_definition)内所有尚未被本国发现的省份。
  • 选项 B (flavor_eng.156.b)

    • 为本国增加 prestige_mild_bonus(少量威望)。

背景介绍: 该事件模拟了16世纪末至17世纪初,以詹姆斯·兰开斯特为代表的英国探险家与商人,在东南亚(特别是印度尼西亚群岛)寻找并建立胡椒贸易据点的历史进程。胡椒是当时欧洲市场利润极高的香料。英国东印度公司的先驱者们试图打破葡萄牙和荷兰的垄断,在盛产胡椒的岛屿沿岸建立贸易站(工厂),以直接获取货源并控制贸易路线。

完整事件代码

flavor_eng.156 = {
	type = country_event

	title = flavor_eng.156.title
	desc = flavor_eng.156.desc

	fire_only_once = yes

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

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1570.1.1
		to = 1620.1.1
		monthly_chance = 5
	}

	trigger = {

		any_exploration_from_country = {
			OR = {
				area = area:indonesia_coasts_area
				area = area:southeast_asian_coasts_area
				area = area:papua_sea_zones_area
			}
			leader = character:eng_james_lancaster
		}

		region:indonesia_region = {
			any_location_in_region = {
				is_coastal = yes
				is_land = yes
				owner != root
				NOT = { location_rank = location_rank:rural_settlement }
				NOT = { dominant_religion.group = root.religion.group }
				market = { is_produced_in_market = goods:pepper }
			}
		}

		at_war = no

	}

	immediate = {

		character:eng_james_lancaster ?= { save_scope_as = james_lancaster }

		region:indonesia_region = {
			random_location_in_region = {
				limit = {
					is_coastal = yes
					is_land = yes
					NOT = { owner ?= root }
					NOT = { location_rank = location_rank:rural_settlement }
					NOT = { dominant_religion.group = root.religion.group }
					market = { is_produced_in_market = goods:pepper }
				}
				save_scope_as = factory_location
			}
		}

		capital = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.156.a
		historical_option = yes

		scope:factory_location = {
			discover_location = root
			change_building_level_in_location = {
				building = building_type:trade_office
				value = 1
				owner = root
			}
		}

		scope:factory_location.province_definition = {
			every_location_in_province_definition = {
				limit = {
					NOT = {
						root = {
							has_discovered = prev
						}
					}
				}
				discover_location = root
			}
		}

	}

	option = {
		name = flavor_eng.156.b

		add_prestige = prestige_mild_bonus

	}

	historical_info = flavor_eng.156.historical_info

}