You need to sign in or sign up before continuing.
Commit 17a7561a authored by YuGiOhMoDDeR's avatar YuGiOhMoDDeR

fix

it requires to show "Venom" Monster Card not any "Venom"card
parent 85405eed
...@@ -15,7 +15,7 @@ function c80678380.condition(e,tp,eg,ep,ev,re,r,rp) ...@@ -15,7 +15,7 @@ function c80678380.condition(e,tp,eg,ep,ev,re,r,rp)
return ep~=tp and re:IsActiveType(TYPE_SPELL) and re:IsHasType(EFFECT_TYPE_ACTIVATE) and Duel.IsChainNegatable(ev) return ep~=tp and re:IsActiveType(TYPE_SPELL) and re:IsHasType(EFFECT_TYPE_ACTIVATE) and Duel.IsChainNegatable(ev)
end end
function c80678380.cfilter(c) function c80678380.cfilter(c)
return c:IsSetCard(0x50) and not c:IsPublic() return c:IsSetCard(0x50) and c:IsType(TYPE_MONSTER) and not c:IsPublic()
end end
function c80678380.cost(e,tp,eg,ep,ev,re,r,rp,chk) function c80678380.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c80678380.cfilter,tp,LOCATION_HAND,0,1,nil) end if chk==0 then return Duel.IsExistingMatchingCard(c80678380.cfilter,tp,LOCATION_HAND,0,1,nil) end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment