Commit 278fd055 authored by Amiya's avatar Amiya

修复

parent c1371358
Pipeline #31290 passed with stages
in 1 minute and 23 seconds
...@@ -39,11 +39,11 @@ function s.thfilter(c) ...@@ -39,11 +39,11 @@ function s.thfilter(c)
return c:IsCode(100233009) and c:IsAbleToHand() return c:IsCode(100233009) and c:IsAbleToHand()
end end
function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk) function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.thfilter,tp,LOCATION_DECK,0,1,nil) or Duel.IsExistingMatchingCard(aux.AND(Card.IsFaceupEx),tp,LOCATION_ONFIELD+LOCATION_GRAVE,0,1,nil,100233009) and c:IsPlayerCanDraw(tp,1) end if chk==0 then return Duel.IsExistingMatchingCard(s.thfilter,tp,LOCATION_DECK,0,1,nil) or Duel.IsExistingMatchingCard(aux.AND(Card.IsFaceupEx),tp,LOCATION_ONFIELD+LOCATION_GRAVE,0,1,nil,100233009) and Duel.IsPlayerCanDraw(tp,1) end
Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK)
end end
function s.thop(e,tp,eg,ep,ev,re,r,rp) function s.thop(e,tp,eg,ep,ev,re,r,rp)
local dr=Duel.IsExistingMatchingCard(aux.AND(Card.IsFaceupEx),tp,LOCATION_ONFIELD+LOCATION_GRAVE,0,1,nil,100233009) and c:IsPlayerCanDraw(tp,1) local dr=Duel.IsExistingMatchingCard(aux.AND(Card.IsFaceupEx),tp,LOCATION_ONFIELD+LOCATION_GRAVE,0,1,nil,100233009) and Duel.IsPlayerCanDraw(tp,1)
if Duel.IsExistingMatchingCard(s.thfilter,tp,LOCATION_DECK,0,1,nil) and (not dr or not Duel.SelectYesNo(tp,aux.Stringid(id,3))) then if Duel.IsExistingMatchingCard(s.thfilter,tp,LOCATION_DECK,0,1,nil) and (not dr or not Duel.SelectYesNo(tp,aux.Stringid(id,3))) then
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND)
local g=Duel.SelectMatchingCard(tp,s.thfilter,tp,LOCATION_DECK,0,1,1,nil) local g=Duel.SelectMatchingCard(tp,s.thfilter,tp,LOCATION_DECK,0,1,1,nil)
......
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