Commit b108bbe6 authored by Mr.Tan's avatar Mr.Tan

Fix 原石竜アナザー・ベリル

parent 783c3340
...@@ -22,17 +22,17 @@ function s.initial_effect(c) ...@@ -22,17 +22,17 @@ function s.initial_effect(c)
e2:SetOperation(s.tgop) e2:SetOperation(s.tgop)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--to hand --to hand
local e2=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,2)) e3:SetDescription(aux.Stringid(id,2))
e2:SetCategory(CATEGORY_TOHAND) e3:SetCategory(CATEGORY_TOHAND)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e2:SetCode(EVENT_PHASE+PHASE_STANDBY) e3:SetCode(EVENT_PHASE+PHASE_STANDBY)
e2:SetRange(LOCATION_GRAVE) e3:SetRange(LOCATION_GRAVE)
e2:SetCountLimit(1,id+o) e3:SetCountLimit(1,id+o)
e2:SetCondition(s.thcon) e3:SetCondition(s.thcon)
e2:SetTarget(s.thtg) e3:SetTarget(s.thtg)
e2:SetOperation(s.thop) e3:SetOperation(s.thop)
c:RegisterEffect(e2) c:RegisterEffect(e3)
end end
function s.setfilter(c) function s.setfilter(c)
return c:IsSetCard(0x1b9) and c:IsType(TYPE_SPELL+TYPE_TRAP) and c:IsSSetable() return c:IsSetCard(0x1b9) and c:IsType(TYPE_SPELL+TYPE_TRAP) and c:IsSSetable()
......
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