Civ4BasicInfos

From Civilization Modding Wiki
Revision as of 06:18, 13 May 2009 by Draco (talk | contribs)
Jump to navigationJump to search
Previous article
Back to XML Reference



Summary

The BasicInfos file stores, well basic information. In vanilla and Warlords, it contained a ton of stuff. In BtS it was split into multiple files, retaining only the concepts. The info that was previously in Civ4BasicInfos can now be found in the rest of the BasicInfos directory.


Single line Tags

Text Tags

Tag Name Description
Type Name of the Concept.
Description Pointer to the Description in CIV4GameTextInfos_Objects.xml.
Civilopedia Pointer to the Civilopedia entry for the Concept in CIV4GameText_Civilopedia_Concepts.xml.


Multi-Line Tags

Tag Name Description Contains
ConceptInfos Header & Footer for the entire file. ConceptInfo
ConceptInfo Defines the different Concept entires. Type
Description
Civilopedia


Example

<ConceptInfo>
   <Type>CONCEPT_ANIMALS</Type>
   <Description>TXT_KEY_CONCEPT_ANIMALS</Description>
   <Civilopedia>TXT_KEY_CONCEPT_ANIMALS_PEDIA</Civilopedia>
</ConceptInfo>
Next article
Back to XML Reference