Commit 0ae5c2b8 authored by wind2009's avatar wind2009

Merge branch 'patch-7' into 'master'

Fix 原石の反叫

See merge request mycard/pre-release-database-cdb!142
parents 5227e9bb a071e1c5
Pipeline #30401 failed with stages
in 30 seconds
...@@ -15,10 +15,9 @@ function s.initial_effect(c) ...@@ -15,10 +15,9 @@ function s.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--set --set
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_QUICK_O) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetCode(EVENT_FREE_CHAIN) e3:SetCode(EVENT_PHASE+PHASE_STANDBY)
e3:SetRange(LOCATION_GRAVE) e3:SetRange(LOCATION_GRAVE)
e3:SetHintTiming(TIMING_END_PHASE)
e3:SetCountLimit(1,id+o) e3:SetCountLimit(1,id+o)
e3:SetCondition(s.setcon) e3:SetCondition(s.setcon)
e3:SetTarget(s.settg) e3:SetTarget(s.settg)
...@@ -45,7 +44,7 @@ function s.rccfilter(c) ...@@ -45,7 +44,7 @@ function s.rccfilter(c)
return c:IsFaceupEx() and c:IsSetCard(0x1b9) return c:IsFaceupEx() and c:IsSetCard(0x1b9)
end end
function s.setcon(e,tp,eg,ep,ev,re,r,rp) function s.setcon(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()==tp and Duel.GetCurrentPhase()==PHASE_STANDBY return Duel.GetTurnPlayer()==tp
and Duel.IsExistingMatchingCard(s.rccfilter,tp,LOCATION_MZONE,0,1,nil) and Duel.IsExistingMatchingCard(s.rccfilter,tp,LOCATION_MZONE,0,1,nil)
end end
function s.settg(e,tp,eg,ep,ev,re,r,rp,chk) function s.settg(e,tp,eg,ep,ev,re,r,rp,chk)
......
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