Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-rush-duel
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
Vee4
ygopro-rush-duel
Commits
9ae306cc
You need to sign in or sign up before continuing.
Commit
9ae306cc
authored
Jul 22, 2023
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2023/7/22 新增:接合科技三角裂口
parent
86d88a26
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
5 deletions
+55
-5
RD Patch.cdb
RD Patch.cdb
+0
-0
script/c120235053.lua
script/c120235053.lua
+2
-5
script/c120249047.lua
script/c120249047.lua
+53
-0
No files found.
RD Patch.cdb
View file @
9ae306cc
No preview for this file type
script/c120235053.lua
View file @
9ae306cc
...
...
@@ -17,9 +17,6 @@ end
function
cm
.
costfilter
(
c
,
e
,
tp
)
return
not
c
:
IsPublic
()
and
c
:
IsRace
(
RACE_WARRIOR
+
RACE_FAIRY
)
end
function
cm
.
thfilter
(
c
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
end
cm
.
cost
=
RD
.
CostShowHand
(
cm
.
costfilter
,
2
,
2
)
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
...
...
@@ -46,8 +43,8 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
end
local
ct
=
g
:
GetCount
()
if
ct
>
0
then
Duel
.
SortDecktop
(
tp
,
t
p
,
ct
)
RD
.
SendDeckTopToBottom
(
t
p
,
ct
)
Duel
.
SortDecktop
(
tp
,
p
,
ct
)
RD
.
SendDeckTopToBottom
(
p
,
ct
)
end
if
Duel
.
GetFlagEffect
(
tp
,
m
)
~=
0
then
return
end
RD
.
CreateHintEffect
(
e
,
aux
.
Stringid
(
m
,
1
),
tp
,
1
,
0
,
RESET_PHASE
+
PHASE_END
)
...
...
script/c120249047.lua
0 → 100644
View file @
9ae306cc
local
m
=
120249047
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"接合科技三角裂口"
function
cm
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_SEARCH
+
CATEGORY_TOHAND
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetCost
(
cm
.
cost
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetOperation
(
cm
.
activate
)
c
:
RegisterEffect
(
e1
)
end
--Activate
function
cm
.
costfilter
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_EARTH
)
and
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
IsAbleToGraveAsCost
()
end
cm
.
cost
=
RD
.
CostSendHandToGrave
(
cm
.
costfilter
,
1
,
1
)
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
if
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_DECK
,
0
)
<
3
then
return
false
end
local
g
=
Duel
.
GetDecktopGroup
(
tp
,
3
)
return
g
:
IsExists
(
Card
.
IsAbleToHand
,
1
,
nil
)
end
Duel
.
SetTargetPlayer
(
tp
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
0
,
LOCATION_DECK
)
end
function
cm
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
p
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PLAYER
)
if
Duel
.
GetFieldGroupCount
(
p
,
LOCATION_DECK
,
0
)
<
3
then
return
end
local
sg
,
g
=
RD
.
RevealDeckTopAndSelect
(
p
,
3
,
HINTMSG_ATOHAND
,
aux
.
TRUE
,
1
,
1
)
local
tc
=
sg
:
GetFirst
()
if
tc
then
Duel
.
DisableShuffleCheck
()
if
tc
:
IsAbleToHand
()
then
RD
.
SendToHandAndExists
(
sg
,
1
-
p
)
Duel
.
ShuffleHand
(
p
)
else
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
end
end
local
ct
=
g
:
GetCount
()
if
ct
>
0
then
if
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
m
,
1
),
aux
.
Stringid
(
m
,
2
))
==
0
then
Duel
.
SortDecktop
(
tp
,
p
,
ct
)
else
Duel
.
DisableShuffleCheck
()
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
)
end
end
end
\ No newline at end of file
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