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_ira.31 军事理论家的抉择

时间范围:1550.1.1 - 1700.1.1,每月 3% 概率触发

触发条件

  • 国家为 IRA
  • 当前君主或摄政满足以下任一条件:
    • 军事能力值 mil 大于等于 80。
    • 拥有特质 military_theorist(军事理论家)。

关键效果

  • 选项 A (flavor_ira.31.a)

    • 触发前提:国家拥有至少一个已建造陆军建筑 has_land_military_building 的省份。
    • 效果:为所有拥有陆军建筑的省份增加少量繁荣度 prosperity_mild_bonus
  • 选项 B (flavor_ira.31.b)

    • 效果
      • 增加大量陆军传统 army_tradition_extreme_bonus
      • 使社会价值观 quality_vs_quantity(质量 vs 数量)大幅向左移动 societal_value_huge_move_to_left(倾向于“质量”)。
  • 选项 C (flavor_ira.31.c)

    • 效果
      • 增加大量陆军传统 army_tradition_extreme_bonus
      • 使社会价值观 quality_vs_quantity(质量 vs 数量)大幅向右移动 societal_value_huge_move_to_right(倾向于“数量”)。

背景介绍: 在16至17世纪,爱尔兰(IRA)的军事发展面临关键抉择。一位杰出的军事领袖或理论家登上历史舞台,他的理念将深刻影响国家的建军思想。是应该投资于现有军事设施,提升其效率与周边繁荣;还是彻底改革军队,在“精兵路线”与“人海战术”之间做出根本性的战略选择?这一事件反映了爱尔兰在动荡时期塑造其军事传统的十字路口。

完整事件代码

flavor_ira.31 = {
	type = country_event
	title = flavor_ira.31.title
	desc = flavor_ira.31.desc

	dynamic_historical_event = {
		tag = IRA
		from = 1550.1.1
		to = 1700.1.1
		monthly_chance = 3
	}

	fire_only_once = yes

	trigger = {
		ruler_or_regent ?= {
			OR = {
				mil >= 80
				has_trait = military_theorist
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		ruler_or_regent ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_ira.31.a

		trigger = {
			any_owned_location = {
				has_land_military_building = yes
			}
		}

		custom_tooltip = {
			text = ira_grant_prosperity_to_armory_building_locations
			every_owned_location = {
				limit = {
					has_land_military_building = yes
				}
				change_prosperity = prosperity_mild_bonus
			}
		}
	}

	option = {
		name = flavor_ira.31.b

		add_army_tradition = army_tradition_extreme_bonus
		change_societal_value = {
			type = quality_vs_quantity
			value = societal_value_huge_move_to_left
		}
	}

	option = {
		name = flavor_ira.31.c

		add_army_tradition = army_tradition_extreme_bonus
		change_societal_value = {
			type = quality_vs_quantity
			value = societal_value_huge_move_to_right
		}
	}
}