Commit f7424def authored by Tianchenglipu's avatar Tianchenglipu

Update c96142517.lua

这个的处理是错的啦=-=
千死蛮巧是先特殊召唤,然后把目标怪兽重叠到特殊召唤的怪兽下面
这里的处理是,先重叠,再特殊召唤=。=

另外,这张卡如果要特殊召唤C88,目标也必须包含至少1只88在内才行。

目前的修改幅度,需要该卡的文本0和1分别为:「请至少选择1只「No.88 机关傀儡-命运狮子」为对象」;「是否继续选择对象?」
parent f26d619a
......@@ -81,11 +81,12 @@ end
function c96142517.activate(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end
local rk=e:GetLabel()
local mg=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS):Filter(Card.IsRelateToEffect,nil,e)
local mg=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS)
local rg=mg:Filter(Card.IsRelateToEffect,nil,e)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local g=Duel.SelectMatchingCard(tp,c96142517.spfilter,tp,LOCATION_EXTRA,0,1,1,nil,e,tp,rk+1,mg)
local sc=g:GetFirst()
if sc and Duel.SpecialSummon(sc,0,tp,tp,false,false,POS_FACEUP)~=0 then
Duel.Overlay(sc,mg)
Duel.Overlay(sc,rg)
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