8 lines
219 B
Python
8 lines
219 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.props = [2,1,0,12,0,50,24]
|