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

12 lines
320 B
Go
Raw Normal View History

package d2records
// RareSuffixes is where all RareItemSuffixRecords are stored
type RareSuffixes []*RareItemSuffixRecord
// RareItemSuffixRecord is a name suffix for rare items (items with more than 2 affixes)
type RareItemSuffixRecord struct {
Name string
IncludedTypes []string
ExcludedTypes []string
}