12 lines
301 B
Python
12 lines
301 B
Python
from domain.entities.entity import Entity
|
|
|
|
|
|
class Garbage(Entity):
|
|
def __init__(self, x: int, y: int):
|
|
super().__init__(x, y, "PEEL")
|
|
self.wet = False
|
|
self.size = 0
|
|
self.properties = [2, 2, 0, 0, 1, 4, 24, 1]
|
|
|
|
# TODO GARBAGE: add more properties
|