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.145 君士坦丁堡贸易机遇

时间范围:1590.1.1 - 1700.1.1 (每月 5% 概率)

触发条件

  • 国家为 ENG (英格兰) 或 GBR (大不列颠)。
  • 已发现 location:constantinople (君士坦丁堡地区)。
  • 国家 c:TUR (奥斯曼帝国) 存在。
  • location:constantinople (君士坦丁堡地区) 的所有者为 c:TUR (奥斯曼帝国)。
  • 首都市场与君士坦丁堡市场之间没有任何进口或出口贸易路线。

关键效果

  • 选项 A (flavor_eng.145.a)
    • 花费金钱 (效果规模 scale = -3)。
    • 在君士坦丁堡市场内,为不属于本国且非乡村定居点 (location_rank:rural_settlement) 的8个人口最多的地点,各建造1级 building_type:trade_office (贸易办公室),所有者为本国。
  • 选项 B (flavor_eng.145.b)
    • 君士坦丁堡的所有者将对本国增加 opinion_insult (侮辱) 观点修正。

背景介绍: 在16世纪末至17世纪,随着奥斯曼帝国控制东地中海贸易枢纽君士坦丁堡(伊斯坦布尔),寻求新市场和贸易机会的英格兰(及后来的大不列颠)商人将目光投向了这里。此事件反映了英国商业势力试图通过建立贸易据点来渗透奥斯曼市场所面临的机遇与外交风险。

完整事件代码

flavor_eng.145 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.145.title
	desc = flavor_eng.145.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1590.1.1
		to = 1700.1.1
		monthly_chance = 5
	}

	trigger = {

		has_discovered = location:constantinople

		country_exists = c:TUR
		location:constantinople = {
			owner = c:TUR
		}

		NOT = {
			capital.market = {
				any_import = {
					from_market = location:constantinople.market
				}
			}
			capital.market = {
				any_export = {
					to_market = location:constantinople.market
				}
			}
		}

	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		location:constantinople = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.145.a

		change_gold_effect = { scale = -3 }

		location:constantinople.market = {
			ordered_location_in_market = {
				limit = {
					owner ?= {
						NOT = { this = root }
					}
					NOT = { location_rank ?= location_rank:rural_settlement }
				}
				order_by = population
				max = 8

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

	}

	option = {
		name = flavor_eng.145.b

		location:constantinople.owner = {
			add_opinion = {
				target = root
				modifier = opinion_insult
			}
		}

	}

	historical_info = flavor_eng.145.historical_info

}