Could this be something useful in adding more improvements, I found this in CvWBDesc.py file in the folder Assets/Python/PyWB
class CvPlotDesc:
"serializes plot data" (could this be something about the plot data?)
def __init__(self):
self.iX = -1
self.iY = -1
self.riverNSDirection = CardinalDirectionTypes.NO_CARDINALDIRECTION
self.isNOfRiver = 0
self.riverWEDirection = CardinalDirectionTypes.NO_CARDINALDIRECTION
self.isWOfRiver = 0
self.isStartingPlot = 0
self.bonusType = None (the type of bonus in a plot?)
self.improvementType = None (HERE, what if I add another line like this one, another improvement line or something like that?)
self.featureType = None
self.featureVariety = 0
self.routeType = None
self.terrainType = None
self.plotType = PlotTypes.NO_PLOT
self.unitDescs = list()
self.cityDesc = None
self.szLandmark = ""
self.szScriptData = "NONE"
self.abTeamPlotRevealed = [0]*gc.getMAX_CIV_TEAMS()
Another question, HOW DO I MAKE SPECIALISTS PRODUCE HAPPINESS OR UNHEALTHINESS OR HEALTHINESS? Like engineers produce unhealthiness and scientists produce healthiness and priests and artists produce happiness?
Thanks for the help!
