Commit 5227e9bb authored by wind2009's avatar wind2009

Merge branch 'patch-6' into 'master'

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

See merge request mycard/pre-release-database-cdb!141
parents 783c3340 b108bbe6
Pipeline #30400 failed with stages
in 2 minutes and 16 seconds
...@@ -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