Commit b9f97412 authored by nanahira's avatar nanahira

fix

parent e7073125
...@@ -130,8 +130,13 @@ addSkill(47529357, function(e1) ...@@ -130,8 +130,13 @@ addSkill(47529357, function(e1)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE) e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e1:SetCode(EFFECT_DESTROY_REPLACE) e1:SetCode(EFFECT_DESTROY_REPLACE)
e1:SetTarget(aux.TRUE) e1:SetTarget(function(e,tp,eg,ep,ev,re,r,rp,chk)
e1:SetValue(aux.TRUE) if chk==0 then return eg:IsExists(Card.IsControler,1,nil,tp) end
return true
end)
e1:SetValue(function(e,c)
return c:IsControler(e:GetHandlerPlayer())
end)
e1:SetOperation(function(e,tp,eg,ep,ev,re,r,rp) e1:SetOperation(function(e,tp,eg,ep,ev,re,r,rp)
Duel.Hint(HINT_CARD,0,47529357) Duel.Hint(HINT_CARD,0,47529357)
end) 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