Corlindale

Are you sure he has strength 1? When I built him the only strength he had was 1 holy from (I thought) the Bless promotion granted by my Altar of the Luonnotar.
 
Wait... I thought that graft flesh only worked on living units (Liches are undead) and that the Peace spell was inherit in the Corindale unit, not some promotion that would carry over to a flesh golem. How are you doing the grafting, and how does it help anyway?
 
But why bother? he loses his special ability, and could turn into a lich without being grafted anyway. Now,if Lich removed the golem promotion it would be worth it...
 
Actually, it's impossible to do.

Yep, you can't turn a Flesh Golem into a Lich.

Code:
def reqLichdom(caster):
    if not canCast(caster):
        return False
    if caster.getUnitClassType() == gc.getInfoTypeForString('UNITCLASS_LICH'):
        return False
    if caster.getUnitClassType() == gc.getInfoTypeForString('[B]UNITCLASS_FLESH_GOLEM[/B]'):
        return[B] False[/B]
    pPlayer = gc.getPlayer(caster.getOwner())
    if pPlayer.getUnitClassCount(gc.getInfoTypeForString('UNITCLASS_LICH')) >= 3:
        return False
    return True
 
Back
Top Bottom