Commit f784b8b7 authored by nekrozar's avatar nekrozar

fix Rebirth of Nephthys

https://www.db.yugioh-card.com/yugiohdb/faq_search.action?ope=5&fid=226

質問の状況のように、カード名が「ネフティスの蒼凰神」として扱われている「ファントム・オブ・カオス」を「ネフティスの輪廻」の効果処理によってリリースし儀式召喚を行った場合でも、『「ネフティスの祀り手」または「ネフティスの蒼凰神」をリリースして儀式召喚した場合』にあたりますので、『さらにフィールドのカード1枚を選んで破壊できる』処理を適用する事ができます。
parent ce9691cb
......@@ -21,7 +21,8 @@ function c23459650.target(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND)
end
function c23459650.mfilter(c)
return c:IsCode(88176533,24175232)
local code,code2=c:GetPreviousCodeOnField()
return code==88176533 or code==24175232 or code2==88176533 or code2==24175232
end
function c23459650.activate(e,tp,eg,ep,ev,re,r,rp)
local mg=Duel.GetRitualMaterial(tp)
......
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