Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
- Removed duplicate ConquestProb section.
- Increased land trade income.
- Increased city connection income.
- Reduced courthouse cost.
  • Loading branch information
Thalassicus committed Mar 31, 2014
1 parent 8567831 commit 754a472
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 41 deletions.
38 changes: 1 addition & 37 deletions Ceg/Ceg/Armies/CEA__End.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,43 +84,7 @@ UPDATE Units SET FaithCost = 1 * Cost WHERE FaithCost > 0 AND Cost > 0;
-- Conquest
--

UPDATE Improvements SET PillageGold = PillageGold * 4 WHERE PillageGold <> 0;

UPDATE Buildings
SET ConquestProb = 100
WHERE HurryCostModifier != -1;

UPDATE Buildings
SET ConquestProb = 0
WHERE BuildingClass IN (
'BUILDINGCLASS_COURTHOUSE',
'BUILDINGCLASS_CASTLE',
'BUILDINGCLASS_ARSENAL',
'BUILDINGCLASS_MILITARY_BASE',
'BUILDINGCLASS_COLOSSEUM',
'BUILDINGCLASS_THEATRE',
'BUILDINGCLASS_STADIUM'
);

UPDATE Buildings
SET ConquestProb = 25
WHERE BuildingClass IN (
'BUILDINGCLASS_WALLS'
);

/*
UPDATE Buildings
SET ConquestProb = 50
WHERE BuildingClass IN (
'BUILDINGCLASS_LIBRARY',
'BUILDINGCLASS_MARKET',
'BUILDINGCLASS_BANK',
'BUILDINGCLASS_STOCK_EXCHANGE',
'BUILDINGCLASS_MINT',
'BUILDINGCLASS_HARBOR',
'BUILDINGCLASS_WAREHOUSE'
);
*/
UPDATE Improvements SET PillageGold = PillageGold * 5 WHERE PillageGold <> 0;


--
Expand Down
2 changes: 2 additions & 0 deletions Ceg/Ceg/Armies/CEA__Start.sql
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ WHERE BuildingClass IN (
'BUILDINGCLASS_WALLS'
);

/*
UPDATE Buildings
SET ConquestProb = 50
WHERE BuildingClass IN (
Expand All @@ -312,6 +313,7 @@ WHERE BuildingClass IN (
'BUILDINGCLASS_HARBOR',
'BUILDINGCLASS_WAREHOUSE'
);
*/

--
-- Other
Expand Down
6 changes: 3 additions & 3 deletions Ceg/Ceg/Cities/CEC_Data.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
</Update>
<Update>
<Where Name="TRADE_ROUTE_BASE_GOLD"/>
<Set Value="8"/>
<Set Value="10"/>
<!-- -130 -->
</Update>
<Update>
Expand All @@ -180,12 +180,12 @@
</Update>
<Update>
<Where Name="PUPPET_SCIENCE_MODIFIER" />
<Set Value="-50" />
<Set Value="-25" />
<!-- -25 -->
</Update>
<Update>
<Where Name="PUPPET_CULTURE_MODIFIER" />
<Set Value="-25" />
<Set Value="-0" />
<!-- -25 -->
</Update>
<Update>
Expand Down
1 change: 1 addition & 0 deletions Ceg/Ceg/Cities/CEC__End.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ UPDATE Buildings SET Cost = Cost * 0.741, GoldMaintenance = 1 WHERE BuildingCla

UPDATE Buildings SET Cost = Cost * 0.500 WHERE BuildingClass = 'BUILDINGCLASS_WINDMILL';
UPDATE Buildings SET Cost = Cost * 0.500 WHERE BuildingClass = 'BUILDINGCLASS_CARAVANSARY';
UPDATE Buildings SET Cost = Cost * 0.500 WHERE BuildingClass = 'BUILDINGCLASS_COURTHOUSE';

--
-- Unique Buildings
Expand Down
2 changes: 1 addition & 1 deletion Ceg/Ceg/Cities/CEC__Start.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WHERE Special = 'SPECIALUNIT_PEOPLE'
AND NOT CombatClass = 'UNITCOMBAT_DIPLOMACY';

UPDATE Buildings
SET TradeRouteLandDistanceModifier = TradeRouteLandDistanceModifier * 2, TradeRouteLandGoldBonus = TradeRouteLandGoldBonus * 2
SET TradeRouteLandDistanceModifier = TradeRouteLandDistanceModifier * 2, TradeRouteLandGoldBonus = 6
WHERE BuildingClass IN ('BUILDINGCLASS_CARAVANSARY');


Expand Down
34 changes: 34 additions & 0 deletions Ceg/Ceg/Research/CER_Data.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@
<Set TechPrereq="NULL" />
</Update>
</Processes>
<Eras>
<Update>
<Where Type="ERA_ANCIENT"/>
<Set ResearchAgreementCost="100" />
</Update>
<Update>
<Where Type="ERA_CLASSICAL"/>
<Set ResearchAgreementCost="150" />
</Update>
<Update>
<Where Type="ERA_MEDIEVAL"/>
<Set ResearchAgreementCost="200" />
</Update>
<Update>
<Where Type="ERA_RENAISSANCE"/>
<Set ResearchAgreementCost="250" />
</Update>
<Update>
<Where Type="ERA_INDUSTRIAL"/>
<Set ResearchAgreementCost="300" />
</Update>
<Update>
<Where Type="ERA_MODERN"/>
<Set ResearchAgreementCost="350" />
</Update>
<Update>
<Where Type="ERA_POSTMODERN"/>
<Set ResearchAgreementCost="400" />
</Update>
<Update>
<Where Type="ERA_FUTURE"/>
<Set ResearchAgreementCost="400" />
</Update>
</Eras>
<Technologies>
<!--
<Update>
Expand Down

0 comments on commit 754a472

Please sign in to comment.