Commit cf1f6a8f authored by nekrozar's avatar nekrozar

fix Tenyi Spirit - Shthana

https://www.db.yugioh-card.com/yugiohdb/faq_search.action?ope=5&fid=22861
もう1度召喚されている状態の「エヴォルテクター
シュバリエ」は効果モンスターとして扱われていますので、戦闘やカードの効果によって破壊された場合でも、「天威龍-シュターナ」の『そのモンスターを特殊召喚する。その後、相手フィールドのモンスター1体を選んで破壊できる』モンスター効果を発動する事はできません。
parent 6a242530
......@@ -44,7 +44,7 @@ function c24557335.spop(e,tp,eg,ep,ev,re,r,rp)
end
end
function c24557335.descfilter(c,tp)
return c:IsReason(REASON_BATTLE+REASON_EFFECT) and not c:IsType(TYPE_EFFECT)
return c:IsReason(REASON_BATTLE+REASON_EFFECT) and bit.band(c:GetPreviousTypeOnField(),TYPE_EFFECT)==0
and c:IsPreviousLocation(LOCATION_MZONE) and c:IsPreviousPosition(POS_FACEUP)
and c:GetPreviousControler()==tp
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