Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-pre-data
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
MyCard
ygopro-pre-data
Commits
dbc88f7e
Commit
dbc88f7e
authored
Sep 21, 2023
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
d0e7039e
Pipeline
#23520
passed with stages
in 36 seconds
Changes
7
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
113 additions
and
113 deletions
+113
-113
expansions/pre-release.cdb
expansions/pre-release.cdb
+0
-0
expansions/pre-strings.conf
expansions/pre-strings.conf
+1
-0
expansions/pre-update.cdb
expansions/pre-update.cdb
+0
-0
script/c100211004.lua
script/c100211004.lua
+2
-3
script/c100314001.lua
script/c100314001.lua
+1
-1
script/c100314052.lua
script/c100314052.lua
+108
-108
script/c101203067.lua
script/c101203067.lua
+1
-1
No files found.
expansions/pre-release.cdb
View file @
dbc88f7e
No preview for this file type
expansions/pre-strings.conf
View file @
dbc88f7e
...
...
@@ -2,6 +2,7 @@
!
counter
0
x169
指示物(吠陀-优婆尼沙昙)
!
counter
0
x170
响鸣指示物
!
setname
0
x4073
铠装超量 アーマード・エクシーズ
!
setname
0
x2052
法理守护者 ローガーディアン
!
setname
0
x29a
吠陀 ヴェーダ
!
setname
0
x29b
哈特 ハート
!
setname
0
x29c
荷鲁斯 ホルス
...
...
expansions/pre-update.cdb
View file @
dbc88f7e
No preview for this file type
script/c100211004.lua
View file @
dbc88f7e
...
...
@@ -42,8 +42,7 @@ function s.initial_effect(c)
end
function
s
.
chainop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
rc
=
re
:
GetHandler
()
local
loc
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_LOCATION
)
if
re
:
IsActiveType
(
TYPE_MONSTER
)
and
loc
==
LOCATION_MZONE
and
rc
:
IsSetCard
(
0x2f
)
then
if
re
:
IsActiveType
(
TYPE_MONSTER
)
and
rc
:
IsSetCard
(
0x2f
)
then
Duel
.
SetChainLimit
(
s
.
chainlm
)
end
end
...
...
script/c100314001.lua
View file @
dbc88f7e
...
...
@@ -33,7 +33,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
s
.
cfilter
(
c
,
tp
,
se
)
return
c
:
IsPreviousControler
(
tp
)
and
c
:
GetPreviousTypeOnField
()
&
TYPE_MONSTER
>
0
and
c
:
GetOriginalAttribute
()
==
ATTRIBUTE_FIRE
return
c
:
IsPreviousControler
(
tp
)
and
not
c
:
IsPreviousLocation
(
LOCATION_SZONE
)
and
c
:
GetOriginalAttribute
()
==
ATTRIBUTE_FIRE
and
c
:
IsReason
(
REASON_BATTLE
+
REASON_EFFECT
)
and
(
se
==
nil
or
c
:
GetReasonEffect
()
~=
se
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
script/c100314052.lua
View file @
dbc88f7e
...
...
@@ -49,8 +49,8 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e5
)
end
function
s
.
cfilter
(
c
,
tp
)
return
c
:
GetPreviousTypeOnField
()
&
TYPE_MONSTER
>
0
and
c
:
GetOriginalAttribute
()
==
ATTRIBUTE_FIRE
and
c
:
IsReason
(
REASON_BATTLE
+
REASON_EFFECT
)
and
c
:
IsPreviousControler
(
tp
)
return
c
:
IsPreviousControler
(
tp
)
and
not
c
:
IsPreviousLocation
(
LOCATION_SZONE
)
and
c
:
GetOriginalAttribute
()
==
ATTRIBUTE_FIRE
and
c
:
IsReason
(
REASON_BATTLE
+
REASON_EFFECT
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
...
...
script/c101203067.lua
View file @
dbc88f7e
...
...
@@ -47,7 +47,7 @@ function s.cfilter2(c)
end
function
s
.
condition
(
e
)
local
tp
=
e
:
GetHandlerPlayer
()
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
1
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
tp
)
end
function
s
.
alimit
(
e
,
c
)
return
c
:
IsFacedown
()
or
not
c
:
IsType
(
TYPE_RITUAL
)
...
...
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