Another component of Mega Mod I think other mods might want to use. Available on mod browser under the same name. If you want to use this component, no need to ask or anything really, though it'd be polite to mention it is a part of Mega Mod. Feel free to modify any part you want.
Description:
DO NOT use with Mega Mod, or you will get doubled effects.
Units just get too powerful too fast. This mod makes units' combat values and costs go up more gradually with the eras. If you're tired of sweeping the board with horsemen, riflemen and mech infantry, this is for you. May result in messy numbers, mind you.
The code for those interested (the bottom four lines correct some oddball problems and rounding issues):
UPDATE Units SET 'Combat' = Combat*2/3 + 2 WHERE Combat > 0;
UPDATE Units SET 'RangedCombat' = RangedCombat*2/3 + 2 WHERE RangedCombat > 0;
UPDATE Units SET 'Cost' = Cost*2/3 + 15 WHERE Cost > 0 and Type <> 'UNIT_SETTLER' and Type <> 'UNIT_WORKER';
UPDATE Units SET 'Combat' = Combat + 1 WHERE Type IN ("UNIT_SWORDSMAN","UNIT_ROMAN_LEGION");
UPDATE Units SET 'RangedCombat' = RangedCombat - 1 WHERE Type IN ("UNIT_ROMAN_BALLISTA");
UPDATE Units SET 'Cost' = 680 WHERE Type IN ("UNIT_ATOMIC_BOMB");
UPDATE Units SET 'Cost' = 900 WHERE Type IN ("UNIT_NUCLEAR_MISSILE");
Description:
DO NOT use with Mega Mod, or you will get doubled effects.
Units just get too powerful too fast. This mod makes units' combat values and costs go up more gradually with the eras. If you're tired of sweeping the board with horsemen, riflemen and mech infantry, this is for you. May result in messy numbers, mind you.
The code for those interested (the bottom four lines correct some oddball problems and rounding issues):
UPDATE Units SET 'Combat' = Combat*2/3 + 2 WHERE Combat > 0;
UPDATE Units SET 'RangedCombat' = RangedCombat*2/3 + 2 WHERE RangedCombat > 0;
UPDATE Units SET 'Cost' = Cost*2/3 + 15 WHERE Cost > 0 and Type <> 'UNIT_SETTLER' and Type <> 'UNIT_WORKER';
UPDATE Units SET 'Combat' = Combat + 1 WHERE Type IN ("UNIT_SWORDSMAN","UNIT_ROMAN_LEGION");
UPDATE Units SET 'RangedCombat' = RangedCombat - 1 WHERE Type IN ("UNIT_ROMAN_BALLISTA");
UPDATE Units SET 'Cost' = 680 WHERE Type IN ("UNIT_ATOMIC_BOMB");
UPDATE Units SET 'Cost' = 900 WHERE Type IN ("UNIT_NUCLEAR_MISSILE");