Sid Meier's Civilization V

Sid Meier's Civilization V

45 ratings
Mercenary Camp
   
Award
Favorite
Favorited
Unfavorite
Tags: Units
File Size
Posted
Updated
31.146 KB
14 May, 2015 @ 5:23am
13 Jun, 2016 @ 9:25pm
11 Change Notes ( view )
You need DLC to use this item.

Subscribe to download
Mercenary Camp

Description
Mercenary Camp is a building that allows you to hire(purchase) mercenaries. The only requirement for purchasing a mercenary unit is technology. So now you can purchase unique units of other civilizations and units that require resources which you don't have. Mercenaries have higher purchase price, double maintenance cost, can not be upgraded and if you disband one of them you don't get any money back. They also don't get experience from barracks or similar buildings but come with several random promotions. Every mercenaty also has "Embarkation" promotion..
This mod has several options that you can access by opening "Mercenary Camp (v 7)/Lua/MC.lua" with a text editor. To jump to MC mod folder paste "%USERPROFILE%\Documents\my games\Sid Meier's Civilization 5\MODS\Mercenary Camp (v 7)" into windows explorer address bar and press "enter"("return") key.
By default you can hire mercenary unique units only if you met the civilization they belong to. Line "local b_MC_AnyUniqueAvailable = false" controls this setting. Replace "false" with "true" to be able to hire every unique unit including ones from civilizations that are not in your current game. Replace "false" with "nil" to be able to hire unique units from civilizations that are in your current game before you meet them. Edit line "local iFreePromotions = 4" to change max number of regular promotions a mercenary unit has when hired. The number of promotions a mercenary has is a random number between 1 and iFreePromotions. Edit line "local iUniquePromotions = 1" to change number of unique promotions a mercenary unit has when hired. Those are promotions that can not be chosen when a unit levels up, like getting golden age points for killing enemy units. If a mercenary has negative promotions (e.g. "No Defensive Terrain Bonuses" that every mounted unit has), then instead of getting a unique promotion, a negative one may be removed. Carriers, bombers and fighter planes do not get unique promotions.
This mod makes some gameplay changes. Siege Tower range reduced to 1. "Amphibious" promotion besides usual bonuses gives +1 sight radius and +1 movement when embarked. "Withdraw Before Melee" promotion now gives 50% chance to withdraw instead of 80%. "Enhanced Flank Attack" promotion gives +100% flank attack bonus instead of +50%. Kris Swordsman's unique promotions were changed to make them more fun and balanced. "Recruitment" promotion lets you capture defeated enemy units but does not heal after killing enemy them. "Heroism" promotion does not make Kris swordsman a great general but gives GA points for killing enemy units and makes GG progress bar fill 100% faster. Units with "Ambition" promotion get +40% combat bonus when attacking, -20% penalty when defending and heal 20 HP when they kill an enemy unit. "Invulnerability" promotion was nerfed. Now it gives +20% combat bonus when defending and +10 HP when healing. "Enemy blade" promotion gives 30% combat bonus when outside friendly territory and 50% chance to take 10 damage if the unit ends turn in enemy territory. "Evil spirits" promotion gives -10% combat strength, but every adjacent enemy unit also receives -10% combat strength. "Sneak attack" promotion gives 100% flank attack bonus and an extra attack before engaging in melee. Kris Swordsman can get 3 new promotions: "Furious charge", "Raider" and "Novice sapper". "Furious charge" gives +50% combat strength bonus vs fortified units and cities. When a unit with this promotion is attacking it forces defender to retreat if it inflicts more damage than receives. A defender who cannot retreat takes 50% more damage. Units with "Raider" promotion ignore enemy zone of control, pillage without spending MP, can use enemy roads, steal gold equal to 50% of the damage inflicted on a city, can move after attacking. When next to an enemy city, units with "Novice sapper" promotion grant adjacent friendly units a 50% Bonus when attacking the city, but have 50% chance to take 10 Damage if they end turn in
37 Comments
T00N3Y-SA 10 Sep, 2023 @ 4:28am 
Unfortunately, the bug about the culture policy resetting still persists. I tried this mod for the first time today and I started at 1000 score which was a weird red flag, and then I got my first social policy at 25 culture, but the culture requirement remained at 25. It seems like such a weird bug for this mod to introduce.
QuantumPaws 20 Dec, 2016 @ 10:38am 
Great mod! Now I wish there was one to give me all unique traits 😶
TY 11 Jun, 2016 @ 9:35pm 
Okay, thanks
qqqbbb  [author] 11 Jun, 2016 @ 3:05am 
Ingame editor is another mod. Use it to give your civilization as much money as you want.
TY 11 Jun, 2016 @ 1:50am 
I don't know how to use it, I don't even know what that is lol
qqqbbb  [author] 11 Jun, 2016 @ 1:48am 
ingame editor
TY 10 Jun, 2016 @ 11:28pm 
What is IGE?
qqqbbb  [author] 10 Jun, 2016 @ 8:08pm 
Why don't you just use IGE?
TY 10 Jun, 2016 @ 6:21pm 
Okay, and how do I reduce the maintainance cost?
qqqbbb  [author] 10 Jun, 2016 @ 7:45am 
To make them upgradable open "Mercenary Camp.sql" with a text editor, scroll to the bottom and add this:

UPDATE Units
SET Requirements = (SELECT UnitClassType FROM Unit_ClassUpgrades WHERE UnitType IS Units.Civilopedia)
WHERE Type LIKE '%_MC_MERC';

INSERT INTO Unit_ClassUpgrades (UnitType,UnitClassType)
SELECT Type,Requirements FROM Units WHERE Type LIKE '%_MC_MERC' AND Requirements IS NOT NULL;

UPDATE Language_en_US
SET Text = 'Double maintenance cost. No refund when disbanded.'
WHERE Tag = 'TXT_KEY_PROMOTION_MC_MERC_HELP';