1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-27 01:25:35 +00:00
OpenDiablo2/d2core/d2records/monster_type_record.go
gravestench 271673851a
Added RecordManager implementation to remove d2datadict singletons (#736)
* Added RecordManager implementation to remove d2datadict singletons

* fix object lookup test
2020-09-19 14:33:40 -04:00

18 lines
504 B
Go

package d2records
// MonTypes stores all of the MonTypeRecords
type MonsterTypes map[string]*MonTypeRecord
// MonTypeRecord is a representation of a single row of MonType.txt.
type MonTypeRecord struct {
Type string
Equiv1 string
Equiv2 string
Equiv3 string
// StrSing is the string displayed for the singular form (Skeleton), note
// that this is unused in the original engine, since the only modifier
// display code that accesses MonType uses StrPlur.
StrSing string
StrPlural string
}