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
9aaf09b8
Commit
9aaf09b8
authored
Nov 11, 2021
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
watele
parent
2f9ad5fc
Pipeline
#6744
failed with stages
in 24 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
expansions/script/c12062082.lua
expansions/script/c12062082.lua
+11
-8
No files found.
expansions/script/c12062082.lua
View file @
9aaf09b8
...
...
@@ -5,14 +5,14 @@ Duel.LoadScript("c12000000.lua")
function
cm
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
12062000
)
--special summon
local
e
1
=
Effect
.
CreateEffect
(
c
)
e
1
:
SetType
(
EFFECT_TYPE_FIELD
)
e
1
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e
1
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e
1
:
SetRange
(
LOCATION_HAND
)
e
1
:
SetCountLimit
(
1
,
m
)
e
1
:
SetCondition
(
cm
.
spcon
)
c
:
RegisterEffect
(
e
1
)
local
e
0
=
Effect
.
CreateEffect
(
c
)
e
0
:
SetType
(
EFFECT_TYPE_FIELD
)
e
0
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e
0
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e
0
:
SetRange
(
LOCATION_HAND
)
e
0
:
SetCountLimit
(
1
,
m
)
e
0
:
SetCondition
(
cm
.
spcon
)
c
:
RegisterEffect
(
e
0
)
--to hand
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
...
...
@@ -24,6 +24,9 @@ function cm.initial_effect(c)
e1
:
SetTarget
(
cm
.
thtg
)
e1
:
SetOperation
(
cm
.
thop
)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
c
:
RegisterEffect
(
e2
)
end
function
cm
.
spcon
(
e
,
c
)
if
c
==
nil
then
return
true
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