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_hab.40 弗劳恩施泰因圣母像

时间范围:1510.1.1 - 1520.1.1 (每月 10% 概率)

触发条件

  • 拥有 kirchdorf 地区。
  • kirchdorf 地区拥有 temple 建筑。
  • 是国际组织 hre(神圣罗马帝国)的领袖。
  • 拥有在位统治者。

关键效果

  • 选项 A (flavor_hab.40.a)

    • 国库减少 3 倍规模的金币。
    • 将目标人物 target_character 移动至本国。
    • kirchdorf 地区创建一件艺术品:
      • 类型:雕像
      • 品质:60
      • 艺术家:target_character
      • 关键标识:frauenstein_madonna
  • 选项 B (flavor_hab.40.b)

    • 隐藏效果:静默处决目标人物 target_character
    • 增加 clergy_estate(神职人员阶层)的阶层满意度(estate_satisfaction_mild_bonus)。
    • 提升 kirchdorf 地区的繁荣度(prosperity_very_weak_bonus)。
    • kirchdorf 地区创建一件艺术品(参数同选项A)。

背景介绍: 该事件围绕神圣罗马帝国皇帝与乌尔姆出生的著名雕塑家格雷戈里·埃尔哈特展开。在1510年至1520年间,皇帝面临一个选择:是出资聘请这位才华横溢的雕塑家为基希多夫的一座教堂创作一尊圣母玛利亚雕像(即“弗劳恩施泰因圣母像”),还是采取更符合教会利益的方式,在安抚神职人员的同时完成这项艺术委托。这一事件反映了文艺复兴时期统治者如何在艺术赞助、宗教关系与财政支出之间进行权衡。

完整事件代码

flavor_hab.40 = { #The Frauenstein Madonna
	type = country_event
	title = flavor_hab.40.title
	desc = flavor_hab.40.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1510.1.1
		to = 1520.1.1
		monthly_chance = 10
	}

	immediate = {
		create_character = {
			first_name = name_gregory
			last_name = Erhart
			birth_date = 1465.1.1
			birth_location = location:ulm
			estate = estate_type:burghers_estate
			adm = { 20 70 }
			dip = { 20 70 }
			mil = { 20 70 }
			artist_skill = 0.7
			culture = culture:swabian
			artist = sculptor
			save_scope_as = target_character
			script = hab_gregor_erhart
			create_in_limbo = yes
		}
		ruler = {
			save_scope_as = target_ruler
		}
	}

	trigger = {
		owns = location:kirchdorf
		location:kirchdorf = {
			has_building = building_type:temple
		}
		is_leader_of_international_organization = international_organization:hre
		has_ruler = yes
	}

	option = {
		name = flavor_hab.40.a
		change_gold_effect = { scale = -3 }
        scope:target_character = {
            move_country = root
        }
		location:kirchdorf = {
			create_art = {
				quality = 60
				artist = scope:target_character
				type = work_of_art_type:statue
				key = frauenstein_madonna
			}
		}
	}

	option = {
		name = flavor_hab.40.b
		hidden_effect = {
   			kill_character_silently = scope:target_character
  		}
		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
		location:kirchdorf = {
			change_prosperity = prosperity_very_weak_bonus
		}
		location:kirchdorf = {
			create_art = {
				quality = 60
				artist = scope:target_character
				type = work_of_art_type:statue
				key = frauenstein_madonna
			}
		}
	}
}