Commit 6babe5f8 authored by Amiya's avatar Amiya

修复

parent 50306176
......@@ -19,7 +19,7 @@ function s.initial_effect(c)
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_FIELD)
e3:SetCode(EFFECT_INDESTRUCTABLE_BATTLE)
e3:SetRange(LOCATION_SZONE)
e3:SetRange(LOCATION_MZONE)
e3:SetTargetRange(LOCATION_MZONE,0)
e3:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x29))
e3:SetCondition(s.indcon)
......@@ -53,7 +53,7 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
end
end
function s.indcon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():GetEquipTarget()
return e:GetHandler():GetEquipCount()>0
end
function s.bfilter(c)
return c:IsFaceup() and c:IsSetCard(0x29) and (c:GetOriginalType()&TYPE_MONSTER)~=0
......
......@@ -24,7 +24,7 @@ function s.initial_effect(c)
--spsummon
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,1))
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_GRAVE_SPSUMMON)
e3:SetType(EFFECT_TYPE_IGNITION)
e3:SetRange(LOCATION_SZONE)
e3:SetCountLimit(1,id+o)
......
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