Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
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
pre-release-database-cdb
Commits
91f8dfba
Commit
91f8dfba
authored
Dec 13, 2024
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update
parent
28fdd7a2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
7 deletions
+16
-7
ALIN.cdb
ALIN.cdb
+0
-0
pack/2025-01-25 ALIN.ydk
pack/2025-01-25 ALIN.ydk
+5
-0
script/c101208010.lua
script/c101208010.lua
+1
-1
script/c101208045.lua
script/c101208045.lua
+1
-1
script/c101208046.lua
script/c101208046.lua
+4
-3
script/c101208056.lua
script/c101208056.lua
+5
-2
No files found.
ALIN.cdb
View file @
91f8dfba
No preview for this file type
pack/2025-01-25 ALIN.ydk
View file @
91f8dfba
...
...
@@ -2,16 +2,21 @@
101208201
101208202
101208203
101208009
101208010
101208018
101208019
101208029
101208204
101208205
101208045
101208046
101208047
101208048
101208049
101208206
101208207
101208056
101208061
101208065
101208208
script/c101208010.lua
View file @
91f8dfba
...
...
@@ -53,7 +53,7 @@ function s.spfilter(c,e,tp)
and
c
:
IsCanBeEffectTarget
(
e
)
end
function
s
.
fselect
(
g
)
return
g
:
GetClassCount
(
Card
.
GetCode
)
==
1
return
aux
.
SameValueCheck
(
g
,
Card
.
GetCode
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
c
=
e
:
GetHandler
()
...
...
script/c101208045.lua
View file @
91f8dfba
...
...
@@ -26,7 +26,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e2
)
end
function
s
.
ovfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
GetOriginalCode
()
==
2407234
return
c
:
IsFaceup
()
and
c
:
IsOriginalCodeRule
(
2407234
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
e
:
SetLabelObject
(
Duel
.
GetAttacker
())
...
...
script/c101208046.lua
View file @
91f8dfba
...
...
@@ -22,7 +22,7 @@ function s.initial_effect(c)
e3
:
SetCode
(
EVENT_FREE_CHAIN
)
e3
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
)
e3
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetCost
(
s
.
codecost
)
e3
:
SetTarget
(
s
.
codetg
)
...
...
@@ -64,9 +64,10 @@ function s.codeop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
code
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
)
return
rp
==
1
-
tp
and
code
==
id
+
o
local
code
,
code2
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
,
CHAININFO_TRIGGERING_CODE2
)
return
rp
==
1
-
tp
and
(
code
==
id
+
o
or
code2
==
id
+
o
)
end
function
s
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
Duel
.
NegateEffect
(
ev
)
end
\ No newline at end of file
script/c101208056.lua
View file @
91f8dfba
--紋章の明滅
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--change code
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
...
...
@@ -10,6 +12,7 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e1
)
--set
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e2
:
SetRange
(
LOCATION_GRAVE
)
...
...
@@ -25,11 +28,11 @@ end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsControler
(
1
-
tp
)
and
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
not
chkc
:
IsCode
(
id
+
o
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
codefilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
DISABLE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
TARGET
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
codefilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
99
,
nil
)
end
function
s
.
acfilter
(
c
,
e
)
return
c
:
IsFaceup
()
and
c
:
IsRelateToEffect
(
e
)
return
c
:
IsFaceup
()
and
c
:
Is
Type
(
TYPE_MONSTER
)
and
c
:
Is
RelateToEffect
(
e
)
end
function
s
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
s
.
acfilter
,
nil
,
e
)
...
...
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