home · contact · privacy
66be0e20d9370e17208131852a6b527bd32a4df5
[plomrogue] / server / config / actions.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
6 from server.actions import actor_wait, actor_move, actor_pickup, actor_drop, \
7     actor_use
8 action_db = {
9     "actor_wait": actor_wait,
10     "actor_move": actor_move,
11     "actor_pickup": actor_pickup,
12     "actor_drop": actor_drop,
13     "actor_use": actor_use
14 }
15
16 from server.ai import ai
17 ai_func = ai