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_mug.6] 泰姬陵的建造

时间范围:无特定起止日期(fromto 未定义),事件在满足触发条件后可能发生,无 monthly_chance 概率设定。

触发条件

  • 事件触发国(root)必须拥有阿格拉地区(location:agra)的所有权。

关键效果

  • 选项 A(flavor_mug.6.a)
    • 将事件中创建的艺术家人物(艾哈迈德·拉合里)移至触发国。
    • 在阿格拉地区创建一件艺术作品:
      • 关键标识:taj_mahal
      • 类型:纪念碑(work_of_art_type:monument
      • 品质:100(“它是泰姬陵”)
      • 艺术家:艾哈迈德·拉合里
    • 在首都市场添加一个持续60个月的临时需求:demand:taj_mahal_maintenance(泰姬陵维护需求)。
    • 国库减少3倍规模的金币(scale = -3)。
  • 选项 B(flavor_mug.6.b)
    • 触发国获得巨额声望惩罚(prestige_extreme_penalty)。
    • 将事件中创建的艺术家人物(艾哈迈德·拉合里)流放(banish_character)。

背景介绍: 该事件模拟了莫卧儿帝国时期在阿格拉建造泰姬陵的历史可能性。泰姬陵是沙贾汗皇帝为纪念其妻子穆塔兹·玛哈尔而建造的陵墓,被誉为世界奇迹之一。事件中涉及的建筑师艾哈迈德·拉合里(Ahmad Lahori)是历史上与泰姬陵设计相关的关键人物。选择建造将消耗大量资源并产生持续的维护需求,而拒绝建造则可能导致声望受损和人才流失。

完整事件代码

flavor_mug.6 = { #GRAVEYARD?
	type = country_event
	title = flavor_mug.6.title
	desc = flavor_mug.6.desc
	historical_info = flavor_mug.6.historical_info

	trigger = {
		location:agra.owner ?= root
	}

	immediate = {
		ruler ?= {
			save_scope_as = target_character2
		}

		location:agra = {
			save_scope_as = target_location
		}

		create_character = {
			estate = estate_type:burghers_estate
			first_name = name_ahmad
			last_name = lahori
			culture = culture:farsi_culture
			religion = religion:sunni
			artist = architect
			artist_skill = 0.9
			birth_date = 1570.3.7
			birth_location = location:lahore
			save_scope_as = target_artist
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_mug.6.a

		scope:target_artist = { move_country = root }
		scope:target_location = {
			create_art = {
				artist = scope:target_artist
				key = taj_mahal
				quality = 100 #It is the Taj Mahal
				type = work_of_art_type:monument
			}
		}

		capital.market = {
			add_temporary_demand = {
				type = demand:taj_mahal_maintenance
				months = 60
			}
		}

		change_gold_effect = { scale = -3 }
	}

	option = {
		name = flavor_mug.6.b

		add_prestige = prestige_extreme_penalty
		scope:target_artist = { banish_character = yes }
	}
}