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_dan.64 柏柏尔人袭击冰岛

时间范围:1627.1.1 - 1700.1.1(每月 1% 概率)

触发条件

  • 玩家国家完全控制 area:iceland_area(冰岛地区)。

关键效果

  • 选项 A (flavor_dan.64.a)

    • 国库损失 6 金币。
    • 在省份 west_farthing 的所有沿海地点,所有人口减少 10%。
  • 选项 B (flavor_dan.64.b)

    • 在省份 west_farthing 的所有沿海地点:
      • 发展度遭受 development_severe_penalty(严重惩罚)。
      • 繁荣度遭受 prosperity_mild_penalty(轻度惩罚)。
      • 所有人口减少 10%。

背景介绍: 该事件模拟了17世纪历史上真实发生的“土耳其人绑架”事件。1627年,来自北非(主要为柏柏尔人)的海盗袭击了冰岛,掠夺了村庄并绑架了数百名居民作为奴隶贩卖。这是冰岛历史上一次重大的外部袭击,对当地人口和经济造成了严重打击。

完整事件代码

flavor_dan.64 = { #Amazigh Raid on Iceland #DEVASTATION
	type = country_event
	title = flavor_dan.64.title
	desc = flavor_dan.64.desc
	image = "gfx/interface/illustrations/situation/golden_age_of_piracy.dds"

	fire_only_once = yes

	historical_info = flavor_dan.64.historical_info

	dynamic_historical_event = {
		tag = DAN
		from = 1627.1.1
		to = 1700.1.1
		monthly_chance = 1
	}

	trigger = {
		own_entire_area = area:iceland_area
	}

	option = {
		name = flavor_dan.64.a
		change_gold_effect = { scale = -6 }
		province_definition:west_farthing = {
			every_location_in_province_definition = {
				limit = {
					is_coastal = yes
				}
				every_pop = {
					add_pop_size = {
						value = pop_size
						multiply = -0.1
					}
				}
			}
		}
	}

	option = {
		name = flavor_dan.64.b
		province_definition:west_farthing = {
			every_location_in_province_definition = {
				limit = {
					is_coastal = yes
				}
				change_development  = development_severe_penalty
				change_prosperity = prosperity_mild_penalty
				every_pop = {
					add_pop_size = {
						value = pop_size
						multiply = -0.1
					}
				}
			}
		}
	}
}