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.504] 卡西尼地图——法国首份精确地图

时间范围:1735.1.1 - 1783.1.1(每月 10% 概率)

触发条件

  • 国家拥有统治者 (has_ruler = yes)

关键效果

  • 选项 A:委托制图师绘制法国地图! (历史选项)
    • 花费金币:减少 3 倍规模 (scale = -3)
    • 文化:获得极端加成级别的文化影响力 (add_cultural_influence = cultural_influence_extreme_bonus)
    • 将目标艺术家 (target_artist) 移动到法国 (move_country = c:FRA)
    • 在巴黎 (location:paris) 创建一件艺术品:
      • 艺术家:target_artist
      • 品质:70
      • 类型:编年史 (work_of_art_type:chronicle)
      • 关键标识:cartes_de_cassini
    • AI 选择概率:90%
  • 选项 B:这项委托对国家财政而言过于昂贵
    • 获得声望:轻微加成 (add_prestige = prestige_mild_bonus)
    • 获得金币:增加 1.5 倍规模 (scale = 1.5)
    • 隐藏效果:静默杀死目标艺术家 (kill_character_silently = scope:target_artist)
    • AI 选择概率:10%

背景介绍: 18世纪,法国王室委托天文学家和制图师卡西尼家族进行全国性的精确测绘,最终成果即著名的“卡西尼地图”。这是法国第一份基于三角测量法制作的全国地图,其科学性和精确性在当时处于世界领先地位,极大地促进了法国国内行政管理、军事规划和地理认知的发展。该事件反映了启蒙时代对科学、知识与国家治理结合的追求。

完整事件代码

flavor_fra.504 = { # The Cartes de Cassini # First Accurate Map of France
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.504.title
 	desc = flavor_fra.504.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1735.1.1
		to = 1783.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
 	}

	illustration_tags = {
		10 = regular
		10 = interior
	}	

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		create_character = {
			first_name = name_caesar.name_francis
			last_name = cassini_de_thury
			adm = 62
			dip = 46
			mil = 20
			culture = culture:french
			birth_location = location:paris
			religion = religion:catholic
			birth_date = 1714.6.17
			estate = estate_type:burghers_estate
			script = cassini
			create_in_limbo = yes
			save_scope_as = target_artist
			artist_skill = 0.65
			artist = calligrapher
		}
	}

 	option = { # Commission the Cartographer to map France!
		name = flavor_fra.504.a
		historical_option = yes
		change_gold_effect = { scale = -3 }
		culture = {
			add_cultural_influence = cultural_influence_extreme_bonus
		}
		scope:target_artist = {
			move_country = c:FRA
		}
		location:paris = {
			create_art = {
				artist = scope:target_artist
				quality = 70
				type = work_of_art_type:chronicle
				key = cartes_de_cassini
			}
		}
		ai_chance = {
			factor = 0.9
		}
 	}

 	option = { # Such a commission would be too great an expense of the state
		name = flavor_fra.504.b
		add_prestige = prestige_mild_bonus
		change_gold_effect = { scale = 1.5 }
		hidden_effect = {
			kill_character_silently = scope:target_artist
		}
		ai_chance = {
			factor = 0.1
		}
 	}
}