1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-06 11:34:15 -04:00
OpenDiablo2/d2core/d2records/books_record.go

20 lines
487 B
Go
Raw Normal View History

package d2records
2020-12-18 01:40:54 -05:00
// Books stores all of the BookRecords
type Books map[string]*BookRecord
2020-12-18 01:40:54 -05:00
// BookRecord is a representation of a row from books.txt
type BookRecord struct {
Name string
Namco string // The displayed name, where the string prefix is "Tome"
Completed string
ScrollSpellCode string
BookSpellCode string
Pspell int
SpellIcon int
ScrollSkill string
BookSkill string
BaseCost int
CostPerCharge int
}