Skip to content

Commit 19c2653

Browse files
authored
"Chasmatis, Dragon Ruler of Auroras" fix
It should only be able to Special Summon lv7 monsters
1 parent 3016277 commit 19c2653

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pre-release/c101208047.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function s.spcon(e,tp,eg,ep,ev,re,r,rp)
9494
return c:IsReason(REASON_BATTLE) or (rp==1-tp and c:IsReason(REASON_EFFECT) and c:IsPreviousControler(tp))
9595
end
9696
function s.spfilter(c,e,tp)
97-
return c:IsSetCard(SET_DRAGON_RULER) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) and c:IsFaceup()
97+
return c:IsSetCard(SET_DRAGON_RULER) and c:IsLevel(7) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) and c:IsFaceup()
9898
end
9999
function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
100100
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
@@ -108,4 +108,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
108108
if #g>0 then
109109
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
110110
end
111-
end
111+
end

0 commit comments

Comments
 (0)