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.55 加里波利要塞

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

触发条件

  • 国家拥有加里波利(Gallipoli)地区。
  • 国家拥有至少5个位于安纳托利亚(Anatolia)地区的省份。
  • 君士坦丁堡(Constantinople)地区的所有者不是本国。
  • 加里波利地区没有沿海堡垒(coastal_fort)建筑。

关键效果

  • 选项 A (历史选项)
    • 在加里波利地区以半价(cost_multiplier = 0.5)建造一座沿海堡垒。
    • 所有满足以下条件的其他国家将对本国产生“土耳其威胁博斯普鲁斯”(tur_treathens_the_bosphorus)的负面看法:
      • 不是本国。
      • 在君士坦丁堡有商人。
      • 拥有海军。
      • 既未采用国家海盗政策,也不是本国的附庸国。
  • 选项 B
    • 获得一个“政府权力弱惩罚”(government_power_weak_penalty)的修正。

背景介绍: 在奥斯曼帝国早期向巴尔干半岛扩张的过程中,控制达达尼尔海峡的战略要地加里波利至关重要。为了巩固对海峡的控制,保障军队和物资从安纳托利亚向欧洲的渡海通道,并威慑或封锁通过博斯普鲁斯海峡的敌对海上力量,奥斯曼人决定在此地修建一座坚固的沿海要塞。这一军事建设行动向周边在君士坦丁堡有商业利益的海上强国发出了明确的信号,加剧了地区紧张局势。

完整事件代码

flavor_tur.55 = { #The Fortress at Gallipoli
	type = country_event
	title = flavor_tur.55.title
	desc = flavor_tur.55.desc

	historical_info = flavor_tur.55.historical_info

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

	trigger = {

		owns = location:gallipoli

		any_owned_location = {
			region = region:anatolia_region
			count >= 5
		}
		location:constantinople = {
			NOT = { top_owner = root }
		}
		location:gallipoli = {
			NOT = { has_building = building_type:coastal_fort }
		}
	}

	immediate = {

		location:gallipoli = {
			save_scope_as = target_location
		}
	}

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

		scope:target_location = {
			construct_building = {
				building_type = building_type:coastal_fort
				cost_multiplier = 0.5
				cost_multiplier_reason = "military_cheap_sponsorship"
			}
		}

		every_country = {
			limit = {
				this != root
				has_merchant_in_constantinople = yes
				navy_size > 0
				NOR = {
					has_policy = state_piracy_policy
					is_subject_of = root
				}
			}
			add_opinion = {
				target = root
				modifier = tur_treathens_the_bosphorus
			}
		}
	}

	option = {
		name = flavor_tur.55.b

		add_government_power = government_power_weak_penalty
	}
}