summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/battle/src/Struct/HelpRequest.elm')
-rw-r--r-- | src/battle/src/Struct/HelpRequest.elm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/battle/src/Struct/HelpRequest.elm b/src/battle/src/Struct/HelpRequest.elm index 42a28d6..905bdf7 100644 --- a/src/battle/src/Struct/HelpRequest.elm +++ b/src/battle/src/Struct/HelpRequest.elm @@ -2,6 +2,11 @@ module Struct.HelpRequest exposing (Type(..)) -- Elm ------------------------------------------------------------------------- +-- Battle ---------------------------------------------------------------------- +import Battle.Struct.Attributes +import Battle.Struct.Statistics +import Battle.Struct.DamageType + -- Local Module ---------------------------------------------------------------- import Struct.Character @@ -10,4 +15,7 @@ import Struct.Character -------------------------------------------------------------------------------- type Type = None - | HelpOnRank Struct.Character.Rank + | Rank Struct.Character.Rank + | Attribute Battle.Struct.Attributes.Category + | Statistic Battle.Struct.Statistics.Category + | DamageType Battle.Struct.DamageType.Type |