platyping
Sleeping Dragon
You mean Bach? I can see it, you mean you cannot see it? Strange 

Promotions that would do the following (1 free given to a settler)
*Free specific building in the city it constructs
*The state religion founded in the city
*Population bonus in the city
*Culture bonus
*Protected (adds a military unit to the settler to protect it)
The religion one has already been done (not in promotion form though), but cant seem to get it to work in my mod
def cannotTrain(self,argsList):
pCity = argsList[0]
eUnit = argsList[1]
bContinue = argsList[2]
bTestVisible = argsList[3]
bIgnoreCost = argsList[4]
bIgnoreUpgrades = argsList[5]
## Arc De Triomphe Start ##
pPlayer = gc.getPlayer(pCity.getOwner())
bc_Triomphe = gc.getInfoTypeForString("BUILDINGCLASS_ARC_DE_TRIOMPHE")
if pPlayer.getBuildingClassCount(bc_Triomphe) == 1:
if gc.getUnitInfo(eUnit).isMilitaryProduction() == true:
return True
## Arc De Triomphe End ##
return False