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" )