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_eng.218 乔舒亚·雷诺兹与伦敦文艺圈

时间范围

1760.1.1 - 1780.1.1 (每月 1% 概率触发)

触发条件

  • 国家拥有普利茅斯 (owns = location:plymouth)。
  • 国家拥有至少一位技能不低于 0.5 的画家 (any_artist = { artist_type = painter, artist_skill >= 0.5 })。
  • 国家拥有伦敦 (location:london),且该地的繁荣度不低于 0.75 (prosperity >= 0.75)。

关键效果

选项 A (历史选项)

  • 为伦敦添加一个名为 the_dining_club 的地点修正,持续时间为无限期 (months = -1)。
  • 为国家拥有的所有作家、画家或哲学家类型的艺术家增加 0.05 点技能 (add_artist_skill = 0.05)。
  • 显示自定义提示 flavor_eng.218.tt1flavor_eng.218.tt2

选项 B

  • 前提条件:内阁成员数量大于 1 (any_cabinet_character = { count > 1 })。
  • 为伦敦添加一个名为 the_dining_club 的地点修正,持续时间为无限期 (months = -1)。
  • 为国家拥有的所有作家、画家或哲学家类型的艺术家增加 0.05 点技能 (add_artist_skill = 0.05)。
  • 显示自定义提示 flavor_eng.218.tt1flavor_eng.218.tt2
  • 国家损失 3 年收入 (change_gold_effect = { scale = -3 })。
  • 国家所有内阁成员增加 10 点行政能力和 10 点外交能力 (add_adm = 10, add_dip = 10)。

选项 C

  • 秘密处决由本事件创建的乔舒亚·雷诺兹角色 (kill_character_silently = scope:joshua_reynolds)。
  • 国家获得少量威望 (add_prestige = prestige_mild_bonus)。

背景介绍

18世纪中后期,随着英国国力与伦敦的繁荣达到顶峰,文化艺术生活也日趋活跃。普利茅斯出生的画家乔舒亚·雷诺兹是这一时期英国肖像画领域的领军人物,他于1768年成为皇家艺术学院的创始院长,对英国艺术界产生了深远影响。此事件模拟了雷诺兹的登场及其在伦敦建立文艺社交圈(如著名的“文学俱乐部”)的过程,这一圈子汇聚了当时的文人、艺术家和思想家,推动了英国文化的发展。

完整事件代码

flavor_eng.218 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.218.title
	desc = flavor_eng.218.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1760.1.1
		to = 1780.1.1
		monthly_chance = 1
	}

	trigger = {

		owns = location:plymouth

		any_artist = {
			owner = root
			artist_type = painter
			artist_skill >= 0.5
		}

		location:london = {
			prosperity >= 0.75
			owner = root
		}

	}
	image = "gfx/interface/illustrations/institutions/renaissance.dds"
	immediate = {

		location:london = { save_scope_as = target_location }

		random_artist = {
			limit = {
				owner = root
				artist_type = painter
				artist_skill >= 50
			}
			save_scope_as = random_artist
		}

		create_character = {
			first_name = name_joshua
			last_name = Reynolds
			estate = estate_type:burghers_estate
			adm = 80
			dip = 80
			mil = 0
			birth_date = 1723.1.1
			birth_location = location:plymouth
			artist_skill = 0.8
			artist = painter
			save_scope_as = joshua_reynolds
			script = eng_joshua_reynolds
		}

	}

	option = {
		name = flavor_eng.218.a
		historical_option = yes

		location:london = {
			add_location_modifier = { modifier = the_dining_club months = -1 mode = add_and_extend }
		}

		every_artist = {
			limit = {
				owner = root
				OR = {
					artist_type = writer
					artist_type = painter
					artist_type = philosopher
				}
			}
			add_artist_skill = 0.05
		}

		custom_tooltip = flavor_eng.218.tt1
		custom_tooltip = flavor_eng.218.tt2

	}

	option = {
		name = flavor_eng.218.b
		trigger = {
			any_cabinet_character = {
				count > 1
			}
		}

		location:london = {
			add_location_modifier = { modifier = the_dining_club months = -1 mode = add_and_extend }
		}

		every_artist = {
			limit = {
				owner = root
				OR = {
					artist_type = writer
					artist_type = painter
					artist_type = philosopher
				}
			}
			add_artist_skill = 0.05
		}

		custom_tooltip = flavor_eng.218.tt1
		custom_tooltip = flavor_eng.218.tt2

		change_gold_effect = { scale = -3 }

		every_character = {
			limit = {
				in_cabinet = yes
				owner = root
			}
			add_dip = 10
			add_adm = 10
		}

	}

	option = {
		name = flavor_eng.218.c

		hidden_effect = { kill_character_silently = scope:joshua_reynolds }

		add_prestige = prestige_mild_bonus

	}

	historical_info = flavor_eng.218.historical_info

}