Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
62fa0a32
Commit
62fa0a32
authored
Nov 28, 2023
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
4eaf39e4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
expansions/script/c12896020.lua
expansions/script/c12896020.lua
+1
-0
expansions/script/c53739009.lua
expansions/script/c53739009.lua
+1
-1
expansions/script/c53766003.lua
expansions/script/c53766003.lua
+1
-1
expansions/script/c53766006.lua
expansions/script/c53766006.lua
+1
-1
expansions/script/c53766008.lua
expansions/script/c53766008.lua
+2
-2
No files found.
expansions/script/c12896020.lua
View file @
62fa0a32
...
...
@@ -9,6 +9,7 @@ function s.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_TRIGGER_O
+
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e2
:
SetCountLimit
(
1
,
id
)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e2
:
SetTarget
(
s
.
settg
)
e2
:
SetOperation
(
s
.
setop
)
c
:
RegisterEffect
(
e2
)
...
...
expansions/script/c53739009.lua
View file @
62fa0a32
...
...
@@ -26,7 +26,7 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
cm
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
re
:
GetHandler
():
IsRace
(
RACE_ROCK
)
and
re
:
GetHandler
()
~=
e
:
GetHandler
()
return
re
and
re
:
GetHandler
():
IsRace
(
RACE_ROCK
)
and
re
:
GetHandler
()
~=
e
:
GetHandler
()
and
re
:
IsHasType
(
EFFECT_TYPE_ACTIONS
)
end
function
cm
.
filter
(
c
)
return
c
:
IsAttack
(
1000
)
and
c
:
IsRace
(
RACE_ROCK
)
and
c
:
IsAbleToHand
()
...
...
expansions/script/c53766003.lua
View file @
62fa0a32
...
...
@@ -76,7 +76,7 @@ function s.ctop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetTarget
(
s
.
reptg
)
e1
:
SetOperation
(
s
.
repop
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
tc
:
RegisterEffect
(
e1
,
true
)
tc
:
RegisterEffect
(
e1
)
tc
:
RegisterFlagEffect
(
0
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
,
EFFECT_FLAG_CLIENT_HINT
,
1
,
0
,
aux
.
Stringid
(
id
,
2
))
end
if
c
:
IsFaceup
()
and
c
:
IsRelateToEffect
(
e
)
then
...
...
expansions/script/c53766006.lua
View file @
62fa0a32
...
...
@@ -149,7 +149,7 @@ function s.imcop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetValue
(
s
.
efilter
)
e1
:
SetLabel
(
e
:
GetLabelObject
():
GetHandler
():
GetCode
())
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
RaiseSingleEvent
(
c
,
EVENT_CUSTOM
+
id
,
e
:
GetLabelObject
(),
REASON_EFFECT
,
tp
,
tp
,
0
)
e
:
Reset
()
end
...
...
expansions/script/c53766008.lua
View file @
62fa0a32
...
...
@@ -99,10 +99,10 @@ end
function
s
.
count
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
des
=
eg
:
GetFirst
()
if
des
:
IsReason
(
REASON_BATTLE
)
then
des
:
GetReasonCard
():
RegisterFlagEffect
(
id
+
33
,
RESET_EVENT
+
0x1fc0000
+
RESET_PHASE
+
PHASE_
END
,
0
,
1
)
des
:
GetReasonCard
():
RegisterFlagEffect
(
id
+
33
,
RESET_EVENT
+
0x1fc0000
+
RESET_PHASE
+
PHASE_
DRAW
,
0
,
1
)
elseif
re
then
local
rc
=
re
:
GetHandler
()
if
eg
:
IsExists
(
Card
.
IsReason
,
1
,
nil
,
REASON_EFFECT
)
and
rc
then
rc
:
RegisterFlagEffect
(
id
+
33
,
RESET_EVENT
+
0x1fc0000
+
RESET_PHASE
+
PHASE_
END
,
0
,
1
)
end
if
eg
:
IsExists
(
Card
.
IsReason
,
1
,
nil
,
REASON_EFFECT
)
and
rc
then
rc
:
RegisterFlagEffect
(
id
+
33
,
RESET_EVENT
+
0x1fc0000
+
RESET_PHASE
+
PHASE_
DRAW
,
0
,
1
)
end
end
end
function
s
.
checkop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
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