Skip to content

Commit

Permalink
Added the turn 1 spell discard effect to Weekly Daily (EX5 NPC).
Browse files Browse the repository at this point in the history
  • Loading branch information
Nietono committed Sep 11, 2017
1 parent 8d57ac9 commit f16ec71
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions characters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7663,6 +7663,12 @@ end,
local mag2 = floor((op.field[idx].atk - mag) / 2)
OneBuff(op, idx, {atk={"=", mag}, sta={"+", mag2}}):apply()
end
if pl.game.turn == 1 then
local s_idx = uniformly(op:hand_idxs_with_preds(pred.spell))
if s_idx then
op:hand_to_grave(s_idx)
end
end
end,

-- Gold Lion Nold
Expand Down

0 comments on commit f16ec71

Please sign in to comment.