-- Soviets want more troops, let them learn on the battlefield.
-- helps them produce troops faster
function P.CallLaw_training_laws(minister, voCurrentLaw)
local ministerCountry = minister:GetCountry()
local lbAtWarGER = ministerCountry:GetRelation(CCountryDataBase.GetTa g("GER")):HasWar()
-- If atwar with Germany check for special conditions on training
if lbAtWarGER then
local liCYear = CCurrentGameState.GetCurrentDate():GetYear()
local lbControlMoscow = (CCurrentGameState.GetProvince(1409):GetController () == ministerTag)
-- If its 1943 and we still control Moscow make better trained troops
if liCYear > 1942 and lbControlMoscow then
return CLawDataBase.GetLaw(28) -- _BASIC_TRAINING_
else
return CLawDataBase.GetLaw(27) -- _MINIMAL_TRAINING_
end
else
return CLawDataBase.GetLaw(28) -- _BASIC_TRAINING_
end
end