Commit 3111787a authored by POLYMER's avatar POLYMER

fix

parent b39a32db
......@@ -7,6 +7,7 @@ function c28327394.initial_effect(c)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,28327394+EFFECT_COUNT_CODE_OATH)
e1:SetHintTiming(0,TIMING_END_PHASE)
e1:SetCondition(c28327394.decon)
e1:SetCost(c28327394.decost)
e1:SetTarget(c28327394.detg)
......
......@@ -46,7 +46,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
e1:SetCode(EFFECT_LEAVE_FIELD_REDIRECT)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetReset(RESET_EVENT+RESETS_REDIRECT)
e1:SetValue(LOCATION_DECK)
e1:SetValue(LOCATION_DECKSHF)
Duel.GetOperatedGroup():ForEach(Card.RegisterEffect,e1)
end
end
......
......@@ -24,7 +24,7 @@ function c98920723.initial_effect(c)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_CHANGE_RACE)
e2:SetRange(LOCATION_GRAVE)
e2:SetCondition(c98920723.con)
e2:SetValue(RACE_DRAGON)
c:RegisterEffect(e2)
--negate
......@@ -65,6 +65,9 @@ function c98920723.initial_effect(c)
e6:SetLabelObject(e4)
c:RegisterEffect(e6)
end
function c98920723.con(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsLocation(LOCATION_GRAVE)
end
function c98920723.eftg(e,c)
return c:IsType(TYPE_MONSTER) and c:IsSetCard(0x4093) and c:GetEquipGroup():IsContains(e:GetHandler())
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