diff --git a/src/Dodge/Item/Attach.hs b/src/Dodge/Item/Attach.hs new file mode 100644 index 000000000..69de04fcb --- /dev/null +++ b/src/Dodge/Item/Attach.hs @@ -0,0 +1,14 @@ +module Dodge.Item.Attach + (makeAttach + ) + where + +import Dodge.Data.Item +import Dodge.Default.Item +import Control.Lens + +makeAttach :: AttachType -> Item +makeAttach t = defaultHeldItem + & itType .~ ATTACH t + & itUse .~ UseAttach APNothing +