I'd like to add a culture adjacency bonus on the theater districts from adjacent harbors. I tried, but the encampment and city center seem to be taken as harbors?
Here is the database update code:
Text update code:
I am not sure what the AdjacentDistrict field means... Any help would be great!
Here is the database update code:
Code:
--harbor district theater adjacency
INSERT INTO Adjacency_YieldChanges (ID, Description, YieldType, YieldChange, TilesRequired, OtherDistrictAdjacent, AdjacentSeaResource, AdjacentTerrain, AdjacentFeature, AdjacentRiver, AdjacentWonder, AdjacentNaturalWonder, AdjacentImprovement, AdjacentDistrict, PrereqCivic, PrereqTech, ObsoleteCivic, ObsoleteTech, AdjacentResource, AdjacentResourceClass, Self)
VALUES( 'Harbor_Culture', 'LOC_DISTRICT_HARBOR_CULTURE', 'YIELD_CULTURE', 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, 'DISTRICT_HARBOR', NULL, NULL, NULL, NULL, 0, 'NO_RESOURCECLASS', 0);
INSERT INTO District_Adjacencies (DistrictType, YieldChangeId)
VALUES ('DISTRICT_THEATER','Harbor_Culture');
Text update code:
Code:
INSERT INTO LocalizedText (Language, Tag, Text)
VALUES ('en_US','LOC_DISTRICT_HARBOR_CULTURE','+{1_num} [ICON_Culture] Culture from the adjacent {1_Num : plural 1?Harbor; other?Harbors;}.');
I am not sure what the AdjacentDistrict field means... Any help would be great!