18 lines
446 B
Python
18 lines
446 B
Python
import pygame
|
|
|
|
from domain.entities.entity import Entity
|
|
from domain.world import World
|
|
|
|
|
|
class Cat(Entity):
|
|
def __init__(self, x: int, y: int):
|
|
super().__init__(x, y, "CAT")
|
|
self.last_tick = pygame.time.get_ticks()
|
|
self.cooldown = 1000
|
|
self.velocity = 1
|
|
self.busy = False
|
|
self.sleeping = False
|
|
self.direction = 0
|
|
|
|
self.properties = [4, 2, 20, 0, 1, 32, 37, 5]
|