Machine_learning_2023/domain/entities/earring.py

9 lines
240 B
Python

from domain.entities.entity import Entity
from domain.world import World
class Earring(Entity):
def __init__(self, x: int, y: int):
super().__init__(x, y, "EARRING")
self.properties = [1, 9, 0, 1, 0, 1, 20, 0]