@WT: I've been working on the assumption that our goal should be to get the many visible triple-food sites under our control ASAP.
Capturing Alexandria and Thebes first is paying enough lip service to research (and is also convenient because it might be harder later - I wasn't convinced until we saw how weak Alexandria's units were). If we capture them early, we're not really constrained by research any more - I feel like we're in danger of metaphorically double-bulbing Education without having 6 cities for Oxford if we prioritise research over expansion any more than that.
If we can work out some shenanigans with Hamburg or something similar and it doesn't delay our conquest, I might be game for it.
I'd like to war and tech at the same time. I'm hoping T55 is the last turn we have to run a 0% slider. We're still in good position to cash in on Currency.
I definitely like Math asap. It'd save us 1t on Currency with Alexa (6t instead of 7t). Currently Math is 9t or 10t with looking at Hatty's research. Our workers aren't going to be ready to go gung-ho chopping before that, so one question is how many chops get delayed waiting for math? And how many units does that delay and how much?
But rather than delve into that, I think we're agreed on playing 2 turns and seeing if we see Hatty's research. I haven't calculated how much the cost to see it will rise as we put more eps on her.
if (NO_BUILDING != eBuilding)
{
if (NULL != pCity && pCity->getNumRealBuilding(eBuilding) > 0)
{
if (canSpyDestroyBuilding(eTargetPlayer, eBuilding))
{
iMissionCost = iBaseMissionCost + ((100 + kMission.getDestroyBuildingCostFactor()) * iCost) / 100;
}
}
}
}
else if (kMission.getBuyCityCostFactor() > 0)
{
// Buy City
if (NULL != pCity)
{
iMissionCost = iBaseMissionCost + (kMission.getBuyCityCostFactor() * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getGrowthPercent()) / 10000;
}
}
else if (kMission.getCityInsertCultureCostFactor() > 0)
{
// Insert Culture into City
if (NULL != pPlot && pPlot->getCulture(getID()) > 0)
{
int iCultureAmount = kMission.getCityInsertCultureAmountFactor() * pCity->countTotalCultureTimes100();
iCultureAmount /= 10000;
iCultureAmount = std::max(1, iCultureAmount);
iMissionCost = iBaseMissionCost + (kMission.getCityInsertCultureCostFactor() * iCultureAmount) / 100;
}
}
else if (kMission.isDestroyImprovement())
{
if (NULL != pPlot && !pPlot->isCity())
{
if (pPlot->getImprovementType() != NO_IMPROVEMENT || pPlot->getRouteType() != NO_ROUTE)
{
iMissionCost = (iBaseMissionCost * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getBuildPercent()) / 100;
}
}
}
else if (kMission.getCityPoisonWaterCounter() > 0)
{
FAssert(NULL != pCity);
// Cannot poison a city's water supply if it's already poisoned (value is negative when active)
if (NULL != pCity && pCity->getEspionageHealthCounter() <= 0)
{
iMissionCost = iBaseMissionCost;
}
}
// Make city unhappy
else if (kMission.getCityUnhappinessCounter() > 0)
{
FAssert(NULL != pCity);
// Cannot make a city unhappy if you've already done it (value is negative when active)
if (NULL != pCity && pCity->getEspionageHappinessCounter() <= 0)
{
iMissionCost = iBaseMissionCost;
}
}
// Make city Revolt
else if (kMission.getCityRevoltCounter() > 0)
{
FAssert(NULL != pCity);
// Cannot make a city revolt if it's already revolting
if (NULL != pCity && pCity->getOccupationTimer() == 0)
{
iMissionCost = iBaseMissionCost;
}
}
else if (kMission.getCounterespionageMod() > 0)
{
if (GET_TEAM(getTeam()).getCounterespionageTurnsLeftAgainstTeam(GET_PLAYER(eTargetPlayer).getTeam()) <= 0)
{
iMissionCost = (iBaseMissionCost * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getResearchPercent()) / 100;
}
}
else if (kMission.getPlayerAnarchyCounter() > 0)
{
// Player anarchy timer: can't add more turns of anarchy to player already in the midst of it
if (!GET_PLAYER(eTargetPlayer).isAnarchy())
{
iMissionCost = (iBaseMissionCost * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getAnarchyPercent()) / 100;
}
}
else if (kMission.isPassive())
{
iMissionCost = (iBaseMissionCost * (100 + GET_TEAM(GET_PLAYER(eTargetPlayer).getTeam()).getEspionagePointsAgainstTeam(getTeam()))) / 100;
}
else
{
iMissionCost = (iBaseMissionCost * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getResearchPercent()) / 100;
}
Now the cost is 85 eps on Hatty. Her ep spending is 114%. That seems like:
(.75 * (100 + 0))* 1.14 = 85
Is that it?
If so, and we do 4eps this turn and 42eps next turn, we're at 94eps, so she would have to add 95 / 1.14 /.75 - 100 = 11.11 eps. (.75 * 112) * 1.14 = 95. Check. She's not going to do that.
2. Delaying Alexa by 8t costs us 240 raw beakers @30bpt. If Alexa is currently running a castes scientist, she could pop the GS as early as t70, bulbing T71. Pollina, can you tell if Alexa is working more than two tiles in the current save? The two fogged desert tiles would have roads if they were improved, right?
We can see Hatty's demo graphs. Her production dropped to 4 after she adopted Caste. That could mean that she is running a priest somewhere. Her crop yield seems to be 22. That could be 2 floodplains cottages and a coast tile in Alexa and 2 fish in Thebes. Or 1 floodplains cottage (hamlet) in Alexa and 3 fish in Thebes.
With Hatty being CRE, I don't much like the idea of giving her one of our cities to keep her alive. I do like the idea of stealing a tech or two from her if she settles a 3rd city before we capture her two main cities. Not sure if it is worth it to delay capturing the Mids for it though. Our / ratio won't be all that great anyway, maybe around 1.4 after running the EP slider. She's been running her EP slider quite a bit. With the prereq mod from PH and Currency, the cost of self teching CoL is roughly the same. There might be a better use for our free 4 per turn.
I'm not sure how you're calculating the 1.4 ratio. For CoL, assuming Alexa is delayed 8t, we roughly break even. But then for Philosophy, I get a ratio of 2.4/2.7/3.8 for religion 1/.85/.6. If we steal Math or other techs Philo just keeps getting cheaper. I see Philo costing as low as 400/340/240 eps for religion 1/.85/.6.
So for me, the question is, will we want Philo or not? If so, we want to steal it.
Did the AI start with the whole map (or at least a good chunk of it) revealed? Seems pretty likely at this point.
I'm not sure how you're calculating the 1.4 ratio. For CoL, assuming Alexa is delayed 8t, we roughly break even. But then for Philosophy, I get a ratio of 2.4/2.7/3.8 for religion 1/.85/.6. If we steal Math or other techs Philo just keeps getting cheaper. I see Philo costing as low as 400/340/240 eps for religion 1/.85/.6.
So for me, the question is, will we want Philo or not? If so, we want to steal it.
Yeah, that's probably not the case. I was wondering why we had a trade connection with Gandhi and others. I also thought we had more trade connections pre-Sailing, but after checking the saves I see that was not the case.
We can see Hatty's demo graphs. Her production dropped to 4 after she adopted Caste. That could mean that she is running a priest somewhere. Her crop yield seems to be 22. That could be 2 floodplains cottages and a coast tile in Alexa and 2 fish in Thebes. Or 1 floodplains cottage (hamlet) in Alexa and 3 fish in Thebes.
Good spot! Interesting. Note there are no religious buildings to work a priest with, but your observation of the 4 total hammers confirms the settled scientist in Alexa, which gives the 4th hammer.
The graphs also show an increase in Hatty's ep spending in the last two turns, from 90% to 80% to 70% or from 90% to 80% or from 90% to 70%, not sure. Assuming 90-80-70 works for T59 and T61 but not perfectly for T60. For T59 I get close to the 117 f-b I had calculated here using 2 sci in Alexa and 4 sci Thebes. T60 swaps a sci for a fp in Alexa, but is still missing 3 GNP.. T61 works perfectly with no sci in Alexa.
In any case, it seems likely that Alexa is working an extra scientist or even two on some turns, possibly creating the next GS sooner than T75. If Alexa were to work 2 sci from T59 for 9t, the GS would pop on T68. So our range is now from T68 to T75. Not sure I feel like monitoring the GNP calcs all that closely, especially since I'm not certain about it, but we could do it. Maybe we won't have to delay Alexa much at all waiting for the GS.
Will we lose our resource networks when we DoW Hatty?
The question is, what happened between T55 and T56 that connected us to Mehmed, Darius, and Gandhi? Did Sal connect the Red Sea to the Arabian Sea? Did Stalin connect to the Black Sea?
Did Sal get Sailing ibt 55/56? Could that have connected Thebes and Delhi/Persepolis? I don't know. I'm always confused by the trade connection mechanics.
ZPV, you're still not certain we should delay Math. Does that mean you want to debate more or do you agree on playing forward 2t to see Hatty's research, using something like the following?
Did Sal get Sailing ibt 55/56? Could that have connected Thebes and Delhi/Persepolis? I don't know. I'm always confused by the trade connection mechanics.
Pollina, you almost gave me a heart attack. I thought we were surely going to lose our resource trades with Gandhi and Darius. Maybe we still will, but thankfully on T56 we had all those new trade networks and Sal still lacked Sailing. He then proceeded to get Sailing on T57.
Humbug. That means T67. A DoW will nerf her research a bit and also delay the GS. That means Thebes before Alexa isn't too great an idea. Rather Athens first. Then again, it actually argues for Thebes first, because Alexa has no pop for whipping to speak of.
ZPV, you're still not certain we should delay Math. Does that mean you want to debate more or do you agree on playing forward 2t to see Hatty's research, using something like the following?
So long as we're committed to stealing something (anything) moderately useful, the EPs won't go to waste, so go ahead.
I don't think we'll achieve anything more with debate. Maybe we'll find out that Hatty is teching Aesthetics->Lit->Music and we have to kill her ASAP to protect our free artist.
Hatty GNP: 150
Thebes 16/877
Alexa 239/838
Berlin --
IT
Hatty calls to offer IW for HBR. Nice offer but no thanks.
T62 1520BC
Joao has IW and both he and Hatty will trade it. Joao has iron 1n of his cows on a coastal plains hill. He just got harder to capture unless we deny it. We could worker harvest that tile with a galley. AIs don't sense danger from sea.
Gandhi completes BW.
Joao founds Oporto on the hill 2w of Spice Island.
100% ep slider
Hatty GNP: 167; Crops: 22; Prod: 4h (The 167 could just be Monarchy at 40% tech bonus, or 2sci in Alexa again)
Thebes 32/877
Alexa 255/838 -- 33h looks like a granary
Berlin 199/832
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.