We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2194947 commit 4081cc3Copy full SHA for 4081cc3
rush/c160023022.lua
@@ -26,15 +26,15 @@ function s.filter(c)
26
return c:IsFaceup() and c:IsRace(RACE_MACHINE)
27
end
28
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
29
- if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_MZONE,0,1,nil) end
+ if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,nil) end
30
31
function s.operation(e,tp,eg,ep,ev,re,r,rp)
32
local c=e:GetHandler()
33
--Requirement
34
if Duel.DiscardDeck(tp,1,REASON_COST)<1 then return end
35
--Effect
36
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATKDEF)
37
- local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_MZONE,0,1,1,nil)
+ local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,1,nil)
38
if #g>0 then
39
Duel.HintSelection(g)
40
local tc=g:GetFirst()
0 commit comments