X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=koperkapel%2Fgamelib%2Fenemy_roach.py;h=b09c3aa0f98af86c03169af0824f05935ddfc259;hb=aa00efba55147a32ae9aa71b86789616e11f16dc;hp=2201c586f389e51193bc9c6851c9f5ea6b2a116e;hpb=f1955c8e7345b183c12682caa9daac0741d52af1;p=koperkapel.git diff --git a/koperkapel/gamelib/enemy_roach.py b/koperkapel/gamelib/enemy_roach.py index 2201c58..b09c3aa 100644 --- a/koperkapel/gamelib/enemy_roach.py +++ b/koperkapel/gamelib/enemy_roach.py @@ -15,6 +15,7 @@ def get_enemy_roach(level): roach.health = 5 roach.angle = 0 roach.level = level + roach.level_layer = 'floor' # always the case for now roach.move = partial(move, roach) roach.last_moved = 0 roach.last_attacked= 0 @@ -27,7 +28,7 @@ def get_enemy_roach(level): def attack(roach, player_pos, player_layer, dt): """Attack the player if close enough""" roach.last_attacked += dt - if roach.last_attacked > 0.3: + if roach.last_attacked > 0.6: roach.last_attacked = 0 if player_layer != 'floor': return None