Commit f119ab46 authored by Tachibana's avatar Tachibana

12

parent 71b2a065
Pipeline #3789 passed with stages
in 43 minutes and 29 seconds
No preview for this file type
...@@ -67,7 +67,7 @@ function c71400014.target2(e,tp,eg,ep,ev,re,r,rp,chk) ...@@ -67,7 +67,7 @@ function c71400014.target2(e,tp,eg,ep,ev,re,r,rp,chk)
and Duel.IsExistingMatchingCard(c71400014.filter2,tp,LOCATION_HAND,0,1,nil,e,tp) end and Duel.IsExistingMatchingCard(c71400014.filter2,tp,LOCATION_HAND,0,1,nil,e,tp) end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,0,tp,LOCATION_HAND) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,0,tp,LOCATION_HAND)
end end
function c71400014.cost2(e,tp,eg,ep,ev,re,r,rp) function c71400014.cost2(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.CheckLPCost(tp,1000) end if chk==0 then return Duel.CheckLPCost(tp,1000) end
Duel.PayLPCost(tp,1000) Duel.PayLPCost(tp,1000)
end end
......
...@@ -4,9 +4,6 @@ function c71400016.initial_effect(c) ...@@ -4,9 +4,6 @@ function c71400016.initial_effect(c)
--Activate --Activate
--See AddYumeFieldGlobal --See AddYumeFieldGlobal
--summon --summon
--self to deck & activate field
yume.AddYumeFieldGlobal(c,71400016,1)
--summon
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(71400016,0)) e1:SetDescription(aux.Stringid(71400016,0))
e1:SetCategory(CATEGORY_SUMMON) e1:SetCategory(CATEGORY_SUMMON)
...@@ -24,13 +21,15 @@ function c71400016.initial_effect(c) ...@@ -24,13 +21,15 @@ function c71400016.initial_effect(c)
e2:SetCategory(CATEGORY_DRAW) e2:SetCategory(CATEGORY_DRAW)
e2:SetDescription(aux.Stringid(71400016,1)) e2:SetDescription(aux.Stringid(71400016,1))
e2:SetCode(EVENT_PHASE+PHASE_END) e2:SetCode(EVENT_PHASE+PHASE_END)
e2:SetRange(LOCATION_MZONE) e2:SetRange(LOCATION_FZONE)
e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e2:SetCountLimit(1) e2:SetCountLimit(1)
e2:SetCondition(c71400016.con2) e2:SetCondition(c71400016.con2)
e2:SetTarget(c71400016.tg2) e2:SetTarget(c71400016.tg2)
e2:SetOperation(c71400016.op2) e2:SetOperation(c71400016.op2)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--self to deck & activate field
yume.AddYumeFieldGlobal(c,71400016,1)
end end
function c71400016.con1(e,tp,eg,ep,ev,re,r,rp) function c71400016.con1(e,tp,eg,ep,ev,re,r,rp)
local ph=Duel.GetCurrentPhase() local ph=Duel.GetCurrentPhase()
......
...@@ -18,7 +18,7 @@ function c71400019.initial_effect(c) ...@@ -18,7 +18,7 @@ function c71400019.initial_effect(c)
e2:SetCategory(CATEGORY_DRAW+CATEGORY_DAMAGE) e2:SetCategory(CATEGORY_DRAW+CATEGORY_DAMAGE)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e2:SetCode(EFFECT_TYPE_IGNITION) e2:SetCode(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1,71500019) e2:SetCountLimit(1,71500019)
e2:SetRange(LOCATION_GRAVE) e2:SetRange(LOCATION_GRAVE)
e2:SetCost(c71400019.cost2) e2:SetCost(c71400019.cost2)
e2:SetTarget(c71400019.tg2) e2:SetTarget(c71400019.tg2)
......
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