Commit c5a922e0 authored by a597449807's avatar a597449807 Committed by GitHub

Fix 封狼雷坊 (#2782)

修复①效果在发动时自身应不能处于“被战斗破坏”的状态的问题(相手がモンスターの効果を発動した時、特殊召喚したこのカードをリリースして発動できる。その発動を無効にし破壊する)。

https://www.db.yugioh-card.com/yugiohdb/faq_search.action?ope=4&cid=14103&request_locale=ja
parent cdc1423f
...@@ -27,7 +27,7 @@ function c66722103.initial_effect(c) ...@@ -27,7 +27,7 @@ function c66722103.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c66722103.condition(e,tp,eg,ep,ev,re,r,rp) function c66722103.condition(e,tp,eg,ep,ev,re,r,rp)
return ep==1-tp and re:IsActiveType(TYPE_MONSTER) and Duel.IsChainNegatable(ev) return ep==1-tp and re:IsActiveType(TYPE_MONSTER) and Duel.IsChainNegatable(ev) and not e:GetHandler():IsStatus(STATUS_BATTLE_DESTROYED)
end end
function c66722103.cost(e,tp,eg,ep,ev,re,r,rp,chk) function c66722103.cost(e,tp,eg,ep,ev,re,r,rp,chk)
local c=e:GetHandler() local c=e:GetHandler()
......
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