Commit 8eb9f975 authored by nanahira's avatar nanahira

Merge branch 'master' of github.com:alstroemeria-silentlove/ygopro-222DIY-cards

parents cd8c0b3d 7b0201d1
...@@ -14,13 +14,13 @@ function c12037020.initial_effect(c) ...@@ -14,13 +14,13 @@ function c12037020.initial_effect(c)
end end
-- --
function c12037020.tfilter1_1(c,e,tp) function c12037020.tfilter1_1(c,e,tp)
local rk=c:GetRank() return c:IsType(TYPE_XYZ) and c:IsFaceup()
return rk>0 and c:IsFaceup()
and Duel.IsExistingMatchingCard(c12037020.tfilter1_2,tp,LOCATION_EXTRA,0,1,nil,e,tp,c) and Duel.IsExistingMatchingCard(c12037020.tfilter1_2,tp,LOCATION_EXTRA,0,1,nil,e,tp,c)
and aux.MustMaterialCheck(c,tp,EFFECT_MUST_BE_XMATERIAL) and aux.MustMaterialCheck(c,tp,EFFECT_MUST_BE_XMATERIAL)
end end
function c12037020.tfilter1_2(c,e,tp,mc) function c12037020.tfilter1_2(c,e,tp,mc)
return (c:IsRace(RACE_WINDBEAST) or c:IsSetCard(0x2fb5)) return (c:IsRace(RACE_WINDBEAST) or c:IsSetCard(0x2fb5))
and c:IsType(TYPE_XYZ)
and mc:IsCanBeXyzMaterial(c) and mc:IsCanBeXyzMaterial(c)
and Duel.GetLocationCountFromEx(tp,tp,mc,c)>0 and Duel.GetLocationCountFromEx(tp,tp,mc,c)>0
and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_XYZ,tp,false,false) and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_XYZ,tp,false,false)
...@@ -33,6 +33,7 @@ function c12037020.tfilter1_3(c,e,tp) ...@@ -33,6 +33,7 @@ function c12037020.tfilter1_3(c,e,tp)
end end
function c12037020.tfilter1_4(c,e,tp,mc) function c12037020.tfilter1_4(c,e,tp,mc)
return c:IsSetCard(0x2fb5) return c:IsSetCard(0x2fb5)
and c:IsType(TYPE_XYZ)
and mc:IsCanBeXyzMaterial(c) and mc:IsCanBeXyzMaterial(c)
and Duel.GetLocationCountFromEx(tp,tp,mc,c)>0 and Duel.GetLocationCountFromEx(tp,tp,mc,c)>0
and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_XYZ,tp,false,false) and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_XYZ,tp,false,false)
......
...@@ -25,17 +25,18 @@ function c47530149.initial_effect(c) ...@@ -25,17 +25,18 @@ function c47530149.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
Duel.AddCustomActivityCounter(47530149,ACTIVITY_SPSUMMON,c47530149.counterfilter) Duel.AddCustomActivityCounter(47530149,ACTIVITY_SPSUMMON,c47530149.counterfilter)
--luncher --luncher
local e2=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(47530149,1)) e3:SetDescription(aux.Stringid(47530149,1))
e2:SetCategory(CATEGORY_DISABLE) e3:SetCategory(CATEGORY_DISABLE)
e2:SetType(EFFECT_TYPE_QUICK_O) e3:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_FREE_CHAIN) e3:SetCode(EVENT_FREE_CHAIN)
e2:SetRange(LOCATION_MZONE) e3:SetRange(LOCATION_MZONE)
e2:SetCondition(c47530149.discon) e3:SetCountLimit(1,47530149)
e2:SetCost(c47530149.discost) e3:SetCondition(c47530149.discon)
e2:SetTarget(c47530149.distg) e3:SetCost(c47530149.discost)
e2:SetOperation(c47530149.disop) e3:SetTarget(c47530149.distg)
c:RegisterEffect(e2) e3:SetOperation(c47530149.disop)
c:RegisterEffect(e3)
end end
function c47530149.counterfilter(c) function c47530149.counterfilter(c)
return c:IsRace(RACE_MACHINE) return c:IsRace(RACE_MACHINE)
......
...@@ -60,7 +60,7 @@ function c47530157.efop(e,tp,eg,ep,ev,re,r,rp) ...@@ -60,7 +60,7 @@ function c47530157.efop(e,tp,eg,ep,ev,re,r,rp)
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(47530157,1)) e1:SetDescription(aux.Stringid(47530157,1))
e1:SetType(EFFECT_TYPE_FIELD) e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CLIENT_HINT)
e1:SetCode(EFFECT_CANNOT_ACTIVATE) e1:SetCode(EFFECT_CANNOT_ACTIVATE)
e1:SetRange(LOCATION_MZONE) e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(0,1) e1:SetTargetRange(0,1)
...@@ -71,7 +71,7 @@ function c47530157.efop(e,tp,eg,ep,ev,re,r,rp) ...@@ -71,7 +71,7 @@ function c47530157.efop(e,tp,eg,ep,ev,re,r,rp)
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(47530157,2)) e2:SetDescription(aux.Stringid(47530157,2))
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e2:SetProperty(EFFECT_FLAG_CLIENT_HINT)
e2:SetCode(EVENT_BATTLE_DESTROYING) e2:SetCode(EVENT_BATTLE_DESTROYING)
e2:SetCondition(aux.bdocon) e2:SetCondition(aux.bdocon)
e2:SetOperation(c47530157.caop) e2:SetOperation(c47530157.caop)
......
...@@ -16,7 +16,7 @@ function cm.initial_effect(c) ...@@ -16,7 +16,7 @@ function cm.initial_effect(c)
e2:SetType(EFFECT_TYPE_FIELD) e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET) e2:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET)
e2:SetRange(LOCATION_MZONE) e2:SetRange(LOCATION_MZONE)
e2:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE) e2:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE+EFFECT_FLAG_SET_AVAILABLE)
e2:SetTargetRange(LOCATION_MZONE,0) e2:SetTargetRange(LOCATION_MZONE,0)
e2:SetValue(aux.tgoval) e2:SetValue(aux.tgoval)
c:RegisterEffect(e2) c:RegisterEffect(e2)
......
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