Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/data/ciudad.py
blob: f9f5cf7058c340ae0a96351b35826d5e9199a333 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-

__author__="rodripf"
__date__ ="$31/10/2012 12:43:47 PM$"

from lugar import Lugar

class Ciudad(Lugar):
    def cargarDatos(self):
        self.nombre = "ciudad"
        self.cosasPermitidas = [("camisa", 2), ("championes", 1), ("jeans", 1), ("vestido", 1), ("zapatos", 1)]