New card pictures, new IDs, updated effects

This commit is contained in:
2021-12-29 14:02:05 +01:00
parent 7298ca6ee7
commit 1637f2a9b9
56 changed files with 17 additions and 5 deletions

16
lua/c56158659.lua Normal file
View File

@@ -0,0 +1,16 @@
--Universe Dark God
local s,id=GetID()
function s.initial_effect(c)
--pendulum summon
Pendulum.AddProcedure(c)
--fusion effect
local params = {nil,Fusion.OnFieldMat}
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_PZONE)
e2:SetCountLimit(1)
e2:SetTarget(Fusion.SummonEffTG(table.unpack(params)))
e2:SetOperation(Fusion.SummonEffOP(table.unpack(params)))
c:RegisterEffect(e2)
end