Modding question
letting my sovereign use the Journeyman's Cloak
I'd like to mod the game so my sovereign can wear the Journeyman's Cloak. From my forum searching, it appears that only Male Men can wear it. My Soveriegn is a Mancer Male. So I edited "CoreAccessories.xml" to include all race/gender combinations in the SupportedUnitModelTypes. Here's an excerpt:
- <GameItemType InternalName="JourneymansCloak">
- <!--Equipment Display Name/Description-->
- <DisplayName>Journeyman's Cloak</DisplayName>
- <Description>A journeyman's cloak protects its wearer from the weather.</Description>
- <!--Equipment Type-->
- <Type>Cloak</Type>
- <SupportedUnitModelType>KingdomMale</SupportedUnitModelType>
- <SupportedUnitModelType>IroneerMale</SupportedUnitModelType>
- <SupportedUnitModelType>MancerMale</SupportedUnitModelType>
- <SupportedUnitModelType>AmarianMale</SupportedUnitModelType>
- <SupportedUnitModelType>TarthanMale</SupportedUnitModelType>
- <SupportedUnitModelType>EmpireMale</SupportedUnitModelType>
- <SupportedUnitModelType>FallenMale</SupportedUnitModelType>
- <SupportedUnitModelType>WraithMale</SupportedUnitModelType>
- <SupportedUnitModelType>UrxenMale</SupportedUnitModelType>
- <SupportedUnitModelType>QuendarMale</SupportedUnitModelType>
- <SupportedUnitModelType>KingdomFemale</SupportedUnitModelType>
- <SupportedUnitModelType>IroneerFemale</SupportedUnitModelType>
- <SupportedUnitModelType>MancerFemale</SupportedUnitModelType>
- <SupportedUnitModelType>KingdomFemale</SupportedUnitModelType>
- <SupportedUnitModelType>AmarianFemale</SupportedUnitModelType>
- <SupportedUnitModelType>TarthanFemale</SupportedUnitModelType>
- <SupportedUnitModelType>EmpireFemale</SupportedUnitModelType>
- <SupportedUnitModelType>FallenFemale</SupportedUnitModelType>
- <SupportedUnitModelType>WraithFemale</SupportedUnitModelType>
- <SupportedUnitModelType>UrxenFemale</SupportedUnitModelType>
- <SupportedUnitModelType>QuendarFemale</SupportedUnitModelType>
- <CanBeEquipped>1</CanBeEquipped>
- <Weight>8</Weight>
- <CustomizationPointCost>5</CustomizationPointCost>
- <IsAvailableForSovereignCustomization>false</IsAvailableForSovereignCustomization>
- <!--Equipment Graphics-->
- <IconFile>Journeyman'sCloak.png</IconFile>
- <TintR>0</TintR>
- <TintG>0</TintG>
- <TintB>0</TintB>
- ... etc etc
But when I reload the game, my Mancer Male Sovereign still cannot purchase or equip the Journeyman's Cloak. I tried purchasing it with someone else and trading it to the Sovereign also, but just like before it doesn't show up int he inventory.
I realize one easy way to get around this is to make a Kingdom Male sovereign, but I don't want to restart because the game I'm in is quite interesting.
Can someone help?