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_ned_plc.1 波兰-立陶宛联邦与荷兰的谷物贸易

时间范围:1550.4.1 - 1821.1.1,每月 10% 概率触发

触发条件

  • 事件接收国(波兰 POL 或波兰-立陶宛联邦 PLC)拥有格但斯克(location:gdansk)地区。
  • 荷兰(c:NED)存在,并且能够从其首都市场找到一条通往格但斯克市场的贸易路线(can_find_trade_route)。

关键效果

  • 选项 A
    • 格但斯克市场:增加大量(market_goods_severe_gain)小麦(goods:wheat)供应。
    • 格但斯克地区:获得温和的发展度加成(development_mild_bonus)。
    • 荷兰:在格但斯克市场获得为期25年的温和商人力量加成(merchant_power_mild_bonus),标识为“波兰的荷兰船只”(plc_dutch_ships)。
    • 后续事件:为荷兰静默触发后续事件 flavor_ned_plc.2

背景介绍: 16世纪中期以后,随着荷兰海上贸易力量的崛起和阿姆斯特丹成为欧洲重要的谷物集散中心,波兰-立陶宛联邦通过其重要港口格但斯克(但泽)出口的大量谷物,成为了荷兰商人重要的采购来源。这一贸易联系不仅繁荣了格但斯克的市场,加强了波兰与西欧的经济纽带,也为荷兰商人提供了稳定的粮食供应和贸易利润,是波罗的海贸易网络中的关键一环。

完整事件代码

flavor_ned_plc.1 = {
	hide_portraits = yes
	type = country_event
	title = flavor_ned_plc.1.title
	desc = flavor_ned_plc.1.desc

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

	fire_only_once = yes
	dynamic_historical_event = {
		tag = POL
		tag = PLC
		from = 1550.4.1
		to = 1821.1.1
		monthly_chance = 10
	}
	trigger = {
		owns = location:gdansk
		c:NED ?= {
			can_find_trade_route = {
				to = location:gdansk.market
				from = c:NED.capital.market
			}
		}
	}

	illustration_tags = {
		10 = interior
		10 = happy
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }	
		location:gdansk = {
			save_scope_as = target_location
			market = {
				save_scope_as = target_market
			}
		}
		goods:wheat = {
			save_scope_as = target_good
		}
		c:NED = {
			save_scope_as = target_country
		}
		save_scope_as =  receiving_country
	}

	option = {
		name = flavor_ned_plc.1.a
		
		scope:target_market = {
			add_goods_supply = {
				amount = market_goods_severe_gain
				goods = scope:target_good
			}
		}

		scope:target_location = {
			change_development = development_mild_bonus
		}

		show_as_tooltip = {
			scope:target_market = {
				add_merchant_power = {
					country = scope:target_country
					key =  plc_dutch_ships
					power = merchant_power_mild_bonus
					years = 25
				}
			}
		}
		scope:target_country = {
			trigger_event_silently = {
				id = flavor_ned_plc.2
			}
		}
	}
	
}