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_gen.26 海峡战争

时间范围:1370.1.1 - 1410.1.1(每月 20% 概率)

触发条件

  • 国家变量 gen_war_of_straits 存在。
  • 国家 VEN(威尼斯)存在。
  • 本国与 VEN 不是盟友关系。
  • 本国政府改革为 merchant_republic(商人共和国)。
  • 国家 VEN 的政府改革也为 merchant_republic(商人共和国)。
  • 本国与 VEN 是竞争对手或处于战争状态。
  • 在以下任一海域,VEN 的海上存在力量值大于等于 50:
    • cape_lecton
    • dardanelles(达达尼尔海峡)
    • gulf_izmit(伊兹米特湾)
    • bosphorus(博斯普鲁斯海峡)
  • 本国拥有至少一个位于 anatolia_region(安纳托利亚地区)或 steppes_region(草原地区)的省份。

关键效果

  • 选项 A (flavor_gen.19.a) - 历史选项

    • 社会价值观 belligerent_vs_conciliatory(好战 vs 和解)向左移动(向好战方向)。
    • 本国获得对 VEN 的宣战理由 casus_belli:cb_maritime_dominance(海上霸权)。
    • VEN 获得对本国(事件发起国)的宣战理由 casus_belli:cb_maritime_dominance(海上霸权)。
  • 选项 B (flavor_gen.19.b)

    • 社会价值观 belligerent_vs_conciliatory(好战 vs 和解)向右移动(向和解方向)。

背景介绍: 在14世纪末至15世纪初,热那亚共和国与威尼斯共和国作为地中海两大商业巨头,为争夺关键海峡和贸易路线的控制权而长期敌对。博斯普鲁斯海峡和达达尼尔海峡是连接黑海与地中海的咽喉要道,对东西方贸易至关重要。当威尼斯的海上力量渗透到这些关键水域,并威胁到热那亚在安纳托利亚及黑海地区的商业利益时,一场争夺海上霸权的冲突一触即发。此事件反映了这两个商人共和国之间为控制利润丰厚的贸易路线而进行的战略博弈。

完整事件代码

flavor_gen.26 = {
	type = country_event
	fire_only_once = yes
	title = flavor_gen.26.title
	desc = flavor_gen.26.desc
	dynamic_historical_event = {
		tag = GEN
		from = 1370.1.1
		to = 1410.1.1
		monthly_chance = 20
	}
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	trigger = {
		has_variable = gen_war_of_straits
		country_exists = c:VEN
		NOT = { is_allied_with = { target = c:VEN } }
		has_reform = government_reform:merchant_republic
		c:VEN = {
			has_reform = government_reform:merchant_republic
		}
		OR = {
			is_rival_of = c:VEN
			is_enemy_of = c:VEN
		}
		OR = {
			location:cape_lecton = {
				location_maritime_presence_power = {
					country = c:VEN
					value >= 50
				}
			}
			location:dardanelles = {
				location_maritime_presence_power = {
					country = c:VEN
					value >= 50
				}
			}
			location:gulf_izmit = {
				location_maritime_presence_power = {
					country = c:VEN
					value >= 50
				}
			}
			location:bosphorus = {
				location_maritime_presence_power = {
					country = c:VEN
					value >= 50
				}
			}
		}
		any_owned_location = {
			OR = {
				region = region:anatolia_region
				region = region:steppes_region
			}
		}
	}
	#Fortune favors the bold!
	option = {
		name = flavor_gen.19.a
		historical_option = yes
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_left }
		add_casus_belli = {
			target = c:VEN
			type = casus_belli:cb_maritime_dominance
		}
		c:VEN = {
			add_casus_belli = {
				target = root
				type = casus_belli:cb_maritime_dominance
			}
		}
	}
	#It might be too risky to keep this conflict open.
	option = {
		name = flavor_gen.19.b
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_right }
	}
	after = {
		remove_variable = gen_war_of_straits
	}
}