Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
6d593e52
Commit
6d593e52
authored
Nov 12, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace c22134510.lua
parent
bf11d6d7
Pipeline
#31115
passed with stages
in 32 minutes and 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
18 deletions
+19
-18
expansions/script/c22134510.lua
expansions/script/c22134510.lua
+19
-18
No files found.
expansions/script/c22134510.lua
View file @
6d593e52
...
...
@@ -28,6 +28,20 @@ function s.initial_effect(c)
e1
:
SetOperation
(
s
.
acop
)
c
:
RegisterEffect
(
e1
)
-- 用于让卡被无效之后指示物也不会被去除
-- 特殊召唤时,清除指示物设置
local
ec3
=
Effect
.
CreateEffect
(
c
)
ec3
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_SINGLE
)
ec3
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
ec3
:
SetRange
(
LOCATION_MZONE
)
ec3
:
SetCode
(
EVENT_SPSUMMON
)
ec3
:
SetOperation
(
s
.
resetcop
)
c
:
RegisterEffect
(
ec3
)
local
ec30
=
ec3
:
Clone
()
ec30
:
SetCode
(
EVENT_SUMMON
)
c
:
RegisterEffect
(
ec30
)
local
ec31
=
ec3
:
Clone
()
ec31
:
SetCode
(
EVENT_FLIP_SUMMON
)
c
:
RegisterEffect
(
ec31
)
-- 检测是否出现指示物跳变
local
ec1
=
Effect
.
CreateEffect
(
c
)
ec1
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_FIELD
)
...
...
@@ -38,7 +52,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
ec1
)
-- 检测指示物是否属于自主减少
local
ec0
=
Effect
.
CreateEffect
(
c
)
ec0
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_
SINGLE
)
ec0
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_
FIELD
)
ec0
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
ec0
:
SetRange
(
LOCATION_MZONE
+
LOCATION_PZONE
)
ec0
:
SetCode
(
EVENT_REMOVE_COUNTER
+
0x760
)
...
...
@@ -52,20 +66,6 @@ function s.initial_effect(c)
ec2
:
SetCode
(
EVENT_CUSTOM
+
id
)
ec2
:
SetOperation
(
s
.
htccop
)
c
:
RegisterEffect
(
ec2
)
-- 特殊召唤时,清除指示物设置
local
ec3
=
Effect
.
CreateEffect
(
c
)
ec3
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_SINGLE
)
ec3
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
ec3
:
SetRange
(
LOCATION_MZONE
)
ec3
:
SetCode
(
EVENT_SPSUMMON
)
ec3
:
SetOperation
(
s
.
resetcop
)
c
:
RegisterEffect
(
ec3
)
local
ec30
=
ec3
:
Clone
()
ec30
:
SetCode
(
EVENT_SUMMON
)
c
:
RegisterEffect
(
ec30
)
local
ec31
=
ec3
:
Clone
()
ec31
:
SetCode
(
EVENT_FLIP_SUMMON
)
c
:
RegisterEffect
(
ec31
)
--special summon by PZONE
local
e2
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -209,7 +209,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
local
thg
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
thgfilter
),
tp
,
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
if
thg
:
GetCount
()
>
0
then
Duel
.
SendtoHand
(
thg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
ConfirmCards
(
1
-
tp
,
th
g
)
end
end
end
...
...
@@ -281,10 +281,11 @@ function s.tdfilter2(c)
end
-- 用于让卡被无效之后指示物也不会被去除
function
s
.
chkcop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
e22134510
=
e
local
cnt
=
e
:
GetHandler
():
GetCounter
(
0x760
)
local
chc
=
e
:
GetLabel
()
if
chc
then
if
chc
>=
cnt
then
if
chc
>=
cnt
and
cnt
<=
1
and
e
:
GetHandler
():
GetFlagEffect
(
22134501
)
==
0
then
e
:
SetLabel
(
chc
)
Duel
.
RaiseEvent
(
e
:
GetHandler
(),
EVENT_CUSTOM
+
id
,
e
,
0
,
0
,
0
,
0
)
return
...
...
@@ -308,5 +309,5 @@ function s.htccop(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
resetcop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
GetLabel
(
e22134510
)
e22134510
:
SetLabel
()
e22134510
:
SetLabel
(
0
)
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