summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'client/elm/battlemap/src/Shim/Model.elm')
-rw-r--r-- | client/elm/battlemap/src/Shim/Model.elm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/client/elm/battlemap/src/Shim/Model.elm b/client/elm/battlemap/src/Shim/Model.elm index 4a0146d..5738aa4 100644 --- a/client/elm/battlemap/src/Shim/Model.elm +++ b/client/elm/battlemap/src/Shim/Model.elm @@ -21,7 +21,8 @@ generate = icon = "Icon2", portrait = "Portrait2", location = {x = 0, y = 1}, - movement_points = 5 + movement_points = 5, + atk_dist = 1 } (Dict.insert "1" @@ -31,7 +32,8 @@ generate = icon = "Icon1", portrait = "Portrait1", location = {x = 1, y = 0}, - movement_points = 4 + movement_points = 4, + atk_dist = 2 } (Dict.insert "0" @@ -41,7 +43,8 @@ generate = icon = "Icon0", portrait = "Portrait0", location = {x = 0, y = 0}, - movement_points = 3 + movement_points = 3, + atk_dist = 1 } Dict.empty ) |