Commit 566ba43f authored by 未闻皂名's avatar 未闻皂名

2023/1/12 bug修复,更新翻译

parent aa55b410
Pipeline #19442 passed with stages
in 5 minutes and 14 seconds
No preview for this file type
......@@ -17,8 +17,11 @@ function cm.initial_effect(c)
c:RegisterEffect(e1)
end
--Special Summon
function cm.confilter(c)
return not c:IsRace(RACE_PSYCHO+RACE_OMEGAPSYCHO)
function cm.confilter1(c)
return c:IsRace(RACE_PSYCHO) or c:IsRace(RACE_OMEGAPSYCHO)
end
function cm.confilter2(c)
return c:IsType(TYPE_MONSTER) and not cm.confilter1(c)
end
function cm.costfilter(c,e,tp)
return c:IsAbleToGraveAsCost() and Duel.IsExistingMatchingCard(cm.spfilter,tp,LOCATION_HAND,0,1,c,e,tp)
......@@ -30,7 +33,8 @@ function cm.exfilter(c)
return c:IsCode(list[1])
end
function cm.condition(e,tp,eg,ep,ev,re,r,rp)
return not Duel.IsExistingMatchingCard(cm.confilter,tp,LOCATION_GRAVE,0,1,nil)
return Duel.IsExistingMatchingCard(cm.confilter1,tp,LOCATION_GRAVE,0,1,nil)
and not Duel.IsExistingMatchingCard(cm.confilter2,tp,LOCATION_GRAVE,0,1,nil)
end
cm.cost=RD.CostSendHandToGrave(cm.costfilter,1,1)
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
......
local m=120235006
local cm=_G["c"..m]
cm.name="接合科技马口铁棘龙"
cm.name="接合科技铁皮腕龙"
function cm.initial_effect(c)
--Position
local e1=Effect.CreateEffect(c)
......
local m=120235010
local cm=_G["c"..m]
cm.name="极奏之马赫音盗贼"
cm.name="极奏之小提琴马赫毗奥"
function cm.initial_effect(c)
--Atk Up
local e1=Effect.CreateEffect(c)
......
local m=120235049
local cm=_G["c"..m]
cm.name="喵双重超速"
cm.name="双倍美喵超速连发"
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
......
local m=120235061
local cm=_G["c"..m]
cm.name="野性防护罩 -野良镜力-"
cm.name="野性防护罩 -流浪猫力-"
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
......
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