[Question/SOLVED]How to add new abilities to Sovereign creation?
I'm trying to add in a few Master of Magic-esque abilities (trying to get the Mastery abilities at first), but they aren't showing up to character creation. I've been looking at the hotfix mods, and have been trying to base my code off that.
However, I'm having a lot of trouble getting this new ability to show up in the creation screen. I've got the code below. I'm just trying stuff out, so ignore the values for now.
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <AbilityBonuses>
- <DataChecksum NoParse="1">
- <Ignore>DisplayName</Ignore>
- <Translate>DisplayName</Translate>
- </DataChecksum>
- <AbilityBonus InternalName = "MoM_ShardMaster">
- <AbilityBonusType>Player</AbilityBonusType>
- <AbilityBonusOption InternalName = "Sovereign_Ability_ShardMaster">
- <DisplayName>Shard Master</DisplayName>
- <Description>Just a test.</Description>
- <Icon>Profession_Royalty.png</Icon>
- <Cost>5</Cost>
- <GameModifier>
- <ModType>Unit</ModType>
- <Attribute>AdjustUnitStat</Attribute>
- <StrVal>UnitStat_Essense</StrVal>
- <Multiplier>2.00</Multiplier>
- </GameModifier>
- </AbilityBonusOption>
- </AbilityBonus>
- </AbilityBonuses>
I've got the mods enabled, as the hotfix mod is working, but I'm completely stumped.
Any help is greatly appreciated.