| 
         The Nerd's Page 
		For calculators go here *Stills needs finishing* 
        This page is dedicated to all the Nerds and formula
        freaks out there. This is the page where normal people wouldn't
        go...just nerds...like me. I will try to get as many formulas for the
        game as possible and if you have a formula which I don't have please
        tell me. 
        --------------------------------------------------------------------------------------------------------------------- 
        1. Everyone's favorite, the portal upkeep 
        Upkeep = ((Portals-1)^1.2736)*10000 
        --------------------------------------------------------------------------------------------------------------------- 
        2. The overbuild formula 
        OB%=(((Buildings/size)^2)-1)*100 
        --------------------------------------------------------------------------------------------------------------------- 
        3. The Research Formula 
        Research%=200*(1-e^(-rp/(10*nw))) 
        e=2.78182818, RP=research points, nw=networth 
        --------------------------------------------------------------------------------------------------------------------- 
        4. Fleet Readiness Loss  
        myPl - # of your planets 
        hisPl - # of his planets 
        myEm - # of my Empire's planets 
        hisEm - # of his Empire's planets 
        - a normal attack: 
         
        frLoss = [[((myPl+1)/(hisPl+1))1.8+[[myEm+1]/[hisEm+1]]1.2]*0.5]*12.5 
        max = 300 
         
        - war declared: 
         
        frLoss = [[((myPl+1)/(hisPl+1))1.8+[[myEm+1]/[hisEm+1]]1.2]*0.5]*12.5/3 
        max = 300 
         
         
        - intra-family attack: 
         
        frLoss = [[[((myPl+1)/(hisPl+1))+1]1.2]
        *0.5]* 12.5 /3 
        max = 50 
        note that the value within[]
        has to be at least 0.5 
        --------------------------------------------------------------------------------------------------------------------- 
        5. Psychic/Agent Readiness loss 
        a=(Requirement-Your
        Op Research)1.2 
        max=150 (if over u can't do the op) 
        a=0.5*((1+myPl)/(1+hisPl))+(myNW/hisNW) 
        min=0.75, if less than 0.75, then 0.75 
        - a normal op: 
        frLoss=(1+0.01*[(Requirement-Your
        Research)1.2])*Readiness*([0.5*([(1+myPl)/(1+hisPl)]1.2+((1+myEm)/[1+hisEm])1.8)]) 
        - at war/intra-fam/ally op: 
        frLoss=[(1+0.01*[(Requirement-Your
        Research)1.2])*Readiness*([0.5*([(1+myPl)/(1+hisPl)]1.2+((1+myEm)/[1+hisEm])1.8)])]/3 
        note:  
        1. (Requirement-Your Op
        Research)1.2 must be below 150 or the op is not doable 
        2. 0.5*(((1+myPl)/(1+hisPl))1.2+((1+myEm)/(1+hisEm))1.8) must be equal or above 0.75,
        if it's below count it as 0.75  |