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 * GC.getGameSpeedInfo(GC.getGameINLINE().getGameSpeedType()).getHurryConscriptAngerPercent()) / 100;
}
}
We add ESPIONAGE_CITY_POP_EACH_MOD * (CityPop - 1)
We add ESPIONAGE_CITY_TRADE_ROUTE_MOD if the city has trade routes with us
We add ESPIONAGE_CITY_RELIGION_STATE_MOD if the city has our state religion (and the enemy DOESN'T) but we don't have holy city, and ESPIONAGE_CITY_HOLY_CITY_MOD if we have the founding location
We multiply by 1 - (YourCultureInTheCity * ESPIONAGE_CULTURE_MULTIPLIER_MOD) / max(1,OwnersCulture + YourCulture)
We add the distance modifier
We subtract ESPIONAGE_EACH_TURN_UNIT_COST_DECREASE * NumOfStationaryTurns (atm capped at 50)
ReligionTypes eReligion = getStateReligion();
if (NO_RELIGION != eReligion)
{
int iReligionModifier = 0;
// City has Your State Religion
if (pCity->isHasReligion(eReligion))
{
if (GET_PLAYER(eTargetPlayer).getStateReligion() != eReligion)
{
iReligionModifier += GC.getDefineINT("ESPIONAGE_CITY_RELIGION_STATE_MOD");
}
if (hasHolyCity(eReligion))
{
iReligionModifier += GC.getDefineINT("ESPIONAGE_CITY_HOLY_CITY_MOD");;
}
}
This is exactly related to tech stealing costs, so I'll make a comparison.
Before we start, I must say that while research (at a healthy rate) is possible both by cottages and specialists, espionage can't have unlimited spies assigned and as such is forced to be generated by cottages.
It also wouldn't hurt the guide if I posted a list of buildings enhancing both (Multiplier buildings):
Note: UB are not taken into account
1.Comparison of multplier buildings
Summary: Science Wins
Science:
Academy (+50%) - Can only be built by a Great Scientist
Monasteries (+10% each) (Meditation) - Requires religion, so I'll count only one per city
Laboratory (+25%) (Superconductors)
Library (+25%) (Writing)
Observatory (+25%) (Astronomy)
University (+25%) (Education)
Oxford University (+100%) (Education) - Requires 3 Universities, National Wonder
Sums up to 260%, but with all religions can be made 300%, 2.6 per 1 is not bad.
Espionage:
Castle (25%) (Engineering)
Intelligence Agency (+50%) (Communism)
Scotland Yard (+100%) - Can only be built by a great spy
Jail (+50%) (Constitution)
Sums up to 225%, still not so bad even when compared to science's 260%.
Given these values, we can make a simple simulation, here shown results for numbers 1 - 30.
This can easily lead to a conclusion that SCE is more powerful as it generates more from than ECE .
I, however, want to make sure it's as optimal as it seems.
2. Comparison of usage
Science:
While bonuses that apply to research seem quite straightforward (according to this thread.
These are (+30% * numberOfPlayersThatKnowTheTech/numbersOfPlayersWhoStartedTheMap), so max 30%, and +20% per each additional prerequisite met (max 40%). This is multiplicative with beakers, so it adds a coefficient of 1.7 (note that this is the VERY BEST possible one) in front of raw .
This means that the minimal time of completion is:
t = baseTechCost / (4.42 * baseCommerce)
This is a total of 442% boost, this is huge.
They don't apply to base tech cost, and so are not beneficial for EE.
Espionage:
We also assume the very best possible circumstances, still they are much easier to encounter than the science ones.
I'll assume a near city, with 20% distance penalty.
We have trade routes with it, it has our state religion we founded, our spy's been standing there for 5 turns. I don't consider the espionage spending bonus, however.
100% + 20% - 20% - 25% - 50% = 25%
25% = 1/4
Therefore, we get 1/1/4 percentage bonus, which is equal to 400%.
The time needed to generate the points therefore is
t = baseTechCost / (9 * baseCommerce)
Seems good? Hell yeah!
The time is 2.0362 times shorter than if we wanted to research it manually.
3.Example and conclusion
Say we want to research (or steal) advanced flight. Our city (either research or espionage) produces 30 raw per turn. The numbers are of course not realistic but I want to show the concept.
researchTime = 5000 / (4.42 * 30) = 37.70, which in civ terms is 38 turns
espionageTime = 5000 / (9 * 30) = 18.51 => 19 turns
Our gain by stealing the tech is immense. We also have to remember that the expionage points can get +25% civic boost (nationhood), while research only +10% (free religion).
This however is not as great as it seems (slightly less ). It is very problematic for techs you have to be the first to research in order to get additional benefits (religious techs,physics,economics,liberalism,fission,...) as tech can only be stolen when it's arleady complete and partial progress can't be acquired with espionage economy. It also yields problems with techs out of AI's research path. Additionally, a super science city can easily be transformed from a specialist economy to cottage one (well, 50 turns), while the espionage one has to start cottaged.
It is, however synergistic with intensive tech brokering. And last, but not least, there is deficit espionage, which is more optimal than the deficit research, as average science boost per a building is 37.14%, while average espionage booster is as much as 56.25%. Unfortunately, the very first EE building (except courthouse which I don't take in account as it's not a multiplier) comes in the medieval era.
I hope that this analysis has provided you enough insight in espionage vs research that you at least try to play using it and post your results.
We add ESPIONAGE_CITY_RELIGION_STATE_MOD if the city shares our state religion but we don't have holy city, and ESPIONAGE_CITY_HOLY_CITY_MOD if we have the founding location
i can't read code so i don't know how to show you where it is, but i know it's there somewhere. you get -25 for having the holy city of your state religion if the religion is present in the target's city no matter what his state religion is. but the -15 (ESPIONAGE_CITY_RELIGION_STATE_MOD) applies only if your state religion is not his state religion.
sometimes if they change to my SR that's enough for me to lose "investigate city" everywhere, wah. if i have cristo, i change to FR, swap them to that, and then swap back to my SR so i can watch them again .
ReligionTypes eReligion = getStateReligion();
if (NO_RELIGION != eReligion)
{
int iReligionModifier = 0;
// City has Your State Religion
if (pCity->isHasReligion(eReligion))
{
if (GET_PLAYER(eTargetPlayer).getStateReligion() != eReligion)
{
iReligionModifier += GC.getDefineINT("ESPIONAGE_CITY_RELIGION_STATE_MOD ");
}
iReligionModifier += GC.getDefineINT("ESPIONAGE_CITY_RELIGION_STATE_MOD "); which is our bonus, only applies what enemy's state religion != (not equal to) our state religion, however the city has to have our state religion spread inside. Thanks for bringing it to attention.
I have a question about the spread culture mission. What are its effects?
It says in the game that I spread 5% culture. However after succesfully completing the mission in one of my enemys cities, nothing has visibly changed. The culture percentages remain the same. Is this mission broken, or am I doing something wrong here?
Yes true, but as far as I can say (that is without code analasys), it seems to methat a failed mission daes not cost EP, just the hammer to build the spy.
I will be verry happy if somebody could confirm this.
I am just learning the espionage system, but when experimenting with spread culture option I noticed that it was something like +27 and it said something like 5% my Greek population was added to his Russian population.
My cultural border was starting to wrap around his city and I was trying to start a riot so he would give me the city for free. I guess I experimented too much and he declared war on me - lol.
anyway, the big benefit was that when I captured the city during war that it only had like 3 turns of revolt instead of the normal 6 or more turns of revolt.
later in the game I tried this method again, but was unable to spread culture for some reason. Maybe because I wasn't using the Espionage regularly and my opponent probably was? or maybe some features are replaced/outdated with new techs?
I also tried to spread culture to my neighbor city and it was something like +1000, while that city had about 900/5000. Unfortunately I spent too many points on that mission and it became not enough to Investigate it any more. But a couple of turn later I again checked that city and it was about 950/5000. So, my mission WAS succesful, my spy WASN'T caught but culture DIDN'T get spread!!! In a little bit I tried the same again, and I was spreading about +600 culture pints and again the same story...
Can anyone explain me what did I do wrong and how to fix it?
Thanks.
very, very, very good article, but you have to explain to me in more detail how you get the commerce multiplier for science and espionage. For example, I understand 442% comes from 262% from buildings + 170% from tech getting cheaper, but how do you get the 900% for espionage multiplier. I just don't get the math.... Can you make that manual research vs. espionage analysis clearer and more explanatory plz, because it is the most important part of your article. You get my 5 stars now, but make that part more readable plz.
hmm, I got it now, buildings give 225% espionage points production, but the -75% espionage mission reduction cost is not added to 225%. It makes the 225% bonus 4 times stronger due to the reduction of the mission cost. Hence 900%. Beautiful math there... Still make that part of the article more readable =) numbers come out of nowhere...
In the early game, when most of your cities have libraries, you seem to only get 170%+25%=195% bonus to science as well or even less.
Espionage however can get -75% mission cost reduction (effectively 400% more espionage points) pretty early and it does not seem to depend much on the buildings you got...
However, espionage won't have much building multipliers until Medieval age. And even then, it is rather rare to build castles.
Still.... 195% science bonus vs. 400% in the early game.... Espionage is pretty strong then... much stronger than I expected... Courthouses also give very strong espionage points 4 per turn... Definitely gonna try some heavy warmongering, followed by hybrid espionage economy...
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.