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_cas.12 埃尔·格列柯移居西班牙

时间范围:1577.1.1 - 1614.1.1(每月 2% 概率)

触发条件

  • 全局变量 el_greco_hired 不存在。
  • 国家拥有统治者。
  • 国家拥有托莱多(location:toledo)地区。

关键效果

  • 选项 A
    • 增加少量威望(prestige_mild_bonus)。
    • 减少金钱(change_gold_effect = { scale = -1 })。
    • 在托莱多地区创建一幅名为 el_entierro_del_senor_de_orgaz 的画作,类型为绘画,质量为 87,艺术家为事件创建的埃尔·格列柯。
    • 将艺术家埃尔·格列柯移居至触发事件的国家。
  • 选项 B
    • 放逐艺术家埃尔·格列柯。

背景介绍: 此事件模拟了文艺复兴后期著名画家埃尔·格列柯(原名多米尼克·提托克波洛斯)从故乡克里特岛移居西班牙的历史进程。埃尔·格列柯以其独特的风格在西班牙,尤其是托莱多,留下了深刻的艺术遗产,其代表作《奥尔加斯伯爵的葬礼》便是在此期间创作。事件反映了西班牙哈布斯堡王朝时期对艺术人才的吸引与赞助。

完整事件代码

flavor_cas.12 = { #El Greco moves to Spain
	type = country_event
	title = flavor_cas.12.title
	desc = flavor_cas.12.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1577.1.1
		to = 1614.1.1
		monthly_chance = 2
	}

	immediate = {
		location:toledo = {
			save_scope_as = target_location
		}

		create_character = {
			first_name = name_dominic
			last_name = theotokopoulos
			adm = 65
			dip = 45
			mil = 34
			artist = painter
			birth_date = 1541.10.1
			artist_skill = 0.87
			culture = culture:greek_culture
			birth_location = location:candia
			script = byz_el_greco
			save_scope_as = target_artist
			estate = estate_type:burghers_estate
			create_in_limbo = yes
		}
		ruler = {
			save_scope_as = target_ruler
		}
	}

	trigger = {
		NOT = {
			has_global_variable = el_greco_hired
		}
		has_ruler = yes
		owns = location:toledo
	}

	option = {
		name = flavor_cas.12.a

		add_prestige = prestige_mild_bonus
		change_gold_effect = { scale = -1 }
		location:toledo = {
			create_art = {
				artist = scope:target_artist
				quality = 87
				type = work_of_art_type:painting
				key = el_entierro_del_senor_de_orgaz
			}
		}
		scope:target_artist = { move_country = root }
	}

	option = {
		name = flavor_cas.12.b

		scope:target_artist = { banish_character = yes }
	}
}