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
Soulgamer
ygopro-222DIY-cards
Commits
3fc023aa
Commit
3fc023aa
authored
Jun 09, 2019
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
62a06aa2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
10 deletions
+26
-10
expansions/script/c10199990.lua
expansions/script/c10199990.lua
+24
-8
expansions/script/c17061201.lua
expansions/script/c17061201.lua
+1
-1
expansions/script/c65010013.lua
expansions/script/c65010013.lua
+1
-1
No files found.
expansions/script/c10199990.lua
View file @
3fc023aa
...
...
@@ -1383,13 +1383,19 @@ function rstg.disnegtg(disorneg,waystring)
end
end
function
rstg
.
distg
(
waystring
)
rstg
.
disnegtg
(
"dis"
,
waystring
)
return
function
(
...
)
return
rstg
.
disnegtg
(
"dis"
,
waystring
)(
...
)
end
end
function
rstg
.
negtg
(
waystring
)
rstg
.
disnegtg
(
"neg"
,
waystring
)
return
function
(
...
)
return
rstg
.
disnegtg
(
"neg"
,
waystring
)(
...
)
end
end
function
rstg
.
negsumtg
(
waystring
)
rstg
.
disnegtg
(
"sum"
,
waystring
)
return
function
(
...
)
return
rstg
.
disnegtg
(
"sum"
,
waystring
)(
...
)
end
end
--Target function: Get target attributes
function
rstg
.
GetTargetAttribute
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
targetlist
)
...
...
@@ -2071,10 +2077,14 @@ function rscon.disnegcon(disorneg,filterfun,playerfun)
end
end
function
rscon
.
discon
(
filterfun
,
playerfun
)
rscon
.
disnegcon
(
"dis"
,
filterfun
,
playerfun
)
return
function
(
...
)
return
rscon
.
disnegcon
(
"dis"
,
filterfun
,
playerfun
)(
...
)
end
end
function
rscon
.
negcon
(
filterfun
,
playerfun
)
rscon
.
disnegcon
(
"neg"
,
filterfun
,
playerfun
)
return
function
(
...
)
return
rscon
.
disnegcon
(
"neg"
,
filterfun
,
playerfun
)(
...
)
end
end
--Condition: Is exisit matching card
function
rscon
.
excardfilter
(
filter
,
varlist
,
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
@@ -2163,13 +2173,19 @@ function rsop.disnegop(disorneg,waystring)
end
end
function
rsop
.
disop
(
waystring
)
return
rsop
.
disnegop
(
"dis"
,
waystring
)
return
function
(
...
)
return
rsop
.
disnegop
(
"dis"
,
waystring
)(
...
)
end
end
function
rsop
.
negop
(
waystring
)
return
rsop
.
disnegop
(
"neg"
,
waystring
)
return
function
(
...
)
return
rsop
.
disnegop
(
"neg"
,
waystring
)(
...
)
end
end
function
rsop
.
negsumop
(
waystring
)
return
rsop
.
disnegop
(
"sum"
,
waystring
)
return
function
(
...
)
return
rsop
.
disnegop
(
"sum"
,
waystring
)(
...
)
end
end
--Operation: Equip
function
rsop
.
eqop
(
e
,
eqc
,
eqtc
,
pos
,
opside
)
...
...
expansions/script/c17061201.lua
View file @
3fc023aa
...
...
@@ -27,7 +27,7 @@ function cm.initial_effect(c)
e3
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_SINGLE
)
e3
:
SetCondition
(
cm
.
tdcon
)
e3
:
SetTarget
(
cm
.
tdtg
)
e3
:
SetOperation
(
cm
.
tdop
)
...
...
expansions/script/c65010013.lua
View file @
3fc023aa
--窥屏02
--窥屏02
1
if
not
pcall
(
function
()
require
(
"expansions/script/c10199990"
)
end
)
then
require
(
"script/c10199990"
)
end
local
m
=
65010013
local
cm
=
_G
[
"c"
..
m
]
...
...
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