Commit 88e3e4d3 authored by DailyShana's avatar DailyShana

fix

parent b6993613
...@@ -31,7 +31,7 @@ function c30488793.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -31,7 +31,7 @@ function c30488793.activate(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS):Filter(Card.IsRelateToEffect,nil,e) local g=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS):Filter(Card.IsRelateToEffect,nil,e)
if g:GetCount()<2 then return end if g:GetCount()<2 then return end
local c1=g:GetFirst() local c1=g:GetFirst()
local c2=g:GetNest() local c2=g:GetNext()
if c1:IsFaceup() and c2:IsFaceup() then if c1:IsFaceup() and c2:IsFaceup() then
local p=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER) local p=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER)
local dam=math.abs(c1:GetAttack()-c2:GetAttack()) local dam=math.abs(c1:GetAttack()-c2:GetAttack())
......
...@@ -34,8 +34,7 @@ function c64034255.spop(e,tp,eg,ep,ev,re,r,rp,c) ...@@ -34,8 +34,7 @@ function c64034255.spop(e,tp,eg,ep,ev,re,r,rp,c)
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetReset(RESET_EVENT+0xff0000)
e1:SetReset(RESET_EVENT+0xfe0000)
e1:SetValue(500) e1:SetValue(500)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
......
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