""" Item - an inventory item that can be carried around the map. Mostly, items are a way to help clear difficult dungeons. """ class ItemType: GiantHammer = 1 ExtraHeart = 2 Hourglass = 3 Clones = 4 PowerUp = 5 class ItemClass: def __init__(self, Type, UsesLeft = 0): self.Type = Type self.UsesLeft = UsesLeft