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_tur.6 君士坦丁堡的意大利商人

时间范围:1430.1.1 - 1480.1.1(每月 5% 概率触发)

触发条件

  • 君士坦丁堡是玩家的首都,并且由玩家控制。
  • 君士坦丁堡拥有 galata(热那亚区)或 venetian_quarter(威尼斯区)建筑。
  • 君士坦丁堡市场中存在威尼斯(VEN)或热那亚(GEN)的商人。

关键效果

  • 选项 A (历史选项)

    • 社会价值变动:capital_economy_vs_traditional_economy 向左移动;centralization_vs_decentralization 轻微向左移动。
    • 市民阶层满意度:轻微惩罚。
    • 如果威尼斯在君士坦丁堡有商人,则威尼斯对玩家获得 broken_trade_agreement 观点修正。
    • 如果君士坦丁堡有 venetian_quarter 建筑,则摧毁该建筑。
    • 如果热那亚在君士坦丁堡有商人,则热那亚对玩家获得 broken_trade_agreement 观点修正。
    • 如果君士坦丁堡有 galata 建筑,则摧毁该建筑。
  • 选项 B

    • 市民阶层满意度:轻微奖励。
    • 如果君士坦丁堡有 venetian_quarter 建筑或威尼斯在君士坦丁堡有商人,则威尼斯对玩家获得 honored_trade_agreement 观点修正。
    • 如果君士坦丁堡有 galata 建筑或热那亚在君士坦丁堡有商人,则热那亚对玩家获得 honored_trade_agreement 观点修正。

背景介绍: 在奥斯曼帝国征服君士坦丁堡后,城市中依然存在着强大的意大利商业社区,特别是威尼斯和热那亚的商人。他们控制着重要的贸易网络和据点,如加拉塔区。奥斯曼统治者面临着选择:是接纳这些外国商人以维持经济繁荣,还是限制他们的特权以加强中央集权和控制。

完整事件代码

flavor_tur.6 = {
	type = country_event
	title = flavor_tur.6.title
	desc = flavor_tur.6.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1430.1.1
		to = 1480.1.1
		monthly_chance = 5
	}

	historical_info = flavor_tur.6.historical_info

	trigger = {
		location:constantinople = {
			OR = {
				has_building = building_type:galata
				has_building = building_type:venetian_quarter
			}
			is_capital = yes
			owner = root
		}
		location:constantinople.market ?= {
			any_merchant_in_market = {
				OR = {
				   tag = VEN
				   tag = GEN
				}
			}
		}
	}

	immediate = {
		location:constantinople = { save_scope_as = target_location }
	}

	option = {
		name = flavor_tur.6.a
		historical_option = yes

		change_societal_value = { type = capital_economy_vs_traditional_economy value = societal_value_move_to_left }
		change_societal_value = { type = centralization_vs_decentralization value = societal_value_minor_move_to_left }

		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_penalty }

		if = {
			limit = {
				c:VEN = { has_merchant_in_constantinople = yes }
			}
			c:VEN = {
				add_opinion = { target = root modifier = broken_trade_agreement }
			}
		}
		if = {
			limit = {
				location:constantinople = { has_building = building_type:venetian_quarter }
			}
			location:constantinople = { destroy_building = "building(building_type:venetian_quarter|c:VEN)" }
		}
		if = {
			limit = {
				c:GEN = { has_merchant_in_constantinople = yes }
			}
			c:GEN = {
				add_opinion = { target = root modifier = broken_trade_agreement }
			}
		}
		if = {
			limit = {
				location:constantinople = { has_building = building_type:galata }
			}
			location:constantinople = { destroy_building = "building(building_type:galata|c:GEN)" }
		}
	}
	option = {
		name = flavor_tur.6.b

		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_mild_bonus
		}

		if = {
			limit = {
				OR = {
					location:constantinople = { has_building = building_type:venetian_quarter }
					c:VEN = { has_merchant_in_constantinople = yes }
				}
			}
			c:VEN = {
				add_opinion = { target = root modifier = honored_trade_agreement }
			}
		}
		if = {
			limit = {
				OR = {
					location:constantinople = { has_building = building_type:galata }
					c:GEN = { has_merchant_in_constantinople = yes }
				}
			}
			c:GEN = {
				add_opinion = { target = root modifier = honored_trade_agreement }
			}
		}
	}
}