diff --git a/pkg/data/items.go b/pkg/data/items.go index e3e5061..223ed97 100644 --- a/pkg/data/items.go +++ b/pkg/data/items.go @@ -63,6 +63,13 @@ type Item struct { Identified bool } +type Drop struct { + Item Item + Rule string + RuleFile string + DropLocation string +} + func (i Item) Desc() item.Description { return item.Desc[i.ID] }