• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Tom Morrison

Sergeant
Aug 15, 2020
50
10
Hi!

Have you ever wondered why the United States, such a huge nation, is so easy to take over early in the game? Well, historically, it wouldn't be. The United States had 27 divisions of National Guard infantry, and another 27 divisions of Organized Reserve infantry in 1936. As America slowly awakened to the growing danger of Fascism, the training, equipment, and readiness of these 54 divisions increased. In 1940, reacting to the fall of Paris, the United States mobilized its National Guard. The Organized Reserve would muster when the Japanese bombed Pearl Harbor on 7 DEC 1941.

Below is the code I wrote to reflect the growing readiness of the US National Guard and Organized Reserve.

As always, comments and feedback are welcome.

#########################################################################
# Mobilization: National Guard (1921)
#########################################################################

event = {
id = 39133
random = no
country = USA

trigger = {
OR = {
atwar = yes

axis = 400 # Historically the amount of VP the axis had in 1940 when USA mobilized National Guard
comintern = 400 # If Comintern gained the same amount of VP as the Axis had in 1940, USA would respond similarly
AND = {
NOT = { allies = 142 } # Allies lost over 50% of their 283 at start 1936 VP: Democracy losing ground to someone neither Axis nor Comintern?
atwar = ENG
}
}
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
OR = {
NOT = { technology = 1020 } # 1936 Inf
AND = {
NOT = { technology = 6040 } # Delay Doctrine
NOT = { technology = 6050 } # Mobile Defense Doctrine
}
}
}

date = { day = 0 month = january year = 1936 }
offset = 10
deathdate = { day = 20 month = december year = 1948 }

name = "Mobilization: National Guard (1921)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The National Guard maintained a higher state of readiness and would mobilize first. Unfortunately, between the Great Depression and a parsimonious Congress, little had been done since 1921 to improve their equipment or training. Responding to Axis conquests in 1940, the US mobilized its National Guard and instituted a peacetime draft. Any comparable threat would have prompted a similar response."
picture = "american_reinforcments7"

action_a = {
name = "Call out the National Guard!"

# Note: Mobilization information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay
# Demographics information of military age males taken from 1940 US Census.

command = { type = manpowerpool value = 8500 } # Over 25 million military age males in 1940. Actual wartime practice drafted just over 1/3.

command = { type = add_corps value = land where = 600 } # Boston, I Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 602 } # New York, II Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 607 } # Baltimore, III Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 670 } # Atlanta, IV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 628 } # Columbus, V Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 620 } # Chicago, VI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 684 } # Little Rock, VII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 717 } # San Antonio, VIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 765 } # San Francisco, IX Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
}
}

#########################################################################
# Mobilization: Organized Reserves (1921)
#########################################################################

event = {
id = 39134
random = no
country = USA

trigger = {
atwar = yes
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
event = 39133 # USA Mobilized National Guard (1921)
OR = {
NOT = { technology = 1020 } # 1936 Inf
AND = {
NOT = { technology = 6040 } # Delay Doctrine
NOT = { technology = 6050 } # Mobile Defense Doctrine
}
}
}

date = { day = 8 month = january year = 1936 }
offset = 10
deathdate = { day = 28 month = december year = 1948 }

name = "Mobilization: Organized Reserve (1921)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The Organized Reserve maintained a lower state of readiness and would mobilize after the National Guard. Unfortunately, between the Great Depression and a parsimonious Congress, little had been done since 1921 to improve the equipment or training of either force."
picture = "american_reinforcments7"

action_a = {
name = "Muster the Organized Reserve!"

# Note: This information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay

command = { type = add_corps value = land where = 600 } # Boston, XI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 602 } # New York, XII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 607 } # Baltimore, XIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 670 } # Atlanta, XIV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 628 } # Columbus, XV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 620 } # Chicago, XVI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 684 } # Little Rock, XVII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 717 } # San Antonio, XVIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 765 } # San Francisco, XIX Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
}
}

#########################################################################
# Mobilization: National Guard (1937)
#########################################################################

event = {
id = 39135
random = no
country = USA

trigger = {
OR = {
atwar = yes
axis = 400 # Historically the amount of VP the axis had in 1940 when USA mobilized National Guard
comintern = 400 # If Comintern gained the same amount of VP as the Axis had in 1940, USA would respond similarly
AND = {
NOT = { allies = 142 } # Allies lost over 50% of their 283 at start 1936 VP: Democracy losing ground to someone neither Axis nor Comintern?
atwar = ENG
}
}
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
NOT = { event = 39133 } # Did not already mobilize National Guard
technology = 1020 # 1936 Inf
NOT = { technology = 1030 } # 1939 Inf
OR = {
technology = 6040 # Delay Doctrine
technology = 6050 # Mobile Defense Doctrine
}
}

date = { day = 0 month = january year = 1936 }
offset = 10
deathdate = { day = 20 month = december year = 1948 }

name = "Mobilization: National Guard (1937)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The National Guard maintained a higher state of readiness and would mobilize first. Despite the Great Depression, in 1937 Congress funded some improvements to the equipment and training of these forces. Responding to Axis conquests in 1940, the US mobilized its National Guard and instituted a peacetime draft. Any comparable threat would have prompted a similar response."
picture = "american_reinforcments7"

action_a = {
name = "Call out the National Guard!"

# Note: This information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay
# Demographics information of military age males taken from 1940 US Census.

command = { type = manpowerpool value = 8500 } # Over 25 million military age males in 1940. Actual wartime practice drafted just over 1/3.

command = { type = add_corps value = land where = 600 } # Boston, I Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 602 } # New York, II Corps
command = { type = add_division value = hq when = 0 } # First US Army included I, II, and III Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 607 } # Baltimore, III Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 670 } # Atlanta, IV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 628 } # Columbus, V Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 620 } # Chicago, VI Corps
command = { type = add_division value = hq when = 0 } # Second US Army included IV, V, and VI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 684 } # Little Rock, VII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 789 } # Omaha. Third US Army included VI, VIII, and IX Corps
command = { type = add_division value = hq when = 0 }

command = { type = add_corps value = land where = 717 } # San Antonio, VIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 765 } # San Francisco, IX Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
}
}

#########################################################################
# Mobilization: Organized Reserves (1937)
#########################################################################

event = {
id = 39136
random = no
country = USA

trigger = {
atwar = yes
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
OR = {
event = 39133 # USA: Mobilization: National Guard (1921)
event = 39135 # USA: Mobilization: National Guard (1937)
}
NOT = { event = 39134 } # Did not already mobilize Organized Reserve
technology = 1020 # 1936 Inf
NOT = { technology = 1030 } # 1939 Inf
OR = {
technology = 6040 # Delay Doctrine
technology = 6050 # Mobile Defense Doctrine
}
}

date = { day = 8 month = january year = 1936 }
offset = 10
deathdate = { day = 28 month = december year = 1948 }

name = "Mobilization: Organized Reserve (1937)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The Organized Reserve maintained a lower state of readiness and would mobilize after the National Guard. Despite the Great Depression and the usual parsimony of Congress, in 1937 Congress did authorize some improvements to the equipment and training of these forces."
picture = "american_reinforcments7"

action_a = {
name = "Muster the Organized Reserve!"

# Note: This information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay

command = { type = add_corps value = land where = 600 } # Boston, XI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 602 } # New York, XII Corps
command = { type = add_division value = hq when = 0 } # Fourth US Army included XI, XII, and XIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 607 } # Baltimore, XIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 628 } # Columbus, Fifth US Army
command = { type = add_division value = hq when = 0 } # Fifth US Army included XIV, XV, and XVI Corps

command = { type = add_corps value = land where = 670 } # Atlanta, XIV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 628 } # Columbus, XV Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 620 } # Chicago, XVI Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 689 } # St. Louis, Sixth US Army
command = { type = add_division value = hq when = 0 } # Sixth US Army included XVII, XVIII, and XIX Corps

command = { type = add_corps value = land where = 684 } # Little Rock, XVII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 717 } # San Antonio, XVIII Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }

command = { type = add_corps value = land where = 765 } # San Francisco, XIX Corps
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
}
}

#########################################################################
# Mobilization: National Guard (1940)
#########################################################################

event = {
id = 39137
random = no
country = USA

trigger = {
OR = {
atwar = yes
axis = 400 # Historically the amount of VP the axis had in 1940 when USA mobilized National Guard
comintern = 400 # If Comintern gained the same amount of VP as the Axis had in 1940, USA would respond similarly
AND = {
NOT = { allies = 142 } # Allies lost over 50% of their 283 at start 1936 VP: Democracy losing ground to someone neither Axis nor Comintern?
atwar = ENG
}
}
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
NOT = { event = 39133 } # Did not already mobilize National Guard
NOT = { event = 39135 }
technology = 1030 # 1939 Inf
OR = {
technology = 6040 # Delay Doctrine
technology = 6050 # Mobile Defense Doctrine
}
}

date = { day = 0 month = january year = 1938 }
offset = 10
deathdate = { day = 20 month = december year = 1948 }

name = "Mobilization: National Guard (1940)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The National Guard maintained a higher state of readiness and would mobilize first. Responding to Axis conquests in 1940, the US mobilized its National Guard, significantly improved its equipment and training, and instituted a peacetime draft. State Guards were raised internal security, drawing from men otherwise exempt from the draft. Any comparable threat would have prompted a similar response."
picture = "american_reinforcments7"

action_a = {
name = "Call out the National Guard!"

# Note: This information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay
# Demographics information of military age males taken from 1940 US Census.

command = { type = manpowerpool value = 8500 } # Over 25 million military age males in 1940. Actual wartime practice drafted just over 1/3.

command = { type = add_corps value = land where = 600 } # Boston, I Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 602 } # New York, II Corps
command = { type = add_division value = hq when = 0 } # First US Army included I, II, and III Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 607 } # Baltimore, III Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 670 } # Atlanta, IV Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 628 } # Columbus, V Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 620 } # Chicago, VI Corps
command = { type = add_division value = hq when = 0 } # Second US Army included IV, V, and VI Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 684 } # Little Rock, VII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 789 } # Omaha. Third US Army included VI, VIII, and IX Corps
command = { type = add_division value = hq when = 0 }

command = { type = add_corps value = land where = 717 } # San Antonio, VIII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 765 } # San Francisco, IX Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

# Almost every state established "State Guards," but only the below states had large enough state guards to justify division-sized units:

command = { type = add_corps which = "New York State Guard" value = land where = 602 } # New York City, New York
command = { type = add_division which = "1st NY State Guard" value = garrison when = 0 }
command = { type = add_division which = "2nd NY State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Pennsylvania State Guard" value = land where = 614 } # Pittsburgh, Pennsylvania
command = { type = add_division which = "1st PA State Guard" value = garrison when = 0 }
command = { type = add_division which = "2nd PA State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Illinois State Guard" value = land where = 620 } # Chicago, Illinois
command = { type = add_division which = "IL State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Ohio State Guard" value = land where = 615 } # Toledo, Ohio
command = { type = add_division which = "OH State Guard" value = garrison when = 0 }

command = { type = add_corps which = "California State Guard" value = land where = 764 } # Sacramento, California
command = { type = add_division which = "CA State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Texas State Guard" value = land where = 717 } # San Antonio, Texas
command = { type = add_division which = "TX State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Michigan State Guard" value = land where = 616 } # Detroit, Michigan
command = { type = add_division which = "MI State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Massachusetts State Guard" value = land where = 600 } # Boston, Massachusetts
command = { type = add_division which = "MA State Guard" value = garrison when = 0 }

command = { type = add_corps which = "New Jersey State Guard" value = land where = 600 } # Newark, New Jersey
command = { type = add_division which = "NJ State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Missouri State Guards" value = land where = 689 } # St. Louis, Missouri
command = { type = add_division which = "MO State Guard" value = garrison when = 0 }

command = { type = add_corps which = "Indiana State Guards" value = land where = 619 } # Indianapolis, Indiana
command = { type = add_division which = "IN State Guard" value = garrison when = 0 }
}
}

#########################################################################
# Mobilization: Organized Reserves (1940)
#########################################################################

event = {
id = 39138
random = no
country = USA

trigger = {
atwar = yes
NOT = { exists = CSA } # No civil war, so no divided loyalties
NOT = { exists = CAL }
OR = {
event = 39133 # USA: Mobilization: National Guard (1921)
event = 39135 # USA: Mobilization: National Guard (1937)
event = 39137 # USA: Mobilization: National Guard (1940)
}
NOT = {
event = 39134 # Did not already mobilize Organized Reserve (1921)
event = 39136 # Did not already mobilize Organized Reserve (1937)
}
technology = 1030 # 1939 Inf
OR = {
technology = 6040 # Delay Doctrine
technology = 6050 # Mobile Defense Doctrine
}
}

date = { day = 8 month = january year = 1936 }
offset = 10
deathdate = { day = 28 month = december year = 1948 }

name = "Mobilization: Organized Reserve (1940)"
desc = "The mobilization plan of the United States included the National Guard and the Organized Reserve. The Organized Reserve maintained a lower state of readiness and would mobilize after the National Guard. In 1940, Congress authorized significant improvements to the equipment and training of these forces."
picture = "american_reinforcments7"

action_a = {
name = "Muster the Organized Reserve!"

# Note: This information taken from U.S. Army Order of Battle 1919–1941 (Vol. 1), by Lieutenant Colonel (Ret.) Steven E. Clay

command = { type = add_corps value = land where = 600 } # Boston, XI Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 602 } # New York, XII Corps
command = { type = add_division value = hq when = 0 } # Fourth US Army included XI, XII, and XIII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 607 } # Baltimore, XIII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 628 } # Columbus, Fifth US Army
command = { type = add_division value = hq when = 0 } # Fifth US Army included XIV, XV, and XVI Corps

command = { type = add_corps value = land where = 670 } # Atlanta, XIV Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 628 } # Columbus, XV Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 620 } # Chicago, XVI Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 689 } # St. Louis, Sixth US Army
command = { type = add_division value = hq when = 0 } # Sixth US Army included XVII, XVIII, and XIX Corps

command = { type = add_corps value = land where = 684 } # Little Rock, XVII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 717 } # San Antonio, XVIII Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }

command = { type = add_corps value = land where = 765 } # San Francisco, XIX Corps
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
command = { type = add_division value = infantry when = 1 }
}
}
 
  • 1Love
Reactions: