home · contact · privacy
Server: Make thing action effort calculation selectable.
[plomrogue] / server / config / misc.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5 from server.make_map import make_map
6 from server.thingproliferation import thingproliferation
7 from server.make_world import make_world
8 from server.decrement_lifepoints import decrement_lifepoints
9 from server.calc_effort import calc_effort
10
11 decrement_lifepoints_func = decrement_lifepoints
12 make_map_func = make_map
13 thingproliferation_func = thingproliferation
14 make_world_func = make_world
15 calc_effort_func = calc_effort