view gamelib/ss_state.py @ 806:b39f01012a74 pyntnclick

Instantiate the file chooser with a (non-existent) size
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 27 Jan 2013 15:26:10 +0200
parents 5dc866e1d71d
children bdebe693453f
line wrap: on
line source

"""The Custom state object for Suspended Sentence"""

from pyntnclick.state import GameState


class SSState(GameState):

    def get_jim_state(self):
        """Check JIM's health"""
        return self['bridge']['ai status']

    def loop_ai(self):
        """Make JIM loopy"""
        self['bridge']['ai status'] = 'looping'

    def break_ai(self):
        self['bridge']['ai status'] = 'dead'