Commit 4c353093 authored by 聖園ミカ's avatar 聖園ミカ 🐟

byd

parent 6ad3088d
......@@ -7,7 +7,7 @@ function s.initial_effect(c)
e1:SetCode(EFFECT_SET_ATTACK_FINAL)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,0)
e1:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x3a7a))
e1:SetTarget(s.atktg)
e1:SetCondition(s.discon)
e1:SetValue(s.atkval)
c:RegisterEffect(e1)
......@@ -47,6 +47,9 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
e1:SetReset(RESET_PHASE+PHASE_END,2)
Duel.RegisterEffect(e1,tp)
end
function s.atktg(e,c)
return c:IsSetCard(0x3a7a) and not c:IsType(TYPE_LINK)
end
function s.splimit(e,c)
return not c:IsSetCard(0x3a7a)
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