Commit 5462392c authored by nekrozar's avatar nekrozar

fix Destiny HERO - Drilldark

https://www.db.yugioh-card.com/yugiohdb/faq_search.action?ope=5&fid=19838
質問の状況の場合、召喚・特殊召喚に成功した「D-HERO ドリルガイ」のモンスター効果の処理時に、相手の「月の書」の効果によって「D-HERO
ドリルガイ」自身が裏側守備表示になっていますので、『このカードの攻撃力以下の攻撃力を持つ「D-HERO」モンスター1体を手札から特殊召喚する』処理を適用する事はできません。
parent 56eacdf3
......@@ -31,7 +31,7 @@ end
function c91691605.operation(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end
local c=e:GetHandler()
if not c:IsRelateToEffect(e) then return end
if c:IsFacedown() or not c:IsRelateToEffect(e) then return end
local atk=c:GetAttack()
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local g=Duel.SelectMatchingCard(tp,c91691605.filter,tp,LOCATION_HAND,0,1,1,nil,e,tp,atk)
......
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