Commit 0cc28a24 authored by Tachibana's avatar Tachibana

eme

parent a756acfc
Pipeline #8576 passed with stages
in 35 minutes and 9 seconds
No preview for this file type
......@@ -52,10 +52,10 @@ function c24865315.splimit(e,se,sp,st)
return se:IsHasType(EFFECT_TYPE_ACTIONS)
end
function c24865315.filter(c)
return c:IsType(TYPE_MONSTER) and c:IsSetCard(0xb10) and c:IsAbleToGrave()
return c:IsType(TYPE_MONSTER) and c:IsSetCard(0xb10) and c:IsAbleToGrave()
end
function c24865315.filter2(c,e,tp)
return c:IsType(TYPE_MONSTER) and c:IsSetCard(0xb10) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
return c:IsType(TYPE_MONSTER) and c:IsSetCard(0xb10)
end
function c24865315.spcon(e,tp,eg,ep,ev,re,r,rp)
local b1=Duel.GetCustomActivityCount(m,1-tp,ACTIVITY_CHAIN)
......
......@@ -81,7 +81,7 @@ end
function cm.damcon(e,c)
local tp=e:GetHandlerPlayer()
local g=Duel.GetDecktopGroup(tp,1)
return g:IsContains(e:GetHandler()) and c:IsFaceup()
return g:IsContains(e:GetHandler()) and e:GetHandler():IsFaceup()
end
function cm.val(e,c)
return dam*2
......
......@@ -43,6 +43,12 @@ function c9310023.initial_effect(c)
e4:SetTarget(c9310023.thtg)
e4:SetOperation(c9310023.thop)
c:RegisterEffect(e4)
--double tuner
local e5=Effect.CreateEffect(c)
e5:SetType(EFFECT_TYPE_SINGLE)
e5:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e5:SetCode(21142671)
c:RegisterEffect(e5)
end
function c9310023.splimit(e,se,sp,st)
return not e:GetHandler():IsLocation(LOCATION_EXTRA) or
......
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