Compare commits
No commits in common. "2929495348b0a4e1a1f777aca6a31543717a38da" and "2c9500c2bfbac61f3cfa476139c4186eb9b19c93" have entirely different histories.
2929495348
...
2c9500c2bf
@ -11,5 +11,4 @@ class Cat(Entity):
|
||||
self.cooldown = 1000
|
||||
self.velocity = 1
|
||||
self.busy = False
|
||||
self.sleeping = False
|
||||
self.direction = 0
|
||||
|
@ -1,11 +0,0 @@
|
||||
from domain.entities.entity import Entity
|
||||
from domain.world import World
|
||||
|
||||
|
||||
class Garbage(Entity):
|
||||
def __init__(self, x: int, y: int):
|
||||
super().__init__(x, y, "GARBAGE")
|
||||
self.wet = False
|
||||
self.size = 0
|
||||
|
||||
# TODO GARBAGE: add more properties
|
@ -1,10 +0,0 @@
|
||||
from domain.entities.entity import Entity
|
||||
from domain.world import World
|
||||
|
||||
|
||||
class Plant(Entity):
|
||||
def __init__(self, x: int, y: int):
|
||||
super().__init__(x, y, "PLANT")
|
||||
self.watered = 100
|
||||
|
||||
# TODO PLANT: add more properties to
|
@ -6,7 +6,4 @@ class Vacuum(Entity):
|
||||
def __init__(self, x: int, y: int):
|
||||
super().__init__(x, y, "VACUUM")
|
||||
self.battery = 100
|
||||
self.cleaning_detergent = 100
|
||||
self.container_filling = 0
|
||||
|
||||
# TODO VACUUM: add more properties
|
||||
# TODO add more properties
|
||||
|
Loading…
Reference in New Issue
Block a user