view skaapsteker/sprites/npcs.py @ 197:6696ffd51ac2

Hordes of NPCs.
author Simon Cross <hodgestar@gmail.com>
date Wed, 06 Apr 2011 22:07:00 +0200
parents 9d08f99b5ddf
children c5c4306593d8
line wrap: on
line source

from .base import NPC


class Monk(NPC):
    image_file = 'monk/monk.png'


class Guard(NPC):
    image_file = 'guard/guard_standing.png'


class Hattori(NPC):
    image_file = 'hattori/hattori_standing.png'


class Ichiro(NPC):
    image_file = 'ichiro/ichiro_standing.png'


class Kaneda(NPC):
    image_file = 'kaneda/kaneda_standing.png'


class Kumiko(NPC):
    image_file = 'geisha/geisha_01.png'


class Actor(NPC):
    image_file = 'dummy.png'


class Sasuke(NPC):
    image_file = 'sasuke/sasuke_standing.png'