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_byz.11 克里特画派

时间范围:1444.1.1 - 1492.6.1(每月 3% 概率)

触发条件

  • 国家处于和平状态(at_war = no)。
  • 如果触发国是威尼斯(c:VEN),则拜占庭帝国(c:BYZ)必须不存在。
  • 触发国完全拥有克里特省(province_definition:crete_province)。
  • 触发国控制着坎迪亚地区(location:candia)的所有地点。

关键效果

  • 选项 A (flavor_byz.11.a):

    • 花费 3 倍金钱。
    • 将艺术家安德烈亚斯·里佐斯(target_artist)招募至本国。
  • 选项 B (flavor_byz.11.b):

    • 为本文化添加“文化传统严重增益”(cultural_tradition_severe_bonus)和“文化影响力严重增益”(cultural_influence_severe_bonus)。
    • 花费 1.5 倍金钱。
    • (隐藏效果)无声地处决艺术家安德烈亚斯·里佐斯。
  • 选项 C (flavor_byz.11.c):

    • 获得轻微声望惩罚(prestige_mild_penalty)。
    • (隐藏效果)无声地处决艺术家安德烈亚斯·里佐斯。

背景介绍: 该事件模拟了历史上著名的“克里特画派”的兴起。在15世纪,克里特岛(尤其是威尼斯控制下的坎迪亚)成为后拜占庭艺术的重要中心,融合了拜占庭圣像画传统与意大利文艺复兴的风格。艺术家安德烈亚斯·里佐斯是这一画派的早期代表人物。事件反映了统治者如何对待这类文化人才:是资助并吸纳其才华,还是利用其影响力提升本国文化地位,抑或出于某种原因拒绝其发展。

完整事件代码

flavor_byz.11 = { #https://en.wikipedia.org/wiki/Cretan_School
	type = country_event
	title = flavor_byz.11.title
	desc = flavor_byz.11.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = BYZ
		tag = VEN
		from = 1444.1.1
		to = 1492.6.1
		monthly_chance = 3
	}
	image = "gfx/interface/illustrations/institutions/renaissance.dds"

	trigger = {
		at_war = no
		trigger_if = {
			limit = { this = c:VEN }
			NOT = { country_exists = c:BYZ }
		}
		own_entire_province = province_definition:crete_province
		location:candia = {
			province = {
				any_location_in_province = {
					count = all
					controller = root
				}
			}
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler_or_regent ?= { save_scope_as = target_character }
		if = {
			limit = {
				OR = {
					religion = religion:orthodox
					religion = religion:miaphysite
				}
			}
			create_character = {
				first_name = name_andrew
				last_name = Ritzos
				artist = iconographer
				birth_date = 1421.6.1
				artist_skill = 0.79
				culture = culture:greek_culture
				birth_location = location:candia
				script = byz_andreas_ritzos
				save_scope_as = target_artist
				estate = estate_type:burghers_estate
				create_in_limbo = yes
			}
		}
		else = {
			create_character = {
				first_name = name_andrew
				last_name = Ritzos
				artist = painter
				birth_date = 1421.6.1
				artist_skill = 0.79
				culture = culture:greek_culture
				birth_location = location:candia
				script = byz_andreas_ritzos
				save_scope_as = target_artist
				estate = estate_type:burghers_estate
				create_in_limbo = yes
			}
		}
	}

	option = {
		name = flavor_byz.11.a

		change_gold_effect = { scale = -3 }
		scope:target_artist = { move_country = root }
	}

	option = {
		name = flavor_byz.11.b

		culture = {
			add_cultural_tradition = cultural_tradition_severe_bonus
			add_cultural_influence = cultural_influence_severe_bonus
		}

		change_gold_effect = { scale = -1.5	}
		hidden_effect = {
   			kill_character_silently = scope:target_artist
  		}
	}

	option = {
		name = flavor_byz.11.c

		add_prestige = prestige_mild_penalty
		hidden_effect = {
   			kill_character_silently = scope:target_artist
  		}
	}
}