Skip to content

Commit d1562f9

Browse files
authored
"Artmegia Banish - Change" update
Don't allow placing a Field Spell from the GY if the effect o "Necrovalley" is currently applying.
1 parent 27f691e commit d1562f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pre-release/c101301058.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
4343
local tohand_chk=Duel.IsExistingMatchingCard(aux.FaceupFilter(Card.IsCode,101301054),tp,LOCATION_ONFIELD,0,1,nil)
4444
local hint_desc=tohand_chk and aux.Stringid(id,2) or HINTMSG_TOFIELD
4545
Duel.Hint(HINT_SELECTMSG,tp,hint_desc)
46-
local sc=Duel.SelectMatchingCard(tp,s.plthfilter,tp,LOCATION_DECK|LOCATION_GRAVE,0,1,1,nil,tohand_chk):GetFirst()
46+
local sc=Duel.SelectMatchingCard(tp,aux.NecroValleyFilter(s.plthfilter),tp,LOCATION_DECK|LOCATION_GRAVE,0,1,1,nil,tohand_chk):GetFirst()
4747
if not sc then return end
4848
if sc:IsCode(101301054) then
4949
if not tohand_chk then
@@ -82,4 +82,4 @@ function s.negop(e,tp,eg,ep,ev,re,r,rp)
8282
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
8383
end
8484
end
85-
end
85+
end

0 commit comments

Comments
 (0)