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_eng.17 英格兰与阿尔汉格尔斯克的贸易联系

时间范围:1540.1.1 - 1580.1.1,每月 5% 概率触发

触发条件

  • 玩家国家为 ENGGBR
  • 已发现阿尔汉格尔斯克(arkhangelsk)地区。
  • 阿尔汉格尔斯克地区满足以下所有条件:
    • 其所有者是存在的 MOS 国家或存在的 RUS 国家。
    • 该地区内至少有一个地点(location)已被玩家发现,并且该地点的等级为城镇(town)或城市(city)。
  • 玩家首都市场(capital.market)正在从阿尔汉格尔斯克市场(location:arkhangelsk.market)进口商品。

关键效果

  • 选项 A (flavor_eng.17.a)
    • 花费 3 倍基础金额的金钱。
    • 在阿尔汉格尔斯克市场中,为不属于玩家的、等级为城镇或城市的、人口最多的最多 8 个地点,各建造 1 级贸易办公室(building_type:trade_office),并使这些建筑的拥有者变为玩家。
  • 选项 B (flavor_eng.17.b)
    • 杀死在本事件中创建的理查德·钱塞勒(scope:richard_chancellor)角色。
    • 使社会价值观“外向 vs 内向”(outward_vs_inward)向右移动一格(更偏向“外向”)。

背景介绍: 16世纪中叶,英格兰商人寻求绕过传统贸易路线的北方通道,以直接与俄罗斯进行贸易。理查德·钱塞勒是这一探索的关键人物,他于1553年率领探险队,最终抵达了俄罗斯北部的阿尔汉格尔斯克,并成功与莫斯科大公国建立了直接贸易联系。这一事件标志着英俄贸易关系的开端,为英格兰商人打开了新的市场和资源。

完整事件代码

flavor_eng.17 = {
	type = country_event
	title = flavor_eng.17.title
	desc = flavor_eng.17.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1540.1.1
		to = 1580.1.1
		monthly_chance = 5
	}


	trigger = {

		has_discovered = location:arkhangelsk

		location:arkhangelsk = {
			OR = {
				AND = {
					country_exists = c:MOS
					owner = c:MOS
				}
				AND = {
					country_exists = c:RUS
					owner = c:RUS
				}
			}
			area = {
				any_location_in_area = {
					is_discovered_by = root
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
			}
		}

		capital.market = {
			any_import = {
				from_market = location:arkhangelsk.market
			}
		}

	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		if = {
			limit = {
				country_exists = c:MOS
			}
			c:MOS = {
				save_scope_as = target_country
			}
		}
		else = {
			c:RUS = {
				save_scope_as = target_country
			}
		}

		create_character = {
			first_name = name_richard
			last_name = Chancellor
			estate = estate_type:burghers_estate
			adm = 44
			dip = 55
			mil = 70
			birth_date = 1521.1.1
			birth_location = location:bristol
			trait_category = explorer
			save_scope_as = richard_chancellor
			script = eng_richard_chancellor
		}
	}

	option = {
		name = flavor_eng.17.a

		custom_tooltip = flavor_eng.17.tt1

		change_gold_effect = { scale = -3 }

		location:arkhangelsk.market = {
			ordered_location_in_market = {
				limit = {
					owner != root
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
				order_by = population
				max = 8

				change_building_level_in_location = {
					building = building_type:trade_office
					value = 1
					owner = root
				}
			}
		}
	}

	option = {
		name = flavor_eng.17.b

		hidden_effect = { kill_character_silently = scope:richard_chancellor }

		change_societal_value = {
			type = outward_vs_inward
			value = societal_value_move_to_right
		}

		custom_tooltip = flavor_eng.17.tt2

	}

	historical_info = flavor_eng.17.historical_info

}