2000-11-27 18:28:20 +00:00
|
|
|
#This file is distributed under the terms of the GNU General Public license.
|
|
|
|
|
#Copyright (C) 1999 Aloril (See the file COPYING for details).
|
2017-05-28 16:32:17 +02:00
|
|
|
import sys
|
2000-11-27 18:28:20 +00:00
|
|
|
|
|
|
|
|
#All types of minds uses these goals
|
2017-03-19 21:36:52 +01:00
|
|
|
from mind.goals.common.move import *
|
2017-05-28 16:32:17 +02:00
|
|
|
from mind.goals.common.misc_goal import *
|
2007-06-18 17:46:14 +00:00
|
|
|
from mind.goals.common.trigger import *
|
2017-05-28 16:32:17 +02:00
|
|
|
|
|
|
|
|
# Only humanoids use these goals
|
2017-03-19 21:36:52 +01:00
|
|
|
from mind.goals.humanoid.fire import *
|
2017-05-28 16:32:17 +02:00
|
|
|
from mind.goals.humanoid.build_home import *
|
2017-03-19 21:36:52 +01:00
|
|
|
from mind.goals.humanoid.transaction import *
|
2017-05-28 16:32:17 +02:00
|
|
|
from mind.goals.humanoid.mason import *
|
2001-08-19 18:37:38 +00:00
|
|
|
from mind.goals.humanoid.werewolf import *
|
2017-05-28 16:32:17 +02:00
|
|
|
from mind.goals.humanoid.construction import *
|
2000-11-27 18:28:20 +00:00
|
|
|
|
2017-05-28 16:32:17 +02:00
|
|
|
# Only animals use these goals
|
|
|
|
|
from mind.goals.animal.herd import *
|
|
|
|
|
from mind.goals.animal.domestic import *
|