Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
3
Merge Requests
3
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-scripts-888
Commits
5c166584
Commit
5c166584
authored
Nov 23, 2022
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 炎属性以外
parent
13596551
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
c74010769.lua
c74010769.lua
+1
-1
c87327776.lua
c87327776.lua
+1
-1
c96746083.lua
c96746083.lua
+1
-1
No files found.
c74010769.lua
View file @
5c166584
...
...
@@ -18,7 +18,7 @@ function c74010769.initial_effect(c)
c
:
RegisterEffect
(
e2
)
end
function
c74010769
.
cfilter
(
c
)
return
(
c
:
IsFacedown
()
or
not
c
:
IsAttribute
(
ATTRIBUTE_FIRE
))
and
c
:
IsType
(
TYPE_MONSTER
)
return
(
c
:
IsFacedown
()
or
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_FIRE
))
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
c74010769
.
spcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
...
...
c87327776.lua
View file @
5c166584
...
...
@@ -58,7 +58,7 @@ function c87327776.spop(e,tp,eg,ep,ev,re,r,rp)
end
function
c87327776
.
actlimit
(
e
,
re
,
rp
)
local
rc
=
re
:
GetHandler
()
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
not
rc
:
IsAttribute
(
ATTRIBUTE_FIRE
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
rc
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_FIRE
)
end
function
c87327776
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
...
...
c96746083.lua
View file @
5c166584
...
...
@@ -96,7 +96,7 @@ function c96746083.thcon(e,tp,eg,ep,ev,re,r,rp)
return
e
:
GetHandler
():
IsReason
(
REASON_EFFECT
)
end
function
c96746083
.
thfilter
(
c
)
return
c
:
GetAttribute
()
~=
ATTRIBUTE_FIRE
and
c
:
IsRace
(
RACE_WYRM
)
and
c
:
IsAbleToHand
()
return
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_FIRE
)
and
c
:
IsRace
(
RACE_WYRM
)
and
c
:
IsAbleToHand
()
end
function
c96746083
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c96746083
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
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