Commit 8ecee476 authored by mercury233's avatar mercury233 Committed by GitHub

fix 幻獣機ブラックファルコン

■『1ターンに1度、トークン1体をリリースして発動できる。相手フィールド上のモンスター1体を選択して表側守備表示にする。この効果は相手ターンでも発動できる』モンスター効果は誘発即時効果です。(相手のモンスターゾーンに表側表示で存在するモンスター1体を対象に取る効果です。この効果を発動する際に、コストとして、自分のモンスターゾーンに存在するトークン1体をリリースします。また、この効果をダメージステップに発動する事はできません。)
parent 5854a492
......@@ -69,7 +69,7 @@ function c4417407.poscost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.Release(g,REASON_COST)
end
function c4417407.filter(c)
return not c:IsPosition(POS_FACEUP_DEFENSE) and c:IsCanChangePosition()
return c:IsPosition(POS_FACEUP_ATTACK) and c:IsCanChangePosition()
end
function c4417407.postg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsControler(1-tp) and chkc:IsLocation(LOCATION_MZONE) and c4417407.filter(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