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_boh.25 维谢布罗德大师

(事件ID对应文件:temp/BOH/flavor_boh.25.txt)

时间范围

1345.1.1 - 1370.12.30,在此期间每月有 2% 的概率触发。

触发条件

  • 国家 拥有 布拉格地区(location:prague)。
  • 国家 已拥有 “艺术赞助人”(patron_of_art)这一进步(Advance)。

关键效果

选项 A:flavor_boh.25.a

  • 效果:国库黄金减少(change_gold_effect = { scale = -3 })。
  • 效果:将事件中创建的目标艺术家(target_artist)移动至本国。

选项 B:flavor_boh.25.b

  • 效果:将事件中创建的目标艺术家(target_artist)驱逐出境(banish_character = yes)。

事件背景

在14世纪中叶,波希米亚王国(特别是布拉格地区)的艺术与文化在王室与贵族的赞助下开始蓬勃发展。随着“艺术赞助人”理念的传播,宫廷与富裕市民阶层有意识地从各地招募有才华的艺术家,以提升王国的文化声望与艺术成就。本事件模拟了这一时期,一位技艺出众的画家被发掘并受邀前来,国家需要决定是否投入资源接纳这位艺术家。

完整事件代码

flavor_boh.25 = { #Master of Vyšší Brod
	type = country_event
	title = flavor_boh.25.title
	desc = flavor_boh.25.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = BOH
		from = 1345.1.1
		to = 1370.12.30
		monthly_chance = 2
	}

	image = "gfx/interface/illustrations/institutions/renaissance.dds"

	trigger = {
		owns = location:prague
		has_advance = patron_of_art
	}

	immediate = {
		create_character = {
			age = 30
			artist = painter
			estate = estate_type:burghers_estate
			artist_skill = 0.8
			save_scope_as = target_artist
			add_trait = trait:prominent
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_boh.25.a

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

	option = {
		name = flavor_boh.25.b

		scope:target_artist = {
			banish_character = yes
		}
	}
}