mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Adding items that can be leveled up * initial implementation for item leveling, and item equipment set spells * negative rating update
19 lines
544 B
C#
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);
|
|
}
|
|
}
|
|
}
|