2019-08-14 16:26:23 +02:00
|
|
|
local Battler = require("scenes.battlesystem.actors.battler")
|
|
|
|
local Ennemy = Battler:extend()
|
2019-03-10 13:11:26 +01:00
|
|
|
|
2019-08-14 16:26:23 +02:00
|
|
|
function Ennemy:new(world, x, y)
|
|
|
|
Ennemy.super.new(self, world, x, y, 0)
|
2019-03-10 13:11:26 +01:00
|
|
|
self.isEnnemy = true
|
|
|
|
|
|
|
|
self.actionPerTurn = 2
|
|
|
|
end
|
|
|
|
|
|
|
|
function Ennemy:draw()
|
2019-08-14 16:26:23 +02:00
|
|
|
x, y = self.maputils.gridToPixel(self.x, self.y, true)
|
2019-03-10 13:11:26 +01:00
|
|
|
love.graphics.setColor(1, 0, 0, 1)
|
|
|
|
love.graphics.rectangle("fill", x - 8, y - 32, 16, 32)
|
|
|
|
love.graphics.setColor(1, 1, 1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Ennemy:drawIcon(x, y)
|
|
|
|
love.graphics.setColor(1, 0, 0, 1)
|
|
|
|
love.graphics.rectangle("fill", x, y, 16, 16)
|
|
|
|
love.graphics.setColor(1, 1, 1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Ennemy:getStats()
|
|
|
|
local stats = {}
|
|
|
|
stats.speed = 100
|
|
|
|
|
|
|
|
return stats
|
|
|
|
end
|
|
|
|
|
|
|
|
return Ennemy
|