Commit ff2b3add authored by nekrozar's avatar nekrozar

fix Dragonmaid Luft

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

「ドラゴンメイド・ルフト」の『このターン、その表側表示モンスターはフィールドで発動する効果を発動できない』モンスター効果の対象として、通常モンスターの「真紅眼の黒竜」を選択する事はできませんが、通常モンスターとして扱われている「真紅眼の黒炎竜」を選択する事はできます。
parent 0452fde6
......@@ -37,7 +37,7 @@ function c15848542.actcost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.SendtoGrave(e:GetHandler(),REASON_COST+REASON_DISCARD)
end
function c15848542.actfilter(c)
return c:IsFaceup() and c:IsType(TYPE_EFFECT)
return c:IsFaceup() and (c:IsType(TYPE_EFFECT) or bit.band(c:GetOriginalType(),TYPE_EFFECT)==TYPE_EFFECT)
end
function c15848542.acttg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_MZONE) and c15848542.actfilter(chkc) 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