Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
YGOPRO-520DIY
ygopro
Commits
35b23b32
Commit
35b23b32
authored
Mar 21, 2014
by
VanillaSalt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #725 from salix5/patch
Patch
parents
145062d8
f6592788
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
11 deletions
+21
-11
ocgcore/processor.cpp
ocgcore/processor.cpp
+1
-1
script/c74845897.lua
script/c74845897.lua
+6
-4
script/c83054225.lua
script/c83054225.lua
+14
-6
No files found.
ocgcore/processor.cpp
View file @
35b23b32
...
@@ -3908,7 +3908,7 @@ int32 field::process_turn(uint16 step, uint8 turn_player) {
...
@@ -3908,7 +3908,7 @@ int32 field::process_turn(uint16 step, uint8 turn_player) {
}
}
case
2
:
{
case
2
:
{
// Draw, new ruling
// Draw, new ruling
if
(
!
(
core
.
duel_options
&
DUEL_OBSOLETE_RULING
)
||
(
infos
.
turn_id
>
1
))
{
if
((
core
.
duel_options
&
DUEL_OBSOLETE_RULING
)
||
(
infos
.
turn_id
>
1
))
{
int32
count
=
get_draw_count
(
infos
.
turn_player
);
int32
count
=
get_draw_count
(
infos
.
turn_player
);
if
(
count
>
0
)
{
if
(
count
>
0
)
{
draw
(
0
,
REASON_RULE
,
turn_player
,
turn_player
,
count
);
draw
(
0
,
REASON_RULE
,
turn_player
,
turn_player
,
count
);
...
...
script/c74845897.lua
View file @
35b23b32
...
@@ -23,10 +23,11 @@ function c74845897.op(e,tp,eg,ep,ev,re,r,rp)
...
@@ -23,10 +23,11 @@ function c74845897.op(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c74845897
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
ft
,
ft
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c74845897
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
ft
,
ft
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
local
fid
=
e
:
GetHandler
():
GetFieldID
()
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
while
tc
do
while
tc
do
Duel
.
SpecialSummonStep
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonStep
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
tc
:
RegisterFlagEffect
(
74845897
,
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
,
0
,
1
)
tc
:
RegisterFlagEffect
(
74845897
,
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
,
0
,
1
,
fid
)
tc
=
g
:
GetNext
()
tc
=
g
:
GetNext
()
end
end
Duel
.
SpecialSummonComplete
()
Duel
.
SpecialSummonComplete
()
...
@@ -36,17 +37,18 @@ function c74845897.op(e,tp,eg,ep,ev,re,r,rp)
...
@@ -36,17 +37,18 @@ function c74845897.op(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCountLimit
(
1
)
e1
:
SetLabel
(
fid
)
e1
:
SetLabelObject
(
g
)
e1
:
SetLabelObject
(
g
)
e1
:
SetOperation
(
c74845897
.
rmop
)
e1
:
SetOperation
(
c74845897
.
rmop
)
Duel
.
RegisterEffect
(
e1
,
tp
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
end
end
end
function
c74845897
.
rmfilter
(
c
)
function
c74845897
.
rmfilter
(
c
,
fid
)
return
c
:
GetFlagEffect
(
74845897
)
>
0
return
c
:
GetFlagEffect
Label
(
74845897
)
==
fid
end
end
function
c74845897
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c74845897
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
e
:
GetLabelObject
()
local
g
=
e
:
GetLabelObject
()
local
tg
=
g
:
Filter
(
c74845897
.
rmfilter
,
nil
)
local
tg
=
g
:
Filter
(
c74845897
.
rmfilter
,
nil
,
e
:
GetLabel
()
)
g
:
DeleteGroup
()
g
:
DeleteGroup
()
Duel
.
Remove
(
tg
,
POS_FACEUP
,
REASON_EFFECT
)
Duel
.
Remove
(
tg
,
POS_FACEUP
,
REASON_EFFECT
)
end
end
script/c83054225.lua
View file @
35b23b32
...
@@ -39,25 +39,33 @@ function c83054225.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -39,25 +39,33 @@ function c83054225.spop(e,tp,eg,ep,ev,re,r,rp)
if
g
:
GetCount
()
<
ct
then
return
end
if
g
:
GetCount
()
<
ct
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
sg
=
g
:
Select
(
tp
,
ct
,
ct
,
nil
)
local
sg
=
g
:
Select
(
tp
,
ct
,
ct
,
nil
)
local
fid
=
e
:
GetHandler
():
GetFieldID
()
local
tc
=
sg
:
GetFirst
()
local
tc
=
sg
:
GetFirst
()
while
tc
do
while
tc
do
Duel
.
SpecialSummonStep
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonStep
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
tc
:
RegisterFlagEffect
(
83054225
,
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
,
0
,
1
)
tc
:
RegisterFlagEffect
(
83054225
,
RESET_EVENT
+
0x1fe0000
,
0
,
1
,
fid
)
tc
=
sg
:
GetNext
()
tc
=
sg
:
GetNext
()
end
end
Duel
.
SpecialSummonComplete
()
Duel
.
SpecialSummonComplete
()
sg
:
KeepAlive
()
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCountLimit
(
1
)
e1
:
SetLabel
(
fid
)
e1
:
SetLabelObject
(
sg
)
e1
:
SetOperation
(
c83054225
.
retop
)
e1
:
SetOperation
(
c83054225
.
retop
)
Duel
.
RegisterEffect
(
e1
,
tp
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
end
function
c83054225
.
retfilter
(
c
)
function
c83054225
.
retfilter
(
c
,
fid
)
return
c
:
GetFlagEffect
(
83054225
)
>
0
return
c
:
GetFlagEffect
Label
(
83054225
)
==
fid
end
end
function
c83054225
.
retop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c83054225
.
retop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetMatchingGroup
(
c83054225
.
retfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
g
=
e
:
GetLabelObject
()
Duel
.
SendtoDeck
(
g
,
nil
,
2
,
REASON_EFFECT
)
local
tg
=
g
:
Filter
(
c83054225
.
retfilter
,
nil
,
e
:
GetLabel
())
Duel
.
SendtoDeck
(
tg
,
nil
,
2
,
REASON_EFFECT
)
if
not
g
:
IsExists
(
c83054225
.
retfilter
,
1
,
nil
,
e
:
GetLabel
())
then
g
:
DeleteGroup
()
e
:
Reset
()
end
end
end
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