Commit fb9c1af4 authored by 聖園ミカ's avatar 聖園ミカ 🐟

54188

parent b8d360a0
Pipeline #30762 passed with stages
in 34 minutes and 46 seconds
......@@ -60,7 +60,7 @@ function s.initial_effect(c)
end
function s.dfilter(c)
return e:GetHandler():GetType()==TYPE_TRAP+TYPE_CONTINUOUS and c:IsAbleToDeck() and (not c:IsCode(31710007)) and c:IsFaceup()
return c:GetType()==TYPE_TRAP+TYPE_CONTINUOUS and c:IsAbleToDeck() and (not c:IsCode(31710007)) and c:IsFaceup()
end
function s.dtarget(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_SZONE) and chkc:IsControler(tp) and s.dfilter(chkc) end
......@@ -116,13 +116,13 @@ function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK)
end
function s.thfilter(c)
return c:IsSetCard(0x690) and e:GetHandler():GetType()==TYPE_TRAP+TYPE_CONTINUOUS and c:IsAbleToHand() and not c:IsCode(31710007)
return c:IsSetCard(0x690) and c:GetType()==TYPE_TRAP+TYPE_CONTINUOUS and c:IsAbleToHand() and not c:IsCode(31710007)
end
function s.pfilter(c)
return c:IsSetCard(0x690) and c:IsType(TYPE_MONSTER) and c:IsRace(RACE_WARRIOR)
end
function s.setfilter(c)
return c:IsSetCard(0x690) and e:GetHandler():GetType()==TYPE_TRAP+TYPE_CONTINUOUS
return c:IsSetCard(0x690) and c:GetType()==TYPE_TRAP+TYPE_CONTINUOUS
end
function s.activate(e,tp,eg,ep,ev,re,r,rp)--JianSuo
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND)
......
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