Commit d39d0bc9 authored by wind2009's avatar wind2009 Committed by GitHub

Fix (#1394)

* Fix Chevalier de Fleur

spell/trap will be negated even if this card leave field.

* Add hint timing for Renewal of the World
parent 5950d230
......@@ -33,8 +33,6 @@ function c45037489.distg(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function c45037489.disop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if not c:IsFaceup() or not c:IsRelateToEffect(e) then return end
if Duel.NegateActivation(ev) and re:GetHandler():IsRelateToEffect(re) then
Duel.Destroy(eg,REASON_EFFECT)
end
......
......@@ -5,6 +5,7 @@ function c81306186.initial_effect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCountLimit(1,81306186)
e1:SetTarget(c81306186.rmtg)
e1:SetOperation(c81306186.rmop)
......@@ -13,6 +14,7 @@ function c81306186.initial_effect(c)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_FREE_CHAIN)
e2:SetHintTiming(0,TIMING_END_PHASE)
e2:SetRange(LOCATION_SZONE)
e2:SetCountLimit(1,81306186)
e2:SetLabelObject(e1)
......
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