Just realized I made a small error in my script, which gave the baseline the CH's +50% modifier. It doesn't change too much, actually.
corrected plot of CH with +50% yield:
corrected plot of CH with +100% yield:
and here's what CH at 50% yield and Merc at high upkeep, assuming the upkeep difference will be something like 0.5gpt per citizen (I have no idea how accurate that is, btw, since I can't load PB22 right now to check)
looks like making merc high upkeep is good enough...
Code:
% +5% for each point of population of the From city over 10
% +25% if the city From is connected to its capital
% +50% if the city From has a harbor
% +100% if the city From has the Temple of Artemis
% +100% if the city To is on another continent
% for foreign To city, +100% if it is on another continent and the From city has a customs house
% for foreign To city, +3% per turn (up to a max of 150%) since the last war between civs owning To and From
% calculate the additional commerce from trade routes
% first iteration is just free market (red), second iteration is FM+Harbor (black), then finally FM+Harbor+CH. (blue)
% then calculate the number of quay+breakwater coast tiles we'd need to work to bring in the same much income
% negative values mean that quay+breakwater is always better for a city of this size
for r=routes
x = r - routes(1) + 1;
route_total = 0;
routemod = cap_bonus + (h_bonus*h(x)) + (ch_bonus*ch(x)) + ict_bonus + peace_bonus + popmod;
for i=[1:r]
route_total = route_total + floor(routemod.*fpopmod);
end
I figured that once we started using a mod that was designed for 5 player pbems to run games with over thirty players all bets were off. Also I'm finally willing to remove the word minimalistic from the mod description.
(June 2nd, 2015, 15:02)Krill Wrote: I figured that once we started using a mod that was designed for 5 player pbems to run games with over thirty players all bets were off. Also I'm finally willing to remove the word minimalistic from the mod description.
Understand, and the weird Civ4.5 hybrid that is treehugger mod seems well thought out...but I'd think that something with 30+ players will need minimalism or at least obviously-BtS-DNA for the wide audience. All civs and most leaders will get picked, after all!
If only you and me and dead people know hex, then only deaf people know hex.
That is why all the other shit like the religion changes aren't included. OTOH a building that gives +1 commerce to coastal tiles enables better FIN balance by re-enabling river commerce. The custom house and harbour changes are implemented as buffs to already present buildings. The breakwater is there to provide a final balance lever.