Commit eeb3e9f9 authored by 独孤朲's avatar 独孤朲

Update c90075978.lua

--W星雲隕石
Q:エンドフェイズの3つの効果の処理は同時に行いますか?
A:いいえ、同時ではありません。
  まず、裏側守備表示にする効果、次にドローする効果の処理を行います。
  更に、デッキから特殊召喚する処理を適用する場合は、特殊召喚の効果処理を最後に行います。(11/02/17)
parent 703095c2
...@@ -43,6 +43,7 @@ function c90075978.setop(e,tp,eg,ep,ev,re,r,rp) ...@@ -43,6 +43,7 @@ function c90075978.setop(e,tp,eg,ep,ev,re,r,rp)
if dt==0 or Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end if dt==0 or Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end
local sg=Duel.GetMatchingGroup(c90075978.spfilter,tp,LOCATION_DECK,0,nil,e,tp) local sg=Duel.GetMatchingGroup(c90075978.spfilter,tp,LOCATION_DECK,0,nil,e,tp)
if sg:GetCount()>0 and Duel.SelectYesNo(tp,aux.Stringid(90075978,0)) then if sg:GetCount()>0 and Duel.SelectYesNo(tp,aux.Stringid(90075978,0)) then
Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
Duel.SpecialSummon(sg:Select(tp,1,1,nil),0,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummon(sg:Select(tp,1,1,nil),0,tp,tp,false,false,POS_FACEUP)
end 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