20 lines
399 B
Lua
20 lines
399 B
Lua
local BattleConst = require "app/module/battle/battle_const"
|
|
|
|
local BattlePassive = {
|
|
passiveSkills = {}
|
|
}
|
|
|
|
local PASSIVE_EVENT = BattleConst.PASSIVE_EVENT
|
|
local SKILL_RECORD_DATA_NAME = BattleConst.SKILL_RECORD_DATA_NAME
|
|
local DEFAULT_FACTOR = BattleConst.DEFAULT_FACTOR
|
|
|
|
function BattlePassive:init()
|
|
end
|
|
|
|
function BattlePassive:clear()
|
|
end
|
|
|
|
BattlePassive.checkTrigger = {
|
|
}
|
|
|
|
return BattlePassive |