2020-10-28 13:52:15 -04:00
|
|
|
package d2records
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func hirelingDescriptionLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
|
|
records := make(HirelingDescriptions)
|
|
|
|
|
|
|
|
for d.Next() {
|
|
|
|
record := &HirelingDescriptionRecord{
|
|
|
|
Name: d.String("Hireling Description"),
|
|
|
|
Token: d.String("Code"),
|
|
|
|
}
|
|
|
|
|
|
|
|
records[record.Name] = record
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.Err != nil {
|
|
|
|
panic(d.Err)
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Hireling.Descriptions = records
|
|
|
|
|
2020-12-18 01:40:54 -05:00
|
|
|
r.Debugf("Loaded %d HirelingDescription records", len(records))
|
2020-10-28 13:52:15 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|