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_vij.2 卡纳卡·达萨登场

时间范围

1530.1.1 - 1600.1.1,每月有 2% 的概率触发。

触发条件

  • 国家必须拥有哈韦里(haveri)地区。

关键效果

事件提供两个选项,均会创建同一位人物,但赋予其不同的艺术家身份。两个选项均不是历史选项(代码中未标记 historical_option = yes)。

选项 A:flavor_vij.2.a

  • 创建一位名为 卡纳卡·达萨(Kanaka Dasa) 的人物。
  • 人物属性:行政 46,外交 74,军事 21。
  • 出生日期:1509年11月6日。
  • 所属阶层:农民阶层。
  • 出生地:哈韦里(haveri)。
  • 艺术家技能:0.98。
  • 艺术家类型:作曲家(composer)
  • 该人物被保存为作用域 kanaka_dasa

选项 B:flavor_vij.2.b

  • 创建一位名为 卡纳卡·达萨(Kanaka Dasa) 的人物。
  • 人物属性:行政 46,外交 74,军事 21。
  • 出生日期:1509年11月6日。
  • 所属阶层:农民阶层。
  • 出生地:哈韦里(haveri)。
  • 艺术家技能:0.98。
  • 艺术家类型:哲学家(philosopher)
  • 该人物被保存为作用域 kanaka_dasa

背景介绍

卡纳卡·达萨是16世纪维查耶纳加尔帝国时期著名的诗人、哲学家和作曲家,属于虔诚派运动(Bhakti movement)的重要人物。他出身农民阶层,用坎纳达语创作了大量富含哲学思想的 devotional songs(虔诚歌曲),对卡纳塔克邦的文化和宗教生活产生了深远影响。此事件模拟了这位重要文化人物在帝国治下的登场。

完整事件代码

flavor_vij.2 = {
	hide_portraits = yes
	type = country_event
	title = flavor_vij.2.title
	desc = flavor_vij.2.desc
	historical_info = flavor_vij.2.historical_info

	illustration_tags = {
		10 = happy
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:clergy background = pop_type:clergy }
	}

	fire_only_once = yes
	dynamic_historical_event = {
		tag = VIJ
		from = 1530.1.1
		to = 1600.1.1
		monthly_chance = 2
	}

	trigger = {
		owns = location:haveri
	}

	option = {
		name = flavor_vij.2.a
		create_character = {
			first_name = Kanaka
			last_name = Dasa
			adm = 46
			dip = 74
			mil = 21
			birth_date = 1509.11.6
			estate = estate_type:peasants_estate
			birth_location = location:haveri
			artist_skill = 0.98
			artist = composer
			save_scope_as = kanaka_dasa
		}
	}
	option = {
		name = flavor_vij.2.b
		create_character = {
			first_name = Kanaka
			last_name = Dasa
			adm = 46
			dip = 74
			mil = 21
			birth_date = 1509.11.6
			estate = estate_type:peasants_estate
			birth_location = location:haveri
			artist_skill = 0.98
			artist = philosopher
			save_scope_as = kanaka_dasa
		}
	}
}