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
8327dfa6
Commit
8327dfa6
authored
Nov 23, 2022
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 風属性以外
parent
5c166584
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
c39853199.lua
c39853199.lua
+1
-1
c70117860.lua
c70117860.lua
+1
-1
c71340250.lua
c71340250.lua
+1
-1
c86395581.lua
c86395581.lua
+1
-1
c9069157.lua
c9069157.lua
+1
-1
c94160895.lua
c94160895.lua
+1
-1
c96945958.lua
c96945958.lua
+1
-1
No files found.
c39853199.lua
View file @
8327dfa6
...
...
@@ -45,7 +45,7 @@ function c39853199.initial_effect(c)
end
function
c39853199
.
destg1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
tc
=
e
:
GetHandler
():
GetBattleTarget
()
if
chk
==
0
then
return
tc
and
tc
:
IsFaceup
()
and
tc
:
GetAttribute
()
~=
ATTRIBUTE_WIND
end
if
chk
==
0
then
return
tc
and
tc
:
IsFaceup
()
and
tc
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
tc
,
1
,
0
,
0
)
end
function
c39853199
.
desop1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
c70117860.lua
View file @
8327dfa6
...
...
@@ -23,7 +23,7 @@ function c70117860.cfilter1(c)
return
c
:
IsFaceup
()
and
c
:
IsAttribute
(
ATTRIBUTE_WIND
)
end
function
c70117860
.
cfilter2
(
c
)
return
c
:
IsFacedown
()
or
not
c
:
IsAttribute
(
ATTRIBUTE_WIND
)
return
c
:
IsFacedown
()
or
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
end
function
c70117860
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsExistingMatchingCard
(
c70117860
.
cfilter1
,
tp
,
LOCATION_MZONE
,
0
,
2
,
nil
)
...
...
c71340250.lua
View file @
8327dfa6
...
...
@@ -33,7 +33,7 @@ function c71340250.cost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
Release
(
sg
,
REASON_COST
)
end
function
c71340250
.
filter
(
c
,
e
,
tp
)
return
c
:
IsSetCard
(
0x16
)
and
not
c
:
IsAttribute
(
ATTRIBUTE_WIND
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
c
:
IsSetCard
(
0x16
)
and
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
c71340250
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c71340250
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
...
...
c86395581.lua
View file @
8327dfa6
...
...
@@ -60,7 +60,7 @@ function c86395581.srop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c86395581
.
aclimit
(
e
,
re
,
tp
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
not
re
:
GetHandler
():
IsAttribute
(
ATTRIBUTE_WIND
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
re
:
GetHandler
():
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
end
function
c86395581
.
cfilter
(
c
,
tp
)
return
c
:
IsPreviousPosition
(
POS_FACEUP
)
and
c
:
IsPreviousControler
(
tp
)
...
...
c9069157.lua
View file @
8327dfa6
...
...
@@ -23,7 +23,7 @@ function c9069157.cost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SendtoGrave
(
e
:
GetHandler
(),
REASON_COST
+
REASON_DISCARD
)
end
function
c9069157
.
thfilter
(
c
)
return
not
c
:
IsAttribute
(
ATTRIBUTE_WIND
)
and
c
:
IsSetCard
(
0x16
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
return
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
and
c
:
IsSetCard
(
0x16
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
end
function
c9069157
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
b1
=
Duel
.
IsExistingMatchingCard
(
c9069157
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
...
...
c94160895.lua
View file @
8327dfa6
...
...
@@ -94,7 +94,7 @@ function c94160895.thcon(e,tp,eg,ep,ev,re,r,rp)
return
e
:
GetHandler
():
IsReason
(
REASON_EFFECT
)
end
function
c94160895
.
thfilter
(
c
)
return
c
:
GetAttribute
()
~=
ATTRIBUTE_WIND
and
c
:
IsRace
(
RACE_WYRM
)
and
c
:
IsAbleToHand
()
return
c
:
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
and
c
:
IsRace
(
RACE_WYRM
)
and
c
:
IsAbleToHand
()
end
function
c94160895
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c94160895
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
...
...
c96945958.lua
View file @
8327dfa6
...
...
@@ -49,7 +49,7 @@ function c96945958.spop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c96945958
.
aclimit
(
e
,
re
,
tp
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
not
re
:
GetHandler
():
IsAttribute
(
ATTRIBUTE_WIND
)
return
re
:
IsActiveType
(
TYPE_MONSTER
)
and
re
:
GetHandler
():
IsAttribute
(
ATTRIBUTE_ALL
-
ATTRIBUTE_WIND
)
end
function
c96945958
.
costfilter
(
c
)
return
c
:
IsSetCard
(
0x2016
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToRemoveAsCost
()
...
...
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