[NOT A BUG] Alhambra not giving unit bonus?

Barak

Emperor
Joined
May 1, 2003
Messages
1,520
Location
Chicago
In a game as Japan, i built La Alhambra in Kyoto and noticed later in the game that when I built Gatling Guns I was not getting the free promotion. Since I was playing last night (and may have upgraded to the new patch without realizing) could this have been caused by an old saved game patched?

I thought GGs were supposed to get the free promotion from Alhambra...
 
Gatling Guns in Civ5 G&K are modern equivalent of bowmen (ranged unit).
Code:
<CombatClass>UNITCOMBAT_ARCHER</CombatClass>

The Alhambra gives free Drill 1 promotion which is not allowed for ranged units. So ranged units, ships, etc. cannot get the promotion. The description of Alhambra might be misleading.

Following CombatClasses support Drill1 :

Code:
<Row>
  <PromotionType>PROMOTION_DRILL_1</PromotionType>
  <UnitCombatType>UNITCOMBAT_MOUNTED</UnitCombatType>
</Row>
<Row>
  <PromotionType>PROMOTION_DRILL_1</PromotionType>
  <UnitCombatType>UNITCOMBAT_MELEE</UnitCombatType>
</Row>
<Row>
  <PromotionType>PROMOTION_DRILL_1</PromotionType>
  <UnitCombatType>UNITCOMBAT_GUN</UnitCombatType>
</Row>
<Row>
  <PromotionType>PROMOTION_DRILL_1</PromotionType>
  <UnitCombatType>UNITCOMBAT_ARMOR</UnitCombatType>
</Row>

Code:
<Row>
  <Type>BUILDING_ALHAMBRA</Type>
  <BuildingClass>BUILDINGCLASS_ALHAMBRA</BuildingClass>
  <Cost>400</Cost>
  <PrereqTech>TECH_CHIVALRY</PrereqTech>
  <Help>TXT_KEY_WONDER_ALHAMBRA_HELP</Help>
  <Description>TXT_KEY_BUILDING_ALHAMBRA</Description>
  <Civilopedia>TXT_KEY_WONDER_ALHAMBRA_DESC</Civilopedia>
  <Quote>TXT_KEY_WONDER_ALHAMBRA_QUOTE</Quote>
  <ArtDefineTag>ALHAMBRA</ArtDefineTag>
  <MaxStartEra>ERA_RENAISSANCE</MaxStartEra>
  <SpecialistType>SPECIALIST_ARTIST</SpecialistType>
  <GreatPeopleRateChange>1</GreatPeopleRateChange>
  <FreeBuildingThisCity>BUILDINGCLASS_CASTLE</FreeBuildingThisCity>
  [B]<TrainedFreePromotion>PROMOTION_DRILL_1</TrainedFreePromotion>[/B]
  <CultureRateModifier>20</CultureRateModifier>
  <NukeImmune>true</NukeImmune>
  <HurryCostModifier>-1</HurryCostModifier>
  <MinAreaSize>-1</MinAreaSize>
  <ConquestProb>100</ConquestProb>
  <DisplayPosition>2</DisplayPosition>
  <IconAtlas>EXPANSION_BW_ATLAS_2</IconAtlas>
  <PortraitIndex>0</PortraitIndex>
  <WonderSplashImage>WonderConceptAlahambra.dds</WonderSplashImage>
  <WonderSplashAudio>AS2D_WONDER_SPEECH_ALHAMBRA</WonderSplashAudio>
</Row>
 
Back
Top Bottom