summaryrefslogtreecommitdiff
blob: 4da16845a2ad15cfb1b969ca6990d298e9d60bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-module(character).
-export
(
   [
      get_movement_points/1,
      get_attack_range/1,
      get_max_health/1
   ]
).

-include("timed_cache_data.hrl").

get_movement_points (Char) -> Char#character.mov_pts.
get_attack_range (Char) -> Char#character.atk_rg.

get_max_health (Char) -> Char#character.health.