Commit 1f9e20f8 authored by GuGu's avatar GuGu

Update c34036.lua

parent e5139424
Pipeline #32854 passed with stage
in 7 seconds
...@@ -34,13 +34,14 @@ function s.initial_effect(c) ...@@ -34,13 +34,14 @@ function s.initial_effect(c)
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE) e3:SetType(EFFECT_TYPE_SINGLE)
e3:SetCode(EFFECT_DISABLE) e3:SetCode(EFFECT_DISABLE)
e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e3:SetCondition(s.incon) e3:SetCondition(s.incon)
c:RegisterEffect(e3) c:RegisterEffect(e3)
end end
-- ①效果适用对象:0x830字段卡 -- ①效果适用对象:0x830字段卡
function s.protg(e,c) function s.protg(e,c)
return c:IsSetCard(0x830) and c:IsLocation(LOCATION_ONFIELD) return c:IsSetCard(0x830) and c:IsLocation(LOCATION_ONFIELD) and c:IsFaceup()
end end
function s.ctcon(e,tp,eg,ep,ev,re,r,rp) function s.ctcon(e,tp,eg,ep,ev,re,r,rp)
......
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