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_sco.1101 边境掠夺者

时间范围
该事件无明确 fromto 日期限制,触发概率未在代码中指定(无 monthly_chance 字段)。

触发条件
事件代码中未包含 trigger 字段,因此无明确触发条件。事件可能由其他机制或脚本直接调用。

关键效果
事件提供两个选项:

  • 选项 A (flavor_sco.1101.a):无具体效果描述,仅显示自定义提示文本 (flavor_sco.1101.tt1)。
  • 选项 B (flavor_sco.1101.b):
    • 减少金币:效果规模为 -6(具体数值取决于游戏内计算)。
    • 设置变量 border_raids_less_severe
    • 显示自定义提示文本 (flavor_sco.1101.tt2)。

背景介绍
该事件涉及苏格兰边境地区的掠夺者(Reivers)活动。历史上,苏格兰与英格兰边境地带长期存在家族间的冲突、牲畜盗窃和暴力袭击,这些边境掠夺者常利用地形进行游击式的劫掠,对当地治安和经济造成持续影响。事件反映了苏格兰统治者面对边境治安问题时的决策,可能涉及是否采取军事镇压或经济补偿以减少冲突。

完整事件代码

flavor_sco.1101 = {
	type = country_event

	title = flavor_sco.1101.title
	desc = flavor_sco.1101.desc
	historical_info = flavor_sco.1101.historical_info

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_owned_location = {
			limit = {
				region = region:great_britain_region
				any_neighbor_location = {
					owner ?= c:ENG
				}
			}
			save_scope_as = target_location
		}

		set_variable = border_reivers_enabled

	}

	option = {
		name = flavor_sco.1101.a

		custom_tooltip = flavor_sco.1101.tt1

	}

	option = {
		name = flavor_sco.1101.b

		change_gold_effect = { scale = -6 }

		set_variable = border_raids_less_severe

		custom_tooltip = flavor_sco.1101.tt2

	}

}