So I am trying to modify the Yieldchanges on a massive scale. I am trying to put add more granularity to the game so I can add more variance and more balance.
The first steps are done, but those were apparently straight forward.
as an example
But changing the Improvement_BonusYieldChanges and the Adjacency_Yieldchanges hasn't worked and I am not sure why.
Here are the codes I tried.
Am I trying to change the wrong tables in this case? Also how different or difficult will it be when I get to ModifierArguments?
Any help would be appreciated.
The first steps are done, but those were apparently straight forward.
Code:
UPDATE Improvement_YieldChanges
Set YieldChange = 5
WHERE ImprovementType = 'IMPROVEMENT_FARM' AND YieldType = 'YIELD_FOOD';
But changing the Improvement_BonusYieldChanges and the Adjacency_Yieldchanges hasn't worked and I am not sure why.
Here are the codes I tried.
Code:
UPDATE Improvement_BonusYieldChanges
Set YieldChange = 5
WHERE ImprovementType = 'IMPROVEMENT_CAMP' AND YieldType = 'YIELD_PRODUCTION';
Code:
UPDATE Adjacency_YieldChanges
Set YieldChange = 5
WHERE Row ID = 'Farms_MedievalAdjacency' AND YieldType = 'YIELD_FOOD' AND AdjacentImprovement = 'IMPROVEMENT_FARM';
Any help would be appreciated.