-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc37564108.lua
39 lines (39 loc) · 1.28 KB
/
c37564108.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
--都很快乐
local m=37564108
local cm=_G["c"..m]
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,37564108)
--e1:SetCondition(c37564108.descon)
e1:SetTarget(c37564108.target)
e1:SetOperation(c37564108.activate)
c:RegisterEffect(e1)
end
function c37564108.filter(c)
return c:IsFaceup() and c:IsSetCard(0x772)
end
function c37564108.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_MZONE) and chkc:IsControler(tp) and c37564108.filter(chkc) end
if chk==0 then return Duel.IsExistingTarget(c37564108.filter,tp,LOCATION_MZONE,0,1,nil) end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_FACEUP)
Duel.SelectTarget(tp,c37564108.filter,tp,LOCATION_MZONE,0,1,1,nil)
end
function c37564108.activate(e,tp,eg,ep,ev,re,r,rp)
local tc=Duel.GetFirstTarget()
if tc:IsRelateToEffect(e) then
local e2=Effect.CreateEffect(e:GetHandler())
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e2:SetValue(1)
e2:SetReset(RESET_EVENT+0x1fe0000+RESET_PHASE+PHASE_END)
tc:RegisterEffect(e2)
Duel.Draw(tp,1,REASON_EFFECT)
end
end
function c37564108.descon(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()~=tp
end