basic item filter wip

This commit is contained in:
Héctor Giménez
2023-03-12 19:32:50 +09:00
parent 306150e873
commit 66dd506ba7
12 changed files with 273 additions and 26 deletions

28
pkg/nip/properties.go Normal file
View 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"
)