Fimbulvetr
Emperor
The civilizations are a bit too unique for my tastes, their individual bonuses being to strong and too imblanced to really judge how bad the AI really is, so I'm trying to remove all these bonuses, unique districts/buildings/units as well as agendas.
If this works remains to be seen, my question for now is just: Did I miss anything, or should this properly remove all uniqueness from all major civilizations?
edit: yes, improvements, thanks.
Spoiler code :
Code:
DELETE FROM Districts
WHERE TraitType NOT NULL;
DELETE FROM Buildings
WHERE TraitType NOT NULL;
DELETE FROM Improvements
WHERE TraitType NOT NULL
AND TraitType NOT LIKE 'MINOR_CIV_%';
DELETE FROM Units
WHERE TraitType NOT NULL
AND TraitType <> 'TRAIT_BARBARIAN';
DELETE FROM Traits
WHERE TraitType NOT LIKE 'MINOR_CIV_%'
AND Name LIKE 'LOC_TRAIT_LEADER_%';'
DELETE FROM Traits
WHERE TraitType LIKE 'TRAIT_CIVILIZATION_%';
DELETE FROM Traits
WHERE TraitType LIKE 'TRAIT_AGENDA_%';
DELETE FROM Agendas;
DELETE FROM StartBiasFeatures;
DELETE FROM StartBiasResources;
DELETE FROM StartBiasRivers;
DELETE FROM StartBiasTerrains;
If this works remains to be seen, my question for now is just: Did I miss anything, or should this properly remove all uniqueness from all major civilizations?
edit: yes, improvements, thanks.
Last edited: