I'm working on tweaking a file for the 1914 scenario, but I think this might be a question for the larger modding community.
The 1914 mod is looking at creating province images for non-urban terrain. This can theoretically be achieved by creating a province image file and placing it in the correct gfx folder, editing the province.csv file from "urban" to "clear", editing the colorscales.csv file so that urban terrain appears "clear", and then editing the unit terrain modifiers to mimic clear terrain.
The image edit works fine, I'm having problems with the unit terrain modifiers. I've made the following edits to these three lines in the db/units/modifiers.csv file:
The movement and urban attack penalties have been successfully removed:
The problem is that the defender of the urban province still gets a 33 percent increase in their def_urban abilities. I thought my edits would suffice. Am I forgetting to edit something else?
The 1914 mod is looking at creating province images for non-urban terrain. This can theoretically be achieved by creating a province image file and placing it in the correct gfx folder, editing the province.csv file from "urban" to "clear", editing the colorscales.csv file so that urban terrain appears "clear", and then editing the unit terrain modifiers to mimic clear terrain.
The image edit works fine, I'm having problems with the unit terrain modifiers. I've made the following edits to these three lines in the db/units/modifiers.csv file:
Code:
MODIFIER;INF;CAV;MOT;MECH;L ARM;ARM;PARA;MAR;MTN;GARR;HQ;MIL;ESC F;MR F;INT F;STR B;TAC B;NAV B;CAS;TRA P;FL B;FL R;BB;CL;CA;BC;DD;CV;SUB;TRA;X
ATT_URBAN;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;X
DEF_URBAN;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;X
MOV_URBAN;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;X
The movement and urban attack penalties have been successfully removed:
The problem is that the defender of the urban province still gets a 33 percent increase in their def_urban abilities. I thought my edits would suffice. Am I forgetting to edit something else?