﻿# Division template historical names system. Is a new method of naming the divisions based on the names-group assigned to it's template.
# If we run out of all historical names, the names will be assigned in the old way.
#
# Each group has a made up tag. Use it if you want to append more, or replace existing names with the extra txt files (modding).
#
# for_countries - lists all countries that can use it. If empty, or entNIR tag is missing, all countries in the world can use it.
#
# can_use - is a trigger that locks/unlocks the group under specific circumstances. The trigger is in a country scope.
#
# division_types - is a list of tokens to corresponding unit types. A player can in fact use any group of names for a div.template
#                  however this tag is a helper for an automated choice (for AI, or if the group must switch on it's own, because
#                  for example the current one is no longer available due to the can_use trigger saying so).
#                  In automated choice, the division template must have at least 1 of the following types for it to be chosen.
#
# fallback_name - Is going to be used if we run out of the scripted historical names. If you want to use the old division naming
#                 mechanics to be used for fallbacks, then just skip this option.
#
# unordered - It's a list of historical division names that did not have a number. Regardless if such names happened in history or not
#             this option is available here mainly for a mods.
#
# ordered - Is a list of all historical names. 
#           Numbers must start from 1 and up. 
#           Numbers can't repeat in one scope.
#           If you script the name for this group, at the same number (for example in a mod in another file), the name will be override.
#           All arguments between the brackets must be separated by spaces. Each argument is wrapped in "quotas".
#           1st argument = The name. It must contain either: 
#                          %d (for decimal number placement)
#                          %s (for string number placement - ROMAN numbers like XIV).
#           2nd argument is optional = A localizable text describing this historical division. The text will be visible in the tooltip
#                                      where you choose the historical division name.
#           3rd argument is optional = An URL preferably pointing to the WIKI. It's a future feature that is not currently working in
#                                      the current game version.
NIR_INF_01 = 
{
	name = "Infantry Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "infantry" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%d Ulster Infantry Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Division" }
		2 = { "%dnd Ulster Division" }
		3 = { "%drd Ulster Infantry Division" }
		4 = { "%dth Ulster Infantry Division" }
		5 = { "%dth Ulster Infantry Division" }
		6 = { "%dth Ulster Infantry Division" }
		7 = { "%dth Ulster Infantry Division" }
		8 = { "%dth Ulster Infantry Division" }
		9 = { "%dth Ulster Infantry Division" }
		10 = { "%dth Ulster Infantry Division" }
		11 = { "%dth Ulster Infantry Division" }
		12 = { "%dth Ulster Infantry Division" }
		13 = { "%dth Ulster Infantry Division" }
		14 = { "%dth Ulster Infantry Division" }
		15 = { "%dth Ulster Infantry Division" }
		16 = { "%dth Ulster Infantry Division" }
		17 = { "%dth Ulster Infantry Division" }
		18 = { "%dth Ulster Infantry Division" }
		19 = { "%dth Ulster Infantry Division" }
		20 = { "%dth Ulster Infantry Division" }		
		21 = { "%dst Ulster Infantry Division" }		
		22 = { "%dnd Ulster Infantry Division" }		
	}
}

NIR_CAV_01 = 
{
	name = "Cavalry Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "cavalry" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%d Ulster Cavalry Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Cavalry Division" }
		2 = { "%dnd Ulster Cavalry Division" }
		3 = { "%drd Ulster Cavalry Division" }
		4 = { "%dth Ulster Cavalry Division" }
		5 = { "%dth Ulster Cavalry Division" }
		6 = { "%dth Ulster Cavalry Division" }
		7 = { "%dth Ulster Cavalry Division" }
		8 = { "%dth Ulster Cavalry Division" }
		9 = { "%dth Ulster Cavalry Division" }
		10 = { "%dth Ulster Cavalry Division" }
	}
}

NIR_MOT_01 = 
{
	name = "Motor Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "motorized" }

	# Number reservation system will tie to another group.
	link_numbering_with = { NIR_INF_01 }

	fallback_name = "%d Ulster Motor Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Motor Division" }
		2 = { "%dnd Ulster Motor Division" }
		3 = { "%drd Ulster Motor Division" }
		4 = { "%dth Ulster Motor Division" }
		5 = { "%dth Ulster Motor Division" }
		6 = { "%dth Ulster Motor Division" }
		7 = { "%dth Ulster Motor Division" }
		8 = { "%dth Ulster Motor Division" }
		9 = { "%dth Ulster Motor Division" }
		10 = { "%dth Ulster Motor Division" }
	}
}

NIR_MEC_01 = 
{
	name = "Mechanized Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "mechanized" }

	# Number reservation system will tie to another group.
	link_numbering_with = { NIR_INF_01 }

	fallback_name = "%d Ulster Mechanized Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Mechanized Division" }
		2 = { "%dnd Ulster Mechanized Division" }
		3 = { "%drd Ulster Mechanized Division" }
		4 = { "%dth Ulster Mechanized Division" }
		5 = { "%dth Ulster Mechanized Division" }
		6 = { "%dth Ulster Mechanized Division" }
		7 = { "%dth Ulster Mechanized Division" }
		8 = { "%dth Ulster Mechanized Division" }
		9 = { "%dth Ulster Mechanized Division" }
		10 = { "%dth Ulster Mechanized Division" }
	}
}

NIR_ARM_01 = 
{
	name = "Armoured Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "light_armor" "medium_armor" "heavy_armor" "modern_armor" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%d Ulster Armoured Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Armoured Division" }
		2 = { "%dnd Ulster Armoured Division" }
		3 = { "%drd Ulster Armoured Division" }
		4 = { "%dth Ulster Armoured Division" }
		5 = { "%dth Ulster Armoured Division" }
		6 = { "%dth Ulster Armoured Division" }
		7 = { "%dth Ulster Armoured Division" }
		8 = { "%dth Ulster Armoured Division" }
		9 = { "%dth Ulster Armoured Division" }
		10 = { "%dth Ulster Armoured Division" }
	}
}

NIR_PAR_01 = 
{
	name = "Paratrooper Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "paratrooper" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Ulster Airborne Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Airborne Division" }
		2 = { "%dnd Ulster Airborne Division" }
		3 = { "%drd Ulster Airborne Division" }
		4 = { "%dth Ulster Airborne Division" }
		5 = { "%dth Ulster Airborne Division" }
		6 = { "%dth Ulster Airborne Division" }
		7 = { "%dth Ulster Airborne Division" }
		8 = { "%dth Ulster Airborne Division" }
		9 = { "%dth Ulster Airborne Division" }
		10 = { "%dth Ulster Airborne Division" }
	}
}

NIR_MAR_01 = 
{
	name = "Marine Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "marine" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Ulster Marines Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Marines Division" }
		2 = { "%dnd Ulster Marines Division" }
		3 = { "%drd Ulster Marines Division" }
		4 = { "%dth Ulster Marines Division" }
		5 = { "%dth Ulster Marines Division" }
		6 = { "%dth Ulster Marines Division" }
		7 = { "%dth Ulster Marines Division" }
		8 = { "%dth Ulster Marines Division" }
		9 = { "%dth Ulster Marines Division" }
		10 = { "%dth Ulster Marines Division" }
	}
}

NIR_MNT_01 = 
{
	name = "Mountain Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "mountaineers" }

	# Number reservation system will tie to another group.
	link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Ulster Mountain Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		1 = { "%dst Ulster Mountain Division" }
		2 = { "%dnd Ulster Mountain Division" }
		3 = { "%drd Ulster Mountain Division" }
		4 = { "%dth Ulster Mountain Division" }
		5 = { "%dth Ulster Mountain Division" }
		6 = { "%dth Ulster Mountain Division" }
		7 = { "%dth Ulster Mountain Division" }
		8 = { "%dth Ulster Mountain Division" }
		9 = { "%dth Ulster Mountain Division" }
		10 = { "%dth Ulster Mountain Division" }
	}
}

NIR_GAR_01 = 
{
	name = "Special Constabulary"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "infantry" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Special Constabulary"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		3 = { "%drd Special Constabulary" }
		4 = { "%dth Special Constabulary" }
		5 = { "%dth Special Constabulary" }
		6 = { "%dth Special Constabulary" }
		7 = { "%dth Special Constabulary" }
		8 = { "%dth Special Constabulary" }
		9 = { "%dth Special Constabulary" }
		10 = { "%dth Special Constabulary" }
		11 = { "%dth Special Constabulary" }
		12 = { "%dth Special Constabulary" }
		13 = { "%dth Special Constabulary" }
		14 = { "%dth Special Constabulary" }
		15 = { "%dth Special Constabulary" }
		16 = { "%dth Special Constabulary" }
		17 = { "%dth Special Constabulary" }
		18 = { "%dth Special Constabulary" }
		19 = { "%dth Special Constabulary" }
		20 = { "%dth Special Constabulary" }		
		21 = { "%dst Special Constabulary" }
		22 = { "%dnd Special Constabulary" }
	}
}


NIR_GAR_02 = 
{
	name = "Garrison Division"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "infantry" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Ulster Volunteer Force"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		3 = { "%drd Ulster Volunteer Force" }
		4 = { "%dth Ulster Volunteer Force" }
		5 = { "%dth Ulster Volunteer Force" }
		6 = { "%dth Ulster Volunteer Force" }
		7 = { "%dth Ulster Volunteer Force" }
		8 = { "%dth Ulster Volunteer Force" }
		9 = { "%dth Ulster Volunteer Force" }
		10 = { "%dth Ulster Volunteer Force" }
		11 = { "%dth Ulster Volunteer Force" }
		12 = { "%dth Ulster Volunteer Force" }
		13 = { "%dth Ulster Volunteer Force" }
		14 = { "%dth Ulster Volunteer Force" }
		15 = { "%dth Ulster Volunteer Force" }
		16 = { "%dth Ulster Volunteer Force" }
		17 = { "%dth Ulster Volunteer Force" }
		18 = { "%dth Ulster Volunteer Force" }
		19 = { "%dth Ulster Volunteer Force" }
		20 = { "%dth Ulster Volunteer Force" }		
		21 = { "%dst Ulster Volunteer Force" }
		22 = { "%dnd Ulster Volunteer Force" }
	}
}

NIR_GAR_03 = 
{
	name = "Orange Order Brigade"

	for_countries = { NIR }

	can_use = { always = yes }

	division_types = { "infantry" }

	# Number reservation system will tie to another group.
	#link_numbering_with = { NIR_INF_01 }

	fallback_name = "%dth Irish Infantry Division"

	# Names with numbers (only one number per entry). 
	# It's okay to have gaps in numbering.
	ordered =
	{
		3 = { "%drd Orange Order Brigade" }
		4 = { "%dth Orange Order Brigade" }
		5 = { "%dth Orange Order Brigade" }
		6 = { "%dth Orange Order Brigade" }
		7 = { "%dth Orange Order Brigade" }
		8 = { "%dth Orange Order Brigade" }
		9 = { "%dth Orange Order Brigade" }
		10 = { "%dth Orange Order Brigade" }
		11 = { "%dth Orange Order Brigade" }
		12 = { "%dth Orange Order Brigade" }
		13 = { "%dth Orange Order Brigade" }
		14 = { "%dth Orange Order Brigade" }
		15 = { "%dth Orange Order Brigade" }
		16 = { "%dth Orange Order Brigade" }
		17 = { "%dth Orange Order Brigade" }
		18 = { "%dth Orange Order Brigade" }
		19 = { "%dth Orange Order Brigade" }
		20 = { "%dth Orange Order Brigade" }		
		21 = { "%dst Orange Order Brigade" }
		22 = { "%dnd Orange Order Brigade" }
	}
}