Skip to content

Commit 5311b00

Browse files
committed
fixed Explorer of the Temple
Should have the correct filter for Ritual monsters
1 parent b1ad8d5 commit 5311b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rush/c160323010.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function s.tdfilter(c,tp)
1818
return c:IsMonster() and c:IsAbleToDeckOrExtraAsCost()
1919
end
2020
function s.spfilter(c,e,tp)
21-
return c:IsLevel(7) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
21+
return c:IsLevel(7) and c:IsType(TYPE_RITUAL) and c:IsAttack(2300) and c:IsDefense(2500) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
2222
and Duel.IsExistingMatchingCard(s.tdfilter,tp,LOCATION_GRAVE,0,2,c,tp)
2323
end
2424
function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)

0 commit comments

Comments
 (0)