I am still learning the basics of Civ6 modding, and so far I get how it works. You have to include your files in the modinfo, and you have to keep the structure of the original files in the Gameplay folder of civ.
To learn it even better, I am trying to add a new leader to Rome. So far I have those two files:
RomanConquerors_Civilizations.xml
RomanConquerors_Leaders.xml
My question is: what info is required in order to make it work? Right now I have only a few options inside Leaders.xml:
<GameInfo>
<Types>
<Row Type="LEADER_JUSTINIAN" Kind="KIND_LEADER"/>
<Row Type="TRAJANS_COLUMN_TRAIT" Kind="KIND_TRAIT"/>
</Types>
<Leaders>
<Row LeaderType="LEADER_JUSTINIAN" Name="LOC_LEADER_JUSTINIAN_NAME" InheritFrom="LEADER_DEFAULT" SceneLayers="4"/>
</Leaders>
<HistoricalAgendas>
<Row LeaderType="LEADER_JUSTINIAN" AgendaType="AGENDA_OPTIMUS_PRINCEPS"/>
</HistoricalAgendas>
</GameInfo>
The mod loads, but I cannot see anything changing in the civ drop down. What parts am I missing?
To learn it even better, I am trying to add a new leader to Rome. So far I have those two files:
RomanConquerors_Civilizations.xml
RomanConquerors_Leaders.xml
My question is: what info is required in order to make it work? Right now I have only a few options inside Leaders.xml:
<GameInfo>
<Types>
<Row Type="LEADER_JUSTINIAN" Kind="KIND_LEADER"/>
<Row Type="TRAJANS_COLUMN_TRAIT" Kind="KIND_TRAIT"/>
</Types>
<Leaders>
<Row LeaderType="LEADER_JUSTINIAN" Name="LOC_LEADER_JUSTINIAN_NAME" InheritFrom="LEADER_DEFAULT" SceneLayers="4"/>
</Leaders>
<HistoricalAgendas>
<Row LeaderType="LEADER_JUSTINIAN" AgendaType="AGENDA_OPTIMUS_PRINCEPS"/>
</HistoricalAgendas>
</GameInfo>
The mod loads, but I cannot see anything changing in the civ drop down. What parts am I missing?