Gain more roaches
[koperkapel.git] / koperkapel / gamelib / friendlyroach.py
1 # A doors / keypads set
2
3 from ..roaches import default_roaches, WorldRoach
4
5
6 def get_friendly_roach(x, y):
7     roach = default_roaches.assemble(WorldRoach())
8     roach.anchor = (0, 0)
9     roach.game_pos = (x, y)
10     return roach