11 lines
251 B
Python
11 lines
251 B
Python
class Cat:
|
|
def __init__(self, name, traits, food, money, inventory):
|
|
self.name = name
|
|
self.traits = traits
|
|
self.food = 0
|
|
self.money = 25
|
|
self.inventory = {}
|
|
|
|
def to_dict(self):
|
|
return vars(self)
|