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.2100 迭戈·委拉斯开兹与《宫娥》

时间范围:1630.1.1 - 1660.1.1(每月 1% 概率触发)

触发条件

  • 国家拥有统治者。
  • 国家拥有塞维利亚(Sevilla)地区。

关键效果

  • 选项 A (flavor_cas.2100.a)
    • 花费少量金钱(scale = -2)。
    • 获得少量威望(prestige_mild_bonus)。
    • 在首都创建一幅名为 las_meninas 的画作,类型为绘画,质量为 91,由事件生成的艺术家迭戈·委拉斯开兹创作。
  • 选项 B (flavor_cas.2100.b)
    • 损失少量威望(prestige_mild_penalty)。
    • 将艺术家迭戈·委拉斯开兹流放至一个随机邻国。

背景介绍: 此事件模拟了西班牙黄金时代著名画家迭戈·委拉斯开兹(Diego Velázquez)创作其代表作《宫娥》(Las Meninas)的历史时刻。委拉斯开兹出生于塞维利亚,后成为西班牙国王腓力四世的宫廷画家。《宫娥》创作于1656年,是其艺术生涯的巅峰之作,以其复杂的构图、光影处理和深刻的宫廷生活描绘而闻名于世。事件反映了国家是否选择资助这位伟大艺术家,并保留其杰作,或是因故使其流亡他国。

完整事件代码

flavor_cas.2100 = { #Diego Velázquez Las Meninas
	hide_portraits = yes
	type = country_event
	title = flavor_cas.2100.title
	desc = flavor_cas.2100.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = CAS
		tag = SPA
		from = 1630.1.1
		to = 1660.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }

		create_character = {
			first_name = name_diego
			last_name = Velazquez
			adm = 54
			dip = 78
			mil = 13
			artist = painter
			birth_date = 1599.5.1 #baptized 1599.6.6 Birthdate unknown
			artist_skill = 0.87
			birth_location = location:sevilla
			save_scope_as = target_artist
			estate = estate_type:burghers_estate
			script = spa_velazquez_script
		}
		random_neighbor_country = {
			save_scope_as = exile_destination
		}
		ruler = {
			save_scope_as = target_ruler
		}
	}

	trigger = {
		has_ruler = yes
		owns = location:sevilla
	}

	option = {
		name = flavor_cas.2100.a

		change_gold_effect = { scale = -2 }
		add_prestige = prestige_mild_bonus
		capital = {
			create_art = {
				artist = scope:target_artist
				quality = 91
				type = work_of_art_type:painting
				key =  las_meninas
			}
		}
	}

	option = {
		name = flavor_cas.2100.b

		add_prestige = prestige_mild_penalty
		scope:target_artist = {
			move_country = scope:exile_destination
		}
	}
}