Sid Meier's Civilization VI

Sid Meier's Civilization VI

CIVILIZATION VI: CITY LIGHTS
Dante.Enoshima 26 Dec, 2022 @ 11:26pm
A fix, For Tokugawa and Gyoson
Found a fix for the usual Gyoson's bonuses not applied to Tokugawa. Turns out, Gyoson gives a fisherman and culture per building built is tied to a leader, instead of the civ itself. So by default, only Hojo gets all Gyoson bonuses.

To this, you gotta open a file called COREX_Civs.sql. Usually located in
(steam directory)\steamapps\workshop\content\289070\2190389813\Gameplay

Once opened, add following code into certain places (make sure you typed the exact lines:

INSERT INTO TraitModifiers (TraitType, ModifierId) VALUES ('TRAIT_LEADER_DIVINE_WIND', 'CIV_JAPAN_GRANT_FISHER_UNIT'), ('TRAIT_LEADER_DIVINE_WIND', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_1'), ('TRAIT_LEADER_DIVINE_WIND', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_2'), ('TRAIT_LEADER_DIVINE_WIND', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_3'), ('TRAIT_LEADER_TOKUGAWA', 'CIV_JAPAN_GRANT_FISHER_UNIT'), ('TRAIT_LEADER_TOKUGAWA', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_1'), ('TRAIT_LEADER_TOKUGAWA', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_2'), ('TRAIT_LEADER_TOKUGAWA', 'CIV_COREX_JAPAN_SEA_RESOURCE_CUL_3');

]As you can see,
DIVINE_WIND
is for Hojo, and
TOKUGAWA
is ofc, for Tokugawa. That should fix the problems of Tokugawa with Gyoson.

Below are the fix for Tokugawa AI, so he'll prefer to build Gyosons, just like Hojo

INSERT INTO AiListTypes (ListType) VALUES ('HojoCLDistricts'), ('TokugawaCLDistricts'); INSERT INTO AiLists (ListType, LeaderType, System) VALUES ('HojoCLDistricts', 'TRAIT_LEADER_DIVINE_WIND', 'Districts'), ('TokugawaCLDistricts', 'TRAIT_LEADER_TOKUGAWA', 'Districts'); INSERT INTO AiFavoredItems (ListType, Item, Favored) VALUES ('HojoCLDistricts', 'DISTRICT_COREX_GYOSON', '1'), ('TokugawaCLDistricts', 'DISTRICT_COREX_GYOSON', '1');

There you go. (Hopefully), that should've fix Tokugawa's problems with Gyoson. There's no fix for Gyoson not showing up in Tokugawa's info screen in choose leader screen (because idk how). But until Albro can update the City Lights, here's the band-aid fixes.