Commit 51e28b28 authored by mercury233's avatar mercury233

fix

parent 8aeb5310
...@@ -71,7 +71,8 @@ function c11646785.mtfilter(c,e) ...@@ -71,7 +71,8 @@ function c11646785.mtfilter(c,e)
return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e) return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e)
end end
function c11646785.mttg(e,tp,eg,ep,ev,re,r,rp,chk) function c11646785.mttg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c11646785.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c11646785.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end
end end
function c11646785.mtop(e,tp,eg,ep,ev,re,r,rp) function c11646785.mtop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -74,7 +74,7 @@ function c12615446.xyzcon(e,tp,eg,ep,ev,re,r,rp) ...@@ -74,7 +74,7 @@ function c12615446.xyzcon(e,tp,eg,ep,ev,re,r,rp)
return tc:IsLocation(LOCATION_GRAVE) and tc:IsType(TYPE_MONSTER) and tc:IsReason(REASON_BATTLE) return tc:IsLocation(LOCATION_GRAVE) and tc:IsType(TYPE_MONSTER) and tc:IsReason(REASON_BATTLE)
end end
function c12615446.xyztg(e,tp,eg,ep,ev,re,r,rp,chk) function c12615446.xyztg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ) end
local tc=e:GetLabelObject() local tc=e:GetLabelObject()
Duel.SetTargetCard(tc) Duel.SetTargetCard(tc)
Duel.SetOperationInfo(0,CATEGORY_LEAVE_GRAVE,tc,1,0,0) Duel.SetOperationInfo(0,CATEGORY_LEAVE_GRAVE,tc,1,0,0)
......
...@@ -93,7 +93,8 @@ function c18326736.mtfilter(c) ...@@ -93,7 +93,8 @@ function c18326736.mtfilter(c)
return c:IsSetCard(0x109c) return c:IsSetCard(0x109c)
end end
function c18326736.mttg(e,tp,eg,ep,ev,re,r,rp,chk) function c18326736.mttg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c18326736.mtfilter,tp,LOCATION_EXTRA,0,1,nil) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c18326736.mtfilter,tp,LOCATION_EXTRA,0,1,nil) end
end end
function c18326736.mtop(e,tp,eg,ep,ev,re,r,rp) function c18326736.mtop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -37,7 +37,7 @@ end ...@@ -37,7 +37,7 @@ end
function c39030163.mttg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) function c39030163.mttg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
local g=e:GetHandler():GetEquipGroup() local g=e:GetHandler():GetEquipGroup()
if chkc then return g:IsContains(chkc) and chkc:IsCanBeEffectTarget(e) end if chkc then return g:IsContains(chkc) and chkc:IsCanBeEffectTarget(e) end
if chk==0 then return g:IsExists(Card.IsCanBeEffectTarget,1,nil,e) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ) and g:IsExists(Card.IsCanBeEffectTarget,1,nil,e) end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_XMATERIAL) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_XMATERIAL)
local tg=g:FilterSelect(tp,Card.IsCanBeEffectTarget,1,2,nil,e) local tg=g:FilterSelect(tp,Card.IsCanBeEffectTarget,1,2,nil,e)
Duel.SetTargetCard(tg) Duel.SetTargetCard(tg)
......
...@@ -67,7 +67,8 @@ function c53334641.mtfilter(c) ...@@ -67,7 +67,8 @@ function c53334641.mtfilter(c)
return c:IsSetCard(0x8d) return c:IsSetCard(0x8d)
end end
function c53334641.mttg(e,tp,eg,ep,ev,re,r,rp,chk) function c53334641.mttg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c53334641.mtfilter,tp,LOCATION_HAND,0,1,nil) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c53334641.mtfilter,tp,LOCATION_HAND,0,1,nil) end
end end
function c53334641.mtop(e,tp,eg,ep,ev,re,r,rp) function c53334641.mtop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -68,7 +68,8 @@ function c57031794.mtfilter(c,e) ...@@ -68,7 +68,8 @@ function c57031794.mtfilter(c,e)
return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e) return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e)
end end
function c57031794.mttg(e,tp,eg,ep,ev,re,r,rp,chk) function c57031794.mttg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c57031794.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c57031794.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end
end end
function c57031794.mtop(e,tp,eg,ep,ev,re,r,rp) function c57031794.mtop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -67,7 +67,8 @@ function c58600555.condition(e,tp,eg,ep,ev,re,r,rp) ...@@ -67,7 +67,8 @@ function c58600555.condition(e,tp,eg,ep,ev,re,r,rp)
return eg:IsExists(c58600555.cfilter,1,nil) return eg:IsExists(c58600555.cfilter,1,nil)
end end
function c58600555.target(e,tp,eg,ep,ev,re,r,rp,chk) function c58600555.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(Card.IsRace,tp,LOCATION_GRAVE,0,1,nil,RACE_INSECT) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(Card.IsRace,tp,LOCATION_GRAVE,0,1,nil,RACE_INSECT) end
end end
function c58600555.operation(e,tp,eg,ep,ev,re,r,rp) function c58600555.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -36,7 +36,8 @@ function c71921856.filter(c) ...@@ -36,7 +36,8 @@ function c71921856.filter(c)
return c:IsSetCard(0x84) and c:IsType(TYPE_MONSTER) return c:IsSetCard(0x84) and c:IsType(TYPE_MONSTER)
end end
function c71921856.target(e,tp,eg,ep,ev,re,r,rp,chk) function c71921856.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c71921856.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,nil) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c71921856.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,nil) end
end end
function c71921856.operation(e,tp,eg,ep,ev,re,r,rp) function c71921856.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -71,7 +71,8 @@ function c85252081.mtfilter(c,e) ...@@ -71,7 +71,8 @@ function c85252081.mtfilter(c,e)
return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e) return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and not c:IsType(TYPE_TOKEN) and c:IsSetCard(0x10dc) and not c:IsImmuneToEffect(e)
end end
function c85252081.mttg(e,tp,eg,ep,ev,re,r,rp,chk) function c85252081.mttg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c85252081.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end if chk==0 then return e:GetHandler():IsType(TYPE_XYZ)
and Duel.IsExistingMatchingCard(c85252081.mtfilter,tp,LOCATION_HAND+LOCATION_MZONE,0,1,nil,e) end
end end
function c85252081.mtop(e,tp,eg,ep,ev,re,r,rp) function c85252081.mtop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
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