Revert "Refine rogue progression and card pools"
This reverts commit 95d6155086.
This commit is contained in:
@@ -5,10 +5,7 @@ import { UI_FILE, COMMON_FILE, UI_ROOT, GENERATED_UI_SECTIONS, UI_APPEND_ORDER,
|
||||
export const rewardMethods = [
|
||||
method('CardPool', `local pool = {}
|
||||
for id, c in pairs(self.Cards) do
|
||||
local pools = self.ClassPools or {}
|
||||
local basePool = pools[self.SelectedClass] or pools.rogue or {}
|
||||
local jobPool = pools[self.PlayerJob] or {}
|
||||
if c.token ~= true and ((basePool[c.class] == true) or (self.PlayerJob ~= "" and jobPool[c.class] == true)) then
|
||||
if c.token ~= true and (c.class == self.SelectedClass or (self.PlayerJob ~= "" and c.class == self.PlayerJob)) then
|
||||
table.insert(pool, id)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user