2021-08-15 16:34:36 +02:00
|
|
|
local StepParent = require "scenes.battlesystem.choregraphy.step.parent"
|
2021-07-18 08:59:01 +02:00
|
|
|
local SetCounterStep = StepParent:extend()
|
|
|
|
|
|
|
|
function SetCounterStep:new(system, args)
|
|
|
|
SetCounterStep.super.new(self, system, args)
|
|
|
|
end
|
|
|
|
|
|
|
|
function SetCounterStep:start()
|
|
|
|
self.choregraphy:setCounter(self.arguments.counterName, self.arguments.number, self.arguments.relative)
|
|
|
|
self:finish()
|
|
|
|
end
|
|
|
|
|
|
|
|
return SetCounterStep
|