Commit cc13a43d authored by nekrozar's avatar nekrozar

fix Vendread Reorigin

https://www.db.yugioh-card.com/yugiohdb/faq_search.action?ope=5&fid=21353
「ヴェンデット・リボーン」の対象となった相手のモンスターが、効果処理時に裏側守備表示になっている場合でも、効果処理は通常通り適用されます。
parent 3c3094fe
...@@ -24,9 +24,8 @@ function c30650147.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) ...@@ -24,9 +24,8 @@ function c30650147.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,0,0) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,0,0)
end end
function c30650147.activate(e,tp,eg,ep,ev,re,r,rp) function c30650147.activate(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetLocationCount(tp,LOCATION_MZONE)<1 then return end
local tc=Duel.GetFirstTarget() local tc=Duel.GetFirstTarget()
if tc:IsFaceup() and tc:IsRelateToEffect(e) and Duel.Release(tc,REASON_EFFECT)>0 then if tc:IsRelateToEffect(e) and Duel.Release(tc,REASON_EFFECT)>0 and Duel.GetLocationCount(tp,LOCATION_MZONE)>0 then
local token=Duel.CreateToken(tp,30650148) local token=Duel.CreateToken(tp,30650148)
Duel.SpecialSummonStep(token,0,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummonStep(token,0,tp,tp,false,false,POS_FACEUP)
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
......
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