Commit 74bcd822 authored by VanillaSalt's avatar VanillaSalt

Merge pull request #942 from sidschingis/patch

fix
parents 8cd1dc7a 1b4fe67e
...@@ -22,6 +22,7 @@ end ...@@ -22,6 +22,7 @@ end
function c15854426.cfilter(c,tp) function c15854426.cfilter(c,tp)
return c:GetPreviousControler()==tp and c:IsPreviousLocation(LOCATION_MZONE) return c:GetPreviousControler()==tp and c:IsPreviousLocation(LOCATION_MZONE)
and bit.band(c:GetPreviousAttributeOnField(),ATTRIBUTE_WIND)~=0 and bit.band(c:GetPreviousAttributeOnField(),ATTRIBUTE_WIND)~=0
and c:IsPreviousPosition(POS_FACEUP)
end end
function c15854426.condition(e,tp,eg,ep,ev,re,r,rp) function c15854426.condition(e,tp,eg,ep,ev,re,r,rp)
return eg:IsExists(c15854426.cfilter,1,nil,tp) return eg:IsExists(c15854426.cfilter,1,nil,tp)
......
...@@ -4,7 +4,7 @@ function c51099515.initial_effect(c) ...@@ -4,7 +4,7 @@ function c51099515.initial_effect(c)
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN) e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(c51099515.cost) e1:SetCost(c51099515.cost)
e1:SetTarget(c51099515.target) e1:SetTarget(c51099515.target)
......
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