LAnkou
Breizh A Tao
thanks to WaxonWaxov for this, it may help a lot of people for creating flags in decalc
the color scheme of your civ can be found in the Civilization4infos.xml file in your mod/assets/xml/civilizations directory
it shows like this:
<CivilizationInfo>
<Type>CIVILIZATION_AMERICA</Type>
<Description>TXT_KEY_CIV_AMERICA_DESC</Description>
<ShortDescription>TXT_KEY_CIV_AMERICA_SHORT_DESC</ShortDescription>
<Adjective>TXT_KEY_CIV_AMERICA_ADJECTIVE</Adjective>
<Civilopedia>TXT_KEY_CIV_AMERICA_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_BLUE</DefaultPlayerColor>
see the "PLAYERCOLOR_BLUE"? that's the color scheme of the civ
now, go into the mod/assets/xml/interface directory
search for the PLAYERCOLOR_BLUE in the Civ4PlayerColorInfos.xml
it shows like this:
<PlayerColorInfo>
<Type>PLAYERCOLOR_BLUE</Type>
<ColorTypePrimary>COLOR_PLAYER_BLUE</ColorTypePrimary>
<ColorTypeSecondary>COLOR_PLAYER_WHITE</ColorTypeSecondary>
<TextColorType>COLOR_PLAYER_BLUE_TEXT</TextColorType>
</PlayerColorInfo>
so the scheme is Blue(principal) and White(secondary)
if you look after a particular scheme (the one of France, Incans), just look in the first file the <PlayerColorInfo> under the civ name.
next episode, add colors and colors schemes
I just create a 128x128 pixel .PNG file in Phtoshop with a transparent background.
Then I add a WHITE pattern to it (say a skull and crossbones)
save it as a .PNG
Use .dds converter to convert it to .dds
When you choose your civ's color scheme. it has TWO colors. a Primary and a secondary. For example. The DARK_BLUE color scheme has a Primary color fo dark blue and a secondary of yellow.
The transparent part of your .dds with appear the PRIMARY color and the white part of your .dds will appear as the Secondary.
the color scheme of your civ can be found in the Civilization4infos.xml file in your mod/assets/xml/civilizations directory
it shows like this:
<CivilizationInfo>
<Type>CIVILIZATION_AMERICA</Type>
<Description>TXT_KEY_CIV_AMERICA_DESC</Description>
<ShortDescription>TXT_KEY_CIV_AMERICA_SHORT_DESC</ShortDescription>
<Adjective>TXT_KEY_CIV_AMERICA_ADJECTIVE</Adjective>
<Civilopedia>TXT_KEY_CIV_AMERICA_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_BLUE</DefaultPlayerColor>
see the "PLAYERCOLOR_BLUE"? that's the color scheme of the civ
now, go into the mod/assets/xml/interface directory
search for the PLAYERCOLOR_BLUE in the Civ4PlayerColorInfos.xml
it shows like this:
<PlayerColorInfo>
<Type>PLAYERCOLOR_BLUE</Type>
<ColorTypePrimary>COLOR_PLAYER_BLUE</ColorTypePrimary>
<ColorTypeSecondary>COLOR_PLAYER_WHITE</ColorTypeSecondary>
<TextColorType>COLOR_PLAYER_BLUE_TEXT</TextColorType>
</PlayerColorInfo>
so the scheme is Blue(principal) and White(secondary)
if you look after a particular scheme (the one of France, Incans), just look in the first file the <PlayerColorInfo> under the civ name.
next episode, add colors and colors schemes