コード例 #1
0
ファイル: PickMoveType.py プロジェクト: optionalg/Slugathon
 def mycallback(teleported):
     if teleported is None:
         logging.info("canceled")
     elif teleported:
         logging.info("teleport")
     else:
         logging.info("normal move")
     guiutils.exit()
コード例 #2
0
ファイル: PickMoveType.py プロジェクト: orbisvicis/Slugathon
 def mycallback(teleported):
     if teleported is None:
         logging.info("canceled")
     elif teleported:
         logging.info("teleport")
     else:
         logging.info("normal move")
     guiutils.exit()
コード例 #3
0
 def my_callback((game, color)):
     logging.info("picked %s", color)
     guiutils.exit()
コード例 #4
0
ファイル: PickRecruit.py プロジェクト: dripton/Slugathon
 def my_callback((legion, creature, recruiter_names)):
     logging.info("%s recruited %s %s", legion, creature, recruiter_names)
     guiutils.exit()
コード例 #5
0
 def my_callback((legion, creature, recruiter_names)):
     logging.info("%s recruited %s %s", legion, creature, recruiter_names)
     guiutils.exit()
コード例 #6
0
ファイル: SummonAngel.py プロジェクト: orbisvicis/Slugathon
 def my_callback(result):
     legion, donor, creature = result
     logging.info("Will summon %s from %s into %s", creature, donor, legion)
     guiutils.exit()
コード例 #7
0
ファイル: AcquireAngels.py プロジェクト: orbisvicis/Slugathon
 def my_callback(result):
     legion, creature = result
     logging.info("%s acquired %s", legion, creature)
     guiutils.exit()
コード例 #8
0
 def my_callback((legion, donor, creature)):
     logging.info("Will summon %s from %s into %s", creature, donor, legion)
     guiutils.exit()
コード例 #9
0
 def my_callback(creature_name):
     logging.info("Picked %s", creature_name)
     guiutils.exit()
コード例 #10
0
ファイル: PickColor.py プロジェクト: dripton/Slugathon
 def my_callback((game, color)):
     logging.info("picked %s", color)
     guiutils.exit()
コード例 #11
0
 def my_callback(creature_name):
     logging.info("Picked %s", creature_name)
     guiutils.exit()
コード例 #12
0
ファイル: AcquireAngels.py プロジェクト: optionalg/Slugathon
 def my_callback((legion, creature)):
     logging.info("%s acquired %s", legion, creature)
     guiutils.exit()
コード例 #13
0
ファイル: PickColor.py プロジェクト: orbisvicis/Slugathon
 def my_callback(result):
     game, color = result
     logging.info("picked %s", color)
     guiutils.exit()