Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xiaoye
ygopro-222DIY-cards
Commits
191464fe
You need to sign in or sign up before continuing.
Commit
191464fe
authored
Jun 25, 2021
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
12
parent
2efe66cd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
9 deletions
+23
-9
expansions/script/c30700004.lua
expansions/script/c30700004.lua
+3
-3
expansions/script/c31300001.lua
expansions/script/c31300001.lua
+3
-3
expansions/script/c31300007.lua
expansions/script/c31300007.lua
+1
-1
expansions/script/c37900014.lua
expansions/script/c37900014.lua
+15
-1
expansions/script/c37900017.lua
expansions/script/c37900017.lua
+1
-1
No files found.
expansions/script/c30700004.lua
View file @
191464fe
...
...
@@ -142,14 +142,14 @@ function cm.filter(c)
return
c
:
IsType
(
TYPE_EFFECT
)
and
c
:
IsAbleToRemove
()
end
function
cm
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
MZONE
,
0
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
MZONE
,
0
,
nil
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
ONFIELD
,
0
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
ONFIELD
,
0
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
1
,
0
,
0
)
end
function
cm
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
MZONE
,
0
,
1
,
2
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsDestructable
,
tp
,
LOCATION_HAND
+
LOCATION_
ONFIELD
,
0
,
1
,
2
,
nil
)
local
ss
=
0
if
g
:
GetCount
()
>
0
then
ss
=
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
end
if
ss
>
0
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
ss
,
nil
)
then
...
...
expansions/script/c31300001.lua
View file @
191464fe
...
...
@@ -2,7 +2,7 @@
if
not
pcall
(
function
()
require
(
"expansions/script/c31300100"
)
end
)
then
require
(
"script/c31300100"
)
end
local
m
,
cm
=
rscf
.
DefineCard
(
31300001
)
function
cm
.
initial_effect
(
c
)
local
e2
=
rsef
.
QO
(
c
,
EVENT_
CHAINING
,
"sp"
,{
1
,
m
+
100
},
"sp"
,
nil
,
local
e2
=
rsef
.
QO
(
c
,
EVENT_
FREE_CHAIN
,
"sp"
,{
1
,
m
+
100
},
"sp"
,
nil
,
LOCATION_GRAVE
,
cm
.
spscon
,
nil
,
rsop
.
target
(
rscf
.
spfilter2
(),
"sp"
),
cm
.
spsop
)
--special summon
...
...
@@ -50,9 +50,9 @@ function cm.spfilter2(c,e,tp,m,f,gc,chkf)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_FUSION
,
tp
,
false
,
false
)
and
c
:
CheckFusionMaterial
(
m
,
gc
,
chkf
)
end
function
cm
.
getmat2
(
mg1
,
e
)
local
mg
=
mg1
:
Clone
()
local
mg
=
mg1
:
Clone
()
local
chainid
=
not
e
and
Duel
.
GetCurrentChain
()
or
Duel
.
GetCurrentChain
()
-
1
if
chainid
<=
0
then
return
Group
.
CreateGroup
()
end
if
chainid
<=
0
then
return
mg
end
local
re
,
loc
=
Duel
.
GetChainInfo
(
chainid
,
CHAININFO_TRIGGERING_EFFECT
,
CHAININFO_TRIGGERING_LOCATION
)
local
rc
=
re
:
GetHandler
()
if
loc
==
LOCATION_HAND
and
rc
:
IsRelateToEffect
(
re
)
and
rc
:
IsCanBeFusionMaterial
()
and
(
not
e
or
not
rc
:
IsImmuneToEffect
(
e
))
then
...
...
expansions/script/c31300007.lua
View file @
191464fe
...
...
@@ -13,7 +13,7 @@ function cm.initial_effect(c)
local
e3
,
e5
=
rsef
.
SV_Card
(
c
,
"atk+,def+"
,
cm
.
aval
,
"sr"
,
LOCATION_MZONE
)
local
e4
=
rsef
.
QO
(
c
,
nil
,
"res"
,{
1
,
m
},
"res,sp"
,
"tg"
,
LOCATION_GRAVE
,
cm
.
spcon
,
nil
,
rstg
.
target
({
cm
.
resfilter2
,
"res"
,
LOCATION_MZONE
,
LOCATION_MZONE
},{
rscf
.
spfilter
,
"sp"
}),
rstg
.
target
({
cm
.
resfilter2
,
"res"
,
LOCATION_MZONE
,
LOCATION_MZONE
},{
"opc"
,
rscf
.
spfilter
,
"sp"
}),
cm
.
spop
)
end
function
cm
.
ffilter
(
c
,
fc
,
sub
,
mg
,
sg
)
...
...
expansions/script/c37900014.lua
View file @
191464fe
...
...
@@ -17,7 +17,21 @@ function cm.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_AVOID_BATTLE_DAMAGE
)
e2
:
SetValue
(
1
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
--def Up
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e4
:
SetCategory
(
CATEGORY_DEFCHANGE
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_F
)
e4
:
SetCode
(
EVENT_BATTLE_DESTROYING
)
e4
:
SetCondition
(
aux
.
bdocon
)
e4
:
SetOperation
(
cm
.
defop
)
c
:
RegisterEffect
(
e4
)
end
function
cm
.
defop
(
e
,
tp
)
local
c
=
rscf
.
GetFaceUpSelf
(
e
)
if
not
c
then
return
end
local
e1
=
rscf
.
QuickBuff
(
c
,
"def+"
,
1000
)
end
function
cm
.
ovfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCode
(
37900092
)
...
...
expansions/script/c37900017.lua
View file @
191464fe
...
...
@@ -19,7 +19,7 @@ function cm.initial_effect(c)
end
function
cm
.
atkop
(
e
,
tp
)
local
e1
=
rsef
.
FV_Card
({
e
:
GetHandler
(),
tp
},
"def+"
,
500
,
aux
.
TargetBoolFunction
(
Card
.
IsSetCard
,
0x389
),{
1
,
0
})
aux
.
TargetBoolFunction
(
Card
.
IsSetCard
,
0x389
),{
LOCATION_MZONE
,
0
})
end
function
cm
.
ovfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCode
(
37900094
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment