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_mch.7 军事领袖的崛起

时间范围

1337.1.1 - 1821.1.1
每月 20% 概率触发

触发条件

  • 国家拥有统治者。
  • 统治者的军事能力(mil≥ 80
  • 统治者拥有变量 mch_num_of_battles_won,且该变量值 ≥ 10

关键效果

选项: flavor_mch.7.a

  • 为国家增加 巨额威望prestige_extreme_bonus)。
  • 为触发事件的统治者添加特质 trait:dragon_tiger

背景介绍

该事件模拟了一位杰出的军事领袖在经历多次战场胜利后,其威望与声誉达到顶峰的时刻。当一位统治者不仅具备卓越的军事才能,还积累了足够多的胜绩时,国家将因其杰出的领导而获得巨大的声望提升,统治者本人也可能被赋予象征勇猛与力量的尊贵称号。

完整事件代码

flavor_mch.7 = {
	type = country_event
	title = flavor_mch.7.title
	desc = flavor_mch.7.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = MCH
		from = 1337.1.1
		to = 1821.1.1
		monthly_chance = 20
	}

	trigger = {
		has_ruler = yes
		ruler = {
			mil >= 80
			has_variable = mch_num_of_battles_won
			var:mch_num_of_battles_won >= 10
		}
	}
	
	illustration_tags = {
        10 = happy
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:nobles background = pop_type:soldiers }
		ruler = {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mch.7.a

		add_prestige = prestige_extreme_bonus
		scope:target_character = {
			add_trait = trait:dragon_tiger
		}
	}
}