Commit 42faed84 authored by 聖園ミカ's avatar 聖園ミカ 🐟

7

parent 5aca5fe2
No preview for this file type
...@@ -52,7 +52,7 @@ end ...@@ -52,7 +52,7 @@ end
function s.specialsum(c) function s.specialsum(c)
--special summon --special summon
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(56308388,0)) e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION) e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND) e1:SetRange(LOCATION_HAND)
......
...@@ -12,7 +12,7 @@ end ...@@ -12,7 +12,7 @@ end
function s.xmat(c) function s.xmat(c)
--destroy --destroy
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(90448279,2)) e3:SetDescription(aux.Stringid(id,1))
e3:SetType(EFFECT_TYPE_QUICK_O) e3:SetType(EFFECT_TYPE_QUICK_O)
e3:SetCode(EVENT_FREE_CHAIN) e3:SetCode(EVENT_FREE_CHAIN)
e3:SetRange(LOCATION_SZONE) e3:SetRange(LOCATION_SZONE)
...@@ -56,6 +56,7 @@ end ...@@ -56,6 +56,7 @@ end
function s.again(c) function s.again(c)
-- --
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(id,0))
e2:SetType(EFFECT_TYPE_IGNITION) e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetCategory(CATEGORY_DRAW) e2:SetCategory(CATEGORY_DRAW)
e2:SetRange(LOCATION_SZONE) e2:SetRange(LOCATION_SZONE)
......
...@@ -10,6 +10,7 @@ end ...@@ -10,6 +10,7 @@ end
function s.remove(c) function s.remove(c)
--to hand --to hand
local e5=Effect.CreateEffect(c) local e5=Effect.CreateEffect(c)
e5:SetDescription(aux.Stringid(id,1))
e5:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e5:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e5:SetType(EFFECT_TYPE_QUICK_O) e5:SetType(EFFECT_TYPE_QUICK_O)
e5:SetCode(EVENT_FREE_CHAIN) e5:SetCode(EVENT_FREE_CHAIN)
...@@ -83,9 +84,9 @@ function s.ovop(e,tp,eg,ep,ev,re,r,rp) ...@@ -83,9 +84,9 @@ function s.ovop(e,tp,eg,ep,ev,re,r,rp)
local sc2=Duel.SelectMatchingCard(tp,s.xyzfilter,tp,LOCATION_MZONE,0,1,1,g):GetFirst() local sc2=Duel.SelectMatchingCard(tp,s.xyzfilter,tp,LOCATION_MZONE,0,1,1,g):GetFirst()
for gc in aux.Next(g) do for gc in aux.Next(g) do
local og2=gc:GetOverlayGroup() local og2=gc:GetOverlayGroup()
if og2:GetCount()>0 then bg:Merge(og2) end if og2:GetCount()>0 then Duel.SendtoGrave(og2,REASON_RULE) end
tc:CancelToGrave()
end end
Duel.SendtoGrave(bg,REASON_RULE)
Duel.Overlay(sc2,tc) Duel.Overlay(sc2,tc)
end end
end end
...@@ -98,6 +99,7 @@ end ...@@ -98,6 +99,7 @@ end
function s.search(c) function s.search(c)
--to hand --to hand
local e5=Effect.CreateEffect(c) local e5=Effect.CreateEffect(c)
e5:SetDescription(aux.Stringid(id,0))
e5:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e5:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e5:SetType(EFFECT_TYPE_IGNITION) e5:SetType(EFFECT_TYPE_IGNITION)
e5:SetRange(LOCATION_MZONE) e5:SetRange(LOCATION_MZONE)
......
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