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_fra.21 伏尔泰《哲学通信》

时间范围

1732.1.1 - 1735.1.1,每月 12% 概率触发。

触发条件

  • 控制巴黎地区 (owns = location:paris)。
  • 英格兰 (c:ENG) 或大不列颠 (c:GBR) 至少有一个国家存在。

关键效果

选项: flavor_fra.21.a

  • 获得文化影响力轻度加成 (add_cultural_influence = cultural_influence_mild_bonus)。
  • 获得威望轻度加成 (add_prestige = prestige_mild_bonus)。
  • 在巴黎 (location:paris) 创建一件艺术作品:
    • 类型:论文 (work_of_art_type:treatise)
    • 关键标识:philosophical_letters
    • 质量:85
    • 创作者:事件中创建的伏尔泰角色 (scope:target_artist)

背景介绍

该事件模拟了法国启蒙思想家伏尔泰(François-Marie Arouet)于1733年匿名发表《哲学通信》(又称《英国书简》)的历史时刻。这部作品基于伏尔泰流亡英国期间的见闻,系统介绍了牛顿的物理学、洛克的哲学以及英国的君主立宪制、宗教宽容和商业社会,并将其与法国的专制制度进行对比。《哲学通信》的出版在法国思想界引起巨大震动,成为启蒙运动的重要催化剂,但也因其对法国社会与制度的尖锐批评而遭当局查禁。

完整事件代码

flavor_fra.21 = { # Voltaire 'Philosophical Letters'
	type = country_event
	title = flavor_fra.21.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					country_exists = c:ENG
					NOT = {
						country_exists = c:GBR
					}
				}
				desc = flavor_fra.21.desc
			}
			triggered_desc = {
				trigger = {
					country_exists = c:GBR
					NOT = {
						country_exists = c:ENG
					}
				}
				desc = flavor_fra.21.desc_GBR
			}
			triggered_desc = { # Fallback if cases such as Scotland forming GBR
				trigger = {
					AND = {
						country_exists = c:GBR
						country_exists = c:ENG
					}
				}
				desc = flavor_fra.21.desc_GBR
			}
		}
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1732.1.1
		to = 1735.1.1
		monthly_chance = 12
	}

	trigger = {
		owns = location:paris
		OR = {
			country_exists = c:ENG
			country_exists = c:GBR
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		create_character = {
			first_name = Francois_Marie
			last_name = Voltaire
			adm = 50
			dip = 82
			mil = 32
			birth_date = 1694.11.21
			birth_location = location:paris
			culture = culture:french
			religion = religion:catholic
			script = fra_francois_marie_voltaire

			artist_skill = 0.95
			artist = philosopher
			estate = estate_type:burghers_estate
			save_scope_as = target_artist
		}
	}

	option = {
		name = flavor_fra.21.a
		culture = {
			add_cultural_influence = cultural_influence_mild_bonus
		}
		add_prestige = prestige_mild_bonus
		location:paris = {
			create_art = {
				artist = scope:target_artist
				quality = 85
				type = work_of_art_type:treatise
				key = philosophical_letters
			}
		}
	}
}