Commit 09d422d1 authored by mercury233's avatar mercury233

fix

parent 60083abb
...@@ -22,7 +22,7 @@ function c101006073.initial_effect(c) ...@@ -22,7 +22,7 @@ function c101006073.initial_effect(c)
e3:SetCode(EVENT_SUMMON_SUCCESS) e3:SetCode(EVENT_SUMMON_SUCCESS)
e3:SetRange(LOCATION_SZONE) e3:SetRange(LOCATION_SZONE)
e3:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY) e3:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY)
e3:SetCountLimit(1) e3:SetCountLimit(1,EFFECT_COUNT_CODE_SINGLE)
e3:SetCondition(c101006073.descon) e3:SetCondition(c101006073.descon)
e3:SetTarget(c101006073.destg) e3:SetTarget(c101006073.destg)
e3:SetOperation(c101006073.desop) e3:SetOperation(c101006073.desop)
...@@ -37,7 +37,7 @@ function c101006073.efilter(e,ct) ...@@ -37,7 +37,7 @@ function c101006073.efilter(e,ct)
return p==tp and te:IsActiveType(TYPE_MONSTER) and te:GetHandler():IsRace(RACE_THUNDER) return p==tp and te:IsActiveType(TYPE_MONSTER) and te:GetHandler():IsRace(RACE_THUNDER)
end end
function c101006073.cfilter(c,tp) function c101006073.cfilter(c,tp)
return c:IsFaceup() and c:IsRace(RACE_THUNDER) and c:IsControler(tp) return c:IsFaceup() and c:IsSetCard(0x222) and c:IsControler(tp)
end end
function c101006073.descon(e,tp,eg,ep,ev,re,r,rp) function c101006073.descon(e,tp,eg,ep,ev,re,r,rp)
return eg:IsExists(c101006073.cfilter,1,nil,tp) return eg:IsExists(c101006073.cfilter,1,nil,tp)
......
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