From bd7e821149170d1d9e5020ea95399a6da6e7faa9 Mon Sep 17 00:00:00 2001 From: Arto Simonyan Date: Tue, 25 Jun 2024 15:43:52 +0300 Subject: [PATCH] Add drop struct (#22) --- pkg/data/items.go | 7 +++++++ 1 file changed, 7 insertions(+) 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] }