Commit 8f9874c1 authored by wind2009's avatar wind2009

Fix 原石の穿光

parent 3a843567
Pipeline #28169 passed with stages
in 59 seconds
...@@ -32,8 +32,8 @@ function s.confilter(c) ...@@ -32,8 +32,8 @@ function s.confilter(c)
and (c:IsType(TYPE_NORMAL) or c:IsSetCard(0x2b9) and c:IsLevelAbove(5)) and (c:IsType(TYPE_NORMAL) or c:IsSetCard(0x2b9) and c:IsLevelAbove(5))
end end
function s.cost(e,tp,eg,ep,ev,re,r,rp,chk) function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)
local b1 = Duel.IsExistingMatchingCard(s.cfilter,tp,LOCATION_HAND,0,1,nil) local b1=Duel.IsExistingMatchingCard(s.cfilter,tp,LOCATION_HAND,0,1,nil)
local b2 = Duel.GetMatchingGroupCount(s.confilter,tp,LOCATION_MZONE,0,nil)>0 local b2=Duel.IsExistingMatchingCard(s.confilter,tp,LOCATION_MZONE,0,1,nil)
if chk==0 then return b1 or b2 end if chk==0 then return b1 or b2 end
if b1 then if b1 then
if b2 and not Duel.SelectYesNo(tp,aux.Stringid(id,0)) then return end if b2 and not Duel.SelectYesNo(tp,aux.Stringid(id,0)) then return 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