Commit 5e530a24 authored by Tachibana's avatar Tachibana

eme

parent 2d38e239
Pipeline #7216 passed with stages
in 34 minutes and 27 seconds
...@@ -64,6 +64,6 @@ function c65020067.activate2(e,tp,eg,ep,ev,re,r,rp) ...@@ -64,6 +64,6 @@ function c65020067.activate2(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.SelectMatchingCard(tp,c65020067.filter,tp,LOCATION_EXTRA,0,1,1,nil) local g=Duel.SelectMatchingCard(tp,c65020067.filter,tp,LOCATION_EXTRA,0,1,1,nil)
local tc=g:GetFirst() local tc=g:GetFirst()
if tc then if tc then
Duel.LinkSummon(tp,tc,nil) Duel.XyzSummon(tp,tc,nil)
end end
end end
\ No newline at end of file
...@@ -63,6 +63,6 @@ function c65020068.activate2(e,tp,eg,ep,ev,re,r,rp) ...@@ -63,6 +63,6 @@ function c65020068.activate2(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.SelectMatchingCard(tp,c65020068.filter,tp,LOCATION_EXTRA,0,1,1,nil) local g=Duel.SelectMatchingCard(tp,c65020068.filter,tp,LOCATION_EXTRA,0,1,1,nil)
local tc=g:GetFirst() local tc=g:GetFirst()
if tc then if tc then
Duel.LinkSummon(tp,tc,nil) Duel.XyzSummon(tp,tc,nil)
end end
end end
\ No newline at end of file
...@@ -63,6 +63,6 @@ function c65020071.activate2(e,tp,eg,ep,ev,re,r,rp) ...@@ -63,6 +63,6 @@ function c65020071.activate2(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.SelectMatchingCard(tp,c65020071.filter,tp,LOCATION_EXTRA,0,1,1,nil) local g=Duel.SelectMatchingCard(tp,c65020071.filter,tp,LOCATION_EXTRA,0,1,1,nil)
local tc=g:GetFirst() local tc=g:GetFirst()
if tc then if tc then
Duel.LinkSummon(tp,tc,nil) Duel.XyzSummon(tp,tc,nil)
end end
end end
\ No newline at end of file
...@@ -14,7 +14,7 @@ function c65020072.thfil(c) ...@@ -14,7 +14,7 @@ function c65020072.thfil(c)
end end
function c65020072.target(e,tp,eg,ep,ev,re,r,rp,chk) function c65020072.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp,2) if chk==0 then return Duel.IsPlayerCanDraw(tp,2)
and Duel.IsExistingMatchingCard(c65020072.thfil,tp,LOCATION_HAND,0,1,nil) and Duel.GetLocationCount(tp,LOCATION_MZONE)>0 and Duel.IsExistingMatchingCard(c65020072.thfil,tp,LOCATION_HAND,0,1,e:GetHandler()) and Duel.GetLocationCount(tp,LOCATION_MZONE)>0
and Duel.IsPlayerCanSpecialSummonMonster(tp,65020072,0,0x21,1700,1200,4,RACE_PLANT,ATTRIBUTE_DARK) end and Duel.IsPlayerCanSpecialSummonMonster(tp,65020072,0,0x21,1700,1200,4,RACE_PLANT,ATTRIBUTE_DARK) end
Duel.SetOperationInfo(0,CATEGORY_TOGRAVE,nil,1,tp,LOCATION_HAND) Duel.SetOperationInfo(0,CATEGORY_TOGRAVE,nil,1,tp,LOCATION_HAND)
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,2) Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,2)
......
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