sonic-radiance/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/behaviours/random.lua
2020-08-05 09:25:38 +02:00

13 lines
394 B
Lua

local ParentBehaviour = require "scenes.battlesystem.controllers.fighters.systems.behaviours.parent"
local RandomBehaviour = ParentBehaviour:extend()
function RandomBehaviour:new(fighter, skilldata, targetList)
RandomBehaviour.super.new(self, fighter, skilldata, targetList, true)
end
function RandomBehaviour:calculateScore(target)
return math.random(1, 200)
end
return RandomBehaviour