def reqDarkC(caster):
pPlot = caster.plot()
iPelemoc = gc.getInfoTypeForString('UNIT_COUNCIL')
iThemoch = gc.getInfoTypeForString('UNIT_COUNCIL2')
iAlcinus0 = gc.getInfoTypeForString('UNIT_MITP')
iAlcinus = gc.getInfoTypeForString('UNIT_MIT')
iAlcinus2 = gc.getInfoTypeForString('UNIT_MIT2')
bPelemocPresent = false
bThemochPresent = false
bAlcinusPresent = false
for i in range(pPlot.getNumUnits()):
pUnit = pPlot.getUnit(i)
if pUnit.getUnitType() == iPelemoc:
bPelemocPresent = true
if pUnit.getUnitType() == iThemoch:
bThemocPresent = true
if pUnit.getUnitType() == iAlcinus0 or pUnit.getUnitType() == iAlcinus or pUnit.getUnitType() == iAlcinus2:
bAlcinusPresent = true
if bPelemocPresent and bThemocPresent and bAlcinusPresent:
return true
return False