##### Division Templates #####
division_template = {
	name = "Infantry Division"  	# Standard formation for frontline divisions

	regiments = {
		infantry = { x = 0 y = 0 }
		infantry = { x = 0 y = 1 }
		infantry = { x = 0 y = 2 }
		infantry = { x = 1 y = 0 }
		infantry = { x = 1 y = 1 }
		infantry = { x = 1 y = 2 }
		infantry = { x = 2 y = 0 }
		infantry = { x = 2 y = 1 }
		infantry = { x = 2 y = 2 }
	}
}

division_template = {
	name = "Garrison Brigade" 

	regiments = {						
		infantry = { x = 0 y = 0 }
		infantry = { x = 0 y = 1 }
		infantry = { x = 1 y = 0 }
		infantry = { x = 1 y = 1 }
	}
	priority = 0
}

division_template = {
	name = "Cavalry Brigade"

	regiments = {
		cavalry = { x = 0 y = 0 }
		cavalry = { x = 0 y = 1 }
		cavalry = { x = 1 y = 0 }
		cavalry = { x = 1 y = 1 }
	}
}

division_template = {
	name = "Motorised Division"

	regiments = {
		motorized = { x = 0 y = 0 }
		motorized = { x = 0 y = 1 }
        motorized = { x = 0 y = 2 }
        motorized = { x = 1 y = 0 }
		motorized = { x = 1 y = 1 }
        motorized = { x = 1 y = 2 }
	}
}

division_template = {
	name = "Mountain Division"
	
	regiments = {
		mountaineers = { x = 0 y = 0 }
	    mountaineers = { x = 0 y = 1 }
		mountaineers = { x = 0 y = 2 }
		mountaineers = { x = 0 y = 3 }
		mountaineers = { x = 1 y = 0 }
		mountaineers = { x = 1 y = 1 }
		mountaineers = { x = 1 y = 2 }
		mountaineers = { x = 1 y = 3 }
	}
	priority = 2
}

###### OOB ######
units = {
	division = {			
		name = "1. Infantry Division"
		location = 1978
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "2. Infantry Division"
		location = 4998
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "3. Infantry Division"
		location = 12717
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "4. Infantry Division"
		location = 12763
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "5. Infantry Division"
		location = 1910
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "6. Infantry Division"
		location = 1910
		division_template = "Infantry Division"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	
	division = {			
		name = "1. Garrison Brigade"
		location = 10737
		division_template = "Garrison Brigade"
		start_experience_factor = 0.5
		start_equipment_factor = 1.0

	}	

	division = {			
		name = "1. Mountain Division"
		location = 8010
		division_template = "Mountain Division"
		start_experience_factor = 1.0
		start_equipment_factor = 1.0

	}		

}

#########################
## STARTING PRODUCTION ##
#########################
instant_effect = {
		
							if = {
		limit = {
			has_dlc = "By Blood Alone"
		}
				add_equipment_to_stockpile = { 
					type = small_plane_airframe_0
					amount = 200
					producer = NEP
					variant_name = "Type 3"
				}
								add_equipment_to_stockpile = { 
					type = small_plane_cas_airframe_0
					amount = 100
					producer = NEP
					variant_name = "Q-1" 
				}
		}
			if = {
		limit = {
			NOT = { has_dlc = "By Blood Alone" }
		}
	add_equipment_to_stockpile = {
		type = fighter_equipment_0
		amount = 200
		producer = NEP
		}
	add_equipment_to_stockpile = {
		type = CAS_equipment_1
		amount = 100
		producer = NEP
		}
		}
		
	add_equipment_to_stockpile = {
		type = infantry_equipment_0
		amount = 24333
		producer = NEP
		}
	add_equipment_to_stockpile = {
		type = support_equipment_1
		amount = 1825
		producer = NEP
		}
	add_equipment_to_stockpile = {
		type = artillery_equipment_1
		amount = 2086
		producer = NEP
		}
	add_equipment_to_stockpile = {
		type = motorized_equipment_1
		amount = 500
		producer = NEP
		}
	add_equipment_to_stockpile = {
		type = gw_tank_equipment
		amount = 150
		producer = NEP
		}
}
#####################