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.53 爱琴海之狼

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

触发条件

  • 国家拥有港口。
  • 国家每月水手收入大于0。
  • 满足以下任一条件:
    • 存在一个海军规模大于本国的宿敌。
    • 存在一个海军规模大于本国的敌人。

关键效果

  • 选项 A (历史选项)
    • 采纳政策:state_piracy_policy(国家海盗政策)。
    • 如果存在符合条件的港口位置(scope:target_location),则在该位置以20%的成本建造一个 dock(码头)。
    • 获得少量政府权力惩罚。
  • 选项 B
    • 首都市场在24个月内获得 galley_construction(桨帆船建造)的临时需求。
    • 如果存在符合条件的港口位置(scope:target_location),则在该位置建造一个 wharf(船坞)。
    • 否则,如果国家内存在任何 town(城镇)或 city(城市)等级的港口,则在其中地方控制力最高的最多3个港口,添加持续10年的 increased_seafaring_presence_modifier(增强航海存在修正)。
  • 选项 C
    • burghers_estate(市民阶层)增加少量阶层满意度。

背景介绍: 在14至15世纪,奥斯曼帝国(TUR)正从安纳托利亚的腹地迅速向海洋扩张。面对爱琴海上威尼斯、热那亚等海上强权以及拜占庭帝国残余海军的挑战,奥斯曼人需要建立并强化自己的海上力量。此事件反映了奥斯曼帝国在早期阶段为应对海上威胁、发展海军、控制爱琴海贸易路线而采取的策略选择,包括鼓励私掠、投资港口设施或安抚支持海洋贸易的市民阶层。

完整事件代码

flavor_tur.53 = { #The Wolves of the Aegean
	type = country_event
	title = flavor_tur.53.title
	desc = flavor_tur.53.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.53.historical_info

	trigger = {
		has_ports = yes
		monthly_sailors > 0
		OR = {
			any_rival = { navy_size > root.navy_size }
			any_enemy = { navy_size > root.navy_size }
		}
	}

	immediate = {
		if = {
			limit = {
				any_port_in_country = {
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
					NOT = {
						any_buildings_in_location = {
							building_type = { building_sailors_produced > 0 }
						}
					}
				}
			}
			ordered_port_in_country = {
				limit = {
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
					NOT = {
						any_buildings_in_location = {
							building_type = { building_sailors_produced > 0 }
						}
					}
				}
				order_by = local_control
				max = 1
				check_range_bounds = no
				save_scope_as = target_location
			}
		}
	}

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

		add_policy = policy:state_piracy_policy
		if = {
			limit = { exists = scope:target_location }
			scope:target_location = {
				construct_building = {
					building_type = building_type:dock
					cost_multiplier = 0.2
					cost_multiplier_reason = "military_cheap_sponsorship"
				}
			}
		}

		add_government_power = government_power_mild_penalty
	}

	option = {
		name = flavor_tur.53.b

		capital.market = {
			add_temporary_demand = {
				type = demand:galley_construction
				months = 24
			}
		}

		if = {
			limit = { exists = scope:target_location }
			scope:target_location = {
				construct_building = {
					building_type = building_type:wharf
				}
			}
		}
		else_if = {
			limit = {
				any_port_in_country = {
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
			}
			ordered_port_in_country = {
				limit = {
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
				order_by = local_control
				max = 3
				check_range_bounds = no
				add_location_modifier = {
					modifier = increased_seafaring_presence_modifier
					years = 10
					mode = replace
				}
			}
		}
	}

	option = {
		name = flavor_tur.53.c

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