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.51] 关税问题

时间范围:1337.1.1 - 1437.1.1,每月 5% 概率触发

触发条件

  • 热那亚共和国(GEN)必须存在。
  • 奥斯曼帝国(TUR)当前未处于战争状态。
  • 热那亚共和国(GEN)至少拥有一个非农村地区,并且同时满足:
    • 未与奥斯曼帝国(TUR)处于战争状态。
    • 不是奥斯曼帝国(TUR)的宿敌。
    • 不是奥斯曼帝国(TUR)的敌人。
  • 奥斯曼帝国(TUR)境内至少拥有一个港口地区(城镇或城市级别),且该港口所在省份不归热那亚共和国(GEN)所有。

关键效果

  • 选项 A (历史选项)
    • 获得国家修正“高效的关税收入修正”,持续10年(可叠加与延长)。
    • 触发一次人口迁移:热那亚商人阶层(市民)从热那亚的一个非农村地区迁移至奥斯曼指定的港口地区,迁移人口数量为热那亚目标市民人口的1%,迁移过程持续5个月。
    • 贵族阶层满意度轻微下降。
    • 热那亚共和国(GEN)对奥斯曼帝国(TUR)的好感度增加15点。
  • 选项 B
    • 热那亚共和国(GEN)对奥斯曼帝国(TUR)产生“恼怒”意见。
    • 贵族阶层满意度大幅提升。

背景介绍: 在14至15世纪,奥斯曼帝国崛起并控制了东地中海的关键贸易路线。热那亚共和国作为当时重要的海上商业共和国,其商人在黑海和黎凡特地区拥有广泛的贸易网络和商业殖民地。奥斯曼帝国面临一个选择:是向热那亚商人征收关税以增加国库收入,并吸引其商业活动进入帝国港口,还是拒绝这一提议以安抚国内可能反对外国商业特权的贵族势力。这一决策将影响帝国的财政、贵族阶层的关系以及与热那亚的外交互动。

完整事件代码

flavor_tur.51 = { #A Question of Customs
	type = country_event
	title = flavor_tur.51.title
	desc = flavor_tur.51.desc


	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1337.1.1
		to = 1437.1.1
		monthly_chance = 5
	}

	historical_info = flavor_tur.51.historical_info

	trigger = {
		country_exists = c:GEN
		at_war = no
		c:GEN = {
			num_of_non_rural > 0
			NOR = {
				at_war = yes
				is_rival_of = root
				is_enemy_of = root
			}
		}
		any_port_in_country = {
			OR = {
				location_rank = location_rank:town
				location_rank = location_rank:city
			}
			province_definition = {
				NOT = {
					any_location_in_province_definition = { owner ?= c:GEN }
				}
			}
		}
	}

	immediate = {
		random_port_in_country = {
			limit = {
				OR = {
					location_rank = location_rank:town
					location_rank = location_rank:city
				}
			}
			save_scope_as = port_location
		}

		c:GEN = {
			ordered_owned_non_rural_location = {
				limit = {
					province_definition != scope:port_location.province_definition
					any_pop = { pop_type = pop_type:burghers }
				}
				order_by = population
				check_range_bounds = no
				max = 1
				save_scope_as = genoese_location
				ordered_pop = {
					limit = {
						owner = c:GEN
						pop_type = pop_type:burghers
					}
					order_by = pop_size
					check_range_bounds = no
					max = 1
					save_scope_as = target_pop
				}
			}
		}

		set_variable = {
			name = target_pop_per_1_month_variable
			value = {
				add = scope:target_pop.pop_size
				multiply = 0.01
			}
			years = 1
		}
	}


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

		add_country_modifier = { modifier = efficient_customs_dues_modifier years = 10 mode = add_and_extend }

		add_migration = {
			owner = this
			from = scope:genoese_location.province_definition
			to = scope:port_location.province_definition
			type = pop_type:burghers
			amount = var:target_pop_per_1_month_variable
			months = 5
		}

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

		c:GEN = {
			add_favors = { target = c:TUR value = 15 }
		}
	}


	option = {
		name = flavor_tur.51.b

		c:GEN = {
			add_opinion = {
				target = root
				modifier = opinion_irritated
			}
		}

		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_extreme_bonus }
	}
}