1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-29 18:45:23 +00:00
OpenDiablo2/d2core/d2records/rare_prefix_record.go

12 lines
320 B
Go
Raw Normal View History

package d2records
// RarePrefixes is where all RareItemPrefixRecords are stored
type RarePrefixes []*RareItemPrefixRecord
// RareItemPrefixRecord is a name prefix for rare items (items with more than 2 affixes)
type RareItemPrefixRecord struct {
Name string
IncludedTypes []string
ExcludedTypes []string
}