ace/Source/ACE.DatLoader/Entity/SpellSet.cs
gmriggs f46401248b
Adding items that can be leveled up (#1544)
* Adding items that can be leveled up

* initial implementation for item leveling, and item equipment set spells

* negative rating update
2019-03-18 22:50:00 -04:00

19 lines
544 B
C#

using ACE.DatLoader.FileTypes;
using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.Entity
{
public class SpellSet : IUnpackable
{
// uint key is the total combined item level of all the equipped pieces in the set
// client calls this m_PieceCount
public SortedDictionary<uint, SpellSetTiers> SpellSetTiers = new SortedDictionary<uint, SpellSetTiers>();
public void Unpack(BinaryReader reader)
{
SpellSetTiers.UnpackPackedHashTable(reader);
}
}
}