summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-21 16:32:09 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-21 16:32:09 +0200 |
commit | 0d5fba42a1597e5a43266c071776e7acf58071e2 (patch) | |
tree | 374ab9f5128486f4cbad57fca35cc5d61a8f2f7b /client/elm/battlemap/src/Model.elm | |
parent | 7b9ac4352353203fd1422a93fc7ef3a0daf8a768 (diff) |
Adds movement points, indicator for current char.
Diffstat (limited to 'client/elm/battlemap/src/Model.elm')
-rw-r--r-- | client/elm/battlemap/src/Model.elm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/client/elm/battlemap/src/Model.elm b/client/elm/battlemap/src/Model.elm index a019c45..85b123b 100644 --- a/client/elm/battlemap/src/Model.elm +++ b/client/elm/battlemap/src/Model.elm @@ -30,7 +30,8 @@ model = name = "Char2", icon = "Icon2", portrait = "Portrait2", - location = {x = 1, y = 4} + location = {x = 1, y = 4}, + movement_points = 6 } (insert "1" @@ -39,7 +40,8 @@ model = name = "Char1", icon = "Icon1", portrait = "Portrait1", - location = {x = 4, y = 1} + location = {x = 4, y = 1}, + movement_points = 10 } (insert "0" @@ -48,7 +50,8 @@ model = name = "Char0", icon = "Icon0", portrait = "Portrait0", - location = {x = 0, y = 0} + location = {x = 0, y = 0}, + movement_points = 16 } empty ) |