Commit 0cc28a24 authored by Tachibana's avatar Tachibana

eme

parent a756acfc
No preview for this file type
...@@ -52,10 +52,10 @@ function c24865315.splimit(e,se,sp,st) ...@@ -52,10 +52,10 @@ function c24865315.splimit(e,se,sp,st)
return se:IsHasType(EFFECT_TYPE_ACTIONS) return se:IsHasType(EFFECT_TYPE_ACTIONS)
end end
function c24865315.filter(c) 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 end
function c24865315.filter2(c,e,tp) 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 end
function c24865315.spcon(e,tp,eg,ep,ev,re,r,rp) function c24865315.spcon(e,tp,eg,ep,ev,re,r,rp)
local b1=Duel.GetCustomActivityCount(m,1-tp,ACTIVITY_CHAIN) local b1=Duel.GetCustomActivityCount(m,1-tp,ACTIVITY_CHAIN)
......
...@@ -81,7 +81,7 @@ end ...@@ -81,7 +81,7 @@ end
function cm.damcon(e,c) function cm.damcon(e,c)
local tp=e:GetHandlerPlayer() local tp=e:GetHandlerPlayer()
local g=Duel.GetDecktopGroup(tp,1) local g=Duel.GetDecktopGroup(tp,1)
return g:IsContains(e:GetHandler()) and c:IsFaceup() return g:IsContains(e:GetHandler()) and e:GetHandler():IsFaceup()
end end
function cm.val(e,c) function cm.val(e,c)
return dam*2 return dam*2
......
...@@ -43,6 +43,12 @@ function c9310023.initial_effect(c) ...@@ -43,6 +43,12 @@ function c9310023.initial_effect(c)
e4:SetTarget(c9310023.thtg) e4:SetTarget(c9310023.thtg)
e4:SetOperation(c9310023.thop) e4:SetOperation(c9310023.thop)
c:RegisterEffect(e4) 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 end
function c9310023.splimit(e,se,sp,st) function c9310023.splimit(e,se,sp,st)
return not e:GetHandler():IsLocation(LOCATION_EXTRA) or 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