basic item filter wip
This commit is contained in:
28
pkg/nip/properties.go
Normal file
28
pkg/nip/properties.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package nip
|
||||
|
||||
const (
|
||||
// Properties
|
||||
PropertyType = "type"
|
||||
PropertyName = "name"
|
||||
PropertyClass = "class"
|
||||
PropertyQuality = "quality"
|
||||
PropertyFlag = "flag"
|
||||
PropertyLevel = "level"
|
||||
PropertyPrefix = "prefix"
|
||||
PropertySuffix = "suffix"
|
||||
|
||||
// Types
|
||||
TypeNormal = "normal"
|
||||
TypeExceptional = "exceptional"
|
||||
TypeElite = "elite"
|
||||
|
||||
// Quality
|
||||
QualityLowQuality = "lowquality"
|
||||
QualityNormal = "normal"
|
||||
QualitySuperior = "superior"
|
||||
QualityMagic = "magic"
|
||||
QualitySet = "set"
|
||||
QualityRare = "rare"
|
||||
QualityUnique = "unique"
|
||||
QualityCrafted = "crafted"
|
||||
)
|
||||
Reference in New Issue
Block a user