view skaapsteker/sprites/items.py @ 191:993f4f55eb93

Minor item changes.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 06 Apr 2011 21:35:30 +0200
parents 9d08f99b5ddf
children e06c54d7701f
line wrap: on
line source

from base import Item


class TeaCup(Item):
    image_file = 'teacup_empty.png'


class TeaLeaf(Item):
    image_file = 'tealeaf.png'


class TeaCupFull(Item):
    image_file = 'teacup_full.png'


class TeaPot(Item):
    image_file = 'teapot.png'
    portable = False