Civ4BasicInfos: Difference between revisions

From Civilization Modding Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 11: Line 11:
=Single line Tags=
=Single line Tags=
===Text Tags===
===Text Tags===
{| border="1" cellpadding="2" cellspacing="0"
{| border="1" cellpadding="4" cellspacing="0"
|-
|-
! style="background:#efefef;" | Tag Name
! style="background:#efefef;" | Tag Name
! style="background:#efefef;" | Description
! style="background:#efefef;" | Description
|-
|-
|Type || Name of the Concept.
|'''Type''' || Name of the Concept.
|-
|-
|Description || Pointer to the Description in '''CIV4GameTextInfos_Objects.xml'''.
|'''Description''' || Pointer to the Description in '''CIV4GameTextInfos_Objects.xml'''.
|-
|-
|Civilopedia || Pointer to the Civilopedia entry for the Concept in '''CIV4GameText_Civilopedia_Concepts.xml'''.
|'''Civilopedia''' || Pointer to the Civilopedia entry for the Concept in '''CIV4GameText_Civilopedia_Concepts.xml'''.
|}
|}




=Multi-Line Tags=
=Multi-Line Tags=
{| border="1" cellpadding="2" cellspacing="0"
{| border="1" cellpadding="4" cellspacing="0"
|-
|-
! style="background:#efefef;" | Tag Name
! style="background:#efefef;" | Tag Name
Line 31: Line 31:
! style="background:#efefef;" | Contains
! style="background:#efefef;" | Contains
|-
|-
|ConceptInfos || Header & Footer for the entire file. || ConceptInfo
|'''ConceptInfos''' || Header & Footer for the entire file. || ConceptInfo
|-
|-
|ConceptInfo || Defines the different Concept entires. || Type<br>Description<br>Civilopedia<br>
|'''ConceptInfo''' || Defines the different Concept entires. || Type<br>Description<br>Civilopedia<br>
|}
|}



Revision as of 06:18, 13 May 2009

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