Commit cf7a9b72 authored by dest's avatar dest Committed by DailyShana

fix Ritual Buster (#765)

* fix Ritual Buster
* fix
parent eb635645
...@@ -21,7 +21,10 @@ function c54094821.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -21,7 +21,10 @@ function c54094821.activate(e,tp,eg,ep,ev,re,r,rp)
e1:SetCode(EFFECT_CANNOT_ACTIVATE) e1:SetCode(EFFECT_CANNOT_ACTIVATE)
e1:SetTargetRange(0,1) e1:SetTargetRange(0,1)
e1:SetValue(c54094821.aclimit) e1:SetValue(c54094821.aclimit)
if Duel.GetTurnPlayer()==tp then if Duel.GetTurnPlayer()==tp and Duel.GetCurrentPhase()<=PHASE_STANDBY then
e1:SetReset(RESET_PHASE+PHASE_STANDBY,3)
elseif Duel.GetTurnPlayer()==tp and Duel.GetCurrentPhase()>PHASE_STANDBY
or Duel.GetTurnPlayer()==1-tp and Duel.GetCurrentPhase()<=PHASE_STANDBY then
e1:SetReset(RESET_PHASE+PHASE_STANDBY,2) e1:SetReset(RESET_PHASE+PHASE_STANDBY,2)
else else
e1:SetReset(RESET_PHASE+PHASE_STANDBY,1) e1:SetReset(RESET_PHASE+PHASE_STANDBY,1)
......
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