Added Universe Union Dragon

This commit is contained in:
2021-12-01 19:25:02 +01:00
parent ace2676dc1
commit 3e3345b00a
8 changed files with 31 additions and 3 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 KiB

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,23 @@
--Universe Seed --Universe Light God
local s,id=GetID() local s,id=GetID()
function s.initial_effect(c) function s.initial_effect(c)
--pendulum summon --pendulum summon
Pendulum.AddProcedure(c) Pendulum.AddProcedure(c)
--cannot be target | copied from c77797992
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
e2:SetRange(LOCATION_MZONE)
e2:SetTargetRange(LOCATION_MZONE,0)
e2:SetTarget(s.targetd)
e2:SetValue(1)
c:RegisterEffect(e2)
local e3=e2:Clone()
e3:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
e3:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e3:SetValue(1)
c:RegisterEffect(e3)
end
function s.targetd(e,c)
return c:IsFaceup() and c:IsSetCard(0x25e)
end end

View File

@@ -1,4 +1,4 @@
--Universe Seed --Universe Dark God
local s,id=GetID() local s,id=GetID()
function s.initial_effect(c) function s.initial_effect(c)
--pendulum summon --pendulum summon

11
lua/c561586060.lua Normal file
View File

@@ -0,0 +1,11 @@
--Universe Union Dragon
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
c:EnableReviveLimit()
Pendulum.AddProcedure(c,false)
Fusion.AddProcMixN(c,true,true,aux.FilterBoolFunctionEx(Card.IsSetCard,0x25e),2)
end
--[[function s.ffilter(c,fc,sumtype,tp)
return c:IsType(0x25e)
end]]--