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_eth.250 从欧洲招募工匠

时间范围:1400.1.1 - 1500.1.1,每月 1% 概率触发

触发条件

  • 事件仅对标签为 ETH 的国家触发。
  • 事件在游戏时间 1400年1月1日至1500年1月1日之间随机发生。
  • 事件仅触发一次。

关键效果

  • 选项 A (flavor_eth.250.a)
    • 从目标欧洲国家首都向本国首都迁移少量人口(持续12个月)。
    • 本国文化获得“轻微负面影响”的文化影响和文化传统修正。
    • 若目标国家存在符合条件的艺术家,则将其转移至本国。
    • 目标国家的文化获得“轻微正面影响”的文化影响修正。
    • 若目标国家存在符合条件的艺术品(非口述传统、宅邸、纪念碑、宫殿、庙塔),则将其转移至本国首都。
    • 触发目标国家的事件 flavor_eth.251
  • 选项 B (flavor_eth.250.b)
    • 本国文化获得“轻微正面影响”的文化影响和文化传统修正。

背景介绍: 在15世纪,埃塞俄比亚帝国(ETH)与欧洲的接触逐渐增多。为了促进国内的艺术、建筑和手工业发展,埃塞俄比亚的统治者可能尝试从欧洲招募熟练的工匠和艺术家,或获取珍贵的艺术品,以丰富本国的文化宝库并提升宫廷的威望。这一事件反映了这一时期跨大陆文化交流的尝试。

完整事件代码

flavor_eth.250 = { #Requesting Artisans from Europe
	hide_portraits = yes
	type = country_event
	title = flavor_eth.250.title
	desc = flavor_eth.250.desc

	dynamic_historical_event = {
		tag = ETH
		from = 1400.1.1
		to = 1500.1.1
		monthly_chance = 1
	}

	fire_only_once = yes
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ordered_known_country = {
			limit = {
				capital.continent = continent:europe
			}
			order_by = prestige
			max = 1
			check_range_bounds = no
			save_scope_as = target_country
		}

		scope:target_country = {
			random_artist ?= {
				save_scope_as = target_character
			}

			random_work_of_art_in_country ?= {
				limit = {
					NOR = {
						work_of_art_type = work_of_art_type:oral_traditions
						work_of_art_type = work_of_art_type:mansion
						work_of_art_type = work_of_art_type:monument
						work_of_art_type = work_of_art_type:palace
						work_of_art_type = work_of_art_type:temple_tower
					}
				}
				save_scope_as = target_work_of_art
			}
		}

		save_scope_as = target_country2
	}

	option = {
		name = flavor_eth.250.a
	
		show_as_tooltip = {
			add_migration = {
				amount = 0.25
				from = scope:target_country.capital.province_definition
				owner = scope:target_country
				to = root.capital.province_definition
				months = 12
			}

			culture = {
				add_cultural_influence = cultural_influence_mild_penalty
				add_cultural_tradition = cultural_tradition_mild_penalty
			}

			scope:target_character ?= {
				move_country = root
			}

			scope:target_country.culture = {
				add_cultural_influence = cultural_influence_mild_bonus
			}

			scope:target_work_of_art = {
				move_art = root.capital
			}
		}

		scope:target_country = {
			trigger_event_non_silently = {
				id = flavor_eth.251
			}
		}

		custom_tooltip = eth_target_country_must_accept_tt

		
	}

	option = {
		name = flavor_eth.250.b
		
		culture = {
			add_cultural_influence = cultural_influence_mild_bonus
			add_cultural_tradition = cultural_tradition_mild_bonus
		}
	}
}