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_jap.143] 足利学校复兴

时间范围:1432.1.1 - 1470.1.1(每月 12% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。
  • 国库资金大于 250 金币。
  • 国家拥有 ashikaga_loc 地区。

关键效果

  • 选项 A:让我们复兴这所伟大的学校!
    • 此为 历史选项
    • 效果:
      • 国库资金减少 150 金币。
      • 获得 research_progress_extreme_bonus(大量研究进度加成)。

背景介绍: 此事件模拟了室町时代日本足利学校的复兴。足利学校是日本最古老的学术机构之一,以其在儒学、医学和兵学方面的教育而闻名。在15世纪,随着幕府和地方大名的支持,这所学校得以重建并恢复其作为学术中心的地位,对日本的文化和知识发展产生了深远影响。

完整事件代码

flavor_jap.143 = { # Revival of the Ashikaga Gakko Academy
	type = country_event
	title = flavor_jap.143.title
	desc = flavor_jap.143.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = JAP
		from = 1432.1.1
		to = 1470.1.1
		monthly_chance = 12
	}

	trigger = {
		has_ruler = yes
		at_war = no
		gold > 250
		owns = location:ashikaga_loc
	}

	immediate = {
		ruler ?= {
			save_scope_as = our_ruler
		}
		location:ashikaga_loc = {
			save_scope_as = target_location
		}
	}

	option = { # Let us revive this great academy!
		name = flavor_jap.143.a
		historical_option = yes
		add_gold = -150
		add_research_progress = research_progress_extreme_bonus
	}
}