{-# LANGUAGE StrictData #-} module Dodge.Data.UseCondition where data UseCondition = UseableWhenAimed | UseableWhenHeld | UseableAnytime | NeverUsable deriving (Eq, Show, Read) data UseFocus = UseFromRoot | UseFromLocation deriving (Eq, Show, Read)