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
e2ce2446
Commit
e2ce2446
authored
Sep 14, 2024
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1,伊兹尼亚描述优化2,奇妙之梦 爱丽丝卡名修改,红宝石飞鹰效果修改,紫水晶雄狮luafix
parent
f237e0d5
Pipeline
#29761
failed with stages
in 26 minutes and 12 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
8 deletions
+28
-8
expansions/FiNALE.cdb
expansions/FiNALE.cdb
+0
-0
expansions/script/c60002206.lua
expansions/script/c60002206.lua
+26
-8
expansions/script/c60002207.lua
expansions/script/c60002207.lua
+2
-0
No files found.
expansions/FiNALE.cdb
View file @
e2ce2446
No preview for this file type
expansions/script/c60002206.lua
View file @
e2ce2446
--红宝石飞鹰
local
m
=
60002
178
local
m
=
60002
206
local
cm
=
_G
[
"c"
..
m
]
function
cm
.
initial_effect
(
c
)
c
:
EnableCounterPermit
(
0x625
,
LOCATION_ONFIELD
)
--pendulum summon
aux
.
EnablePendulumAttribute
(
c
)
--summon with s/t
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
@@ -44,13 +46,13 @@ function cm.initial_effect(c)
e2
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
c
:
RegisterEffect
(
e2
)
--direct attack
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_DIRECT_ATTACK
)
e1
:
SetRange
(
LOCATION_SZONE
)
e1
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e1
:
SetTarget
(
cm
.
datg
)
c
:
RegisterEffect
(
e1
)
local
e1
1
=
Effect
.
CreateEffect
(
c
)
e1
1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
1
:
SetRange
(
LOCATION_PZONE
)
e1
1
:
SetCountLimit
(
1
)
e1
1
:
SetTarget
(
cm
.
target
)
e1
1
:
SetOperation
(
cm
.
operation
)
c
:
RegisterEffect
(
e1
1
)
end
function
cm
.
thtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
>
0
end
...
...
@@ -134,4 +136,20 @@ function cm.spop(e,tp,eg,ep,ev,re,r,rp)
end
function
cm
.
datg
(
e
,
c
)
return
c
:
IsPosition
(
POS_FACEUP
)
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
true
end
end
function
cm
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_DIRECT_ATTACK
)
e1
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e1
:
SetTarget
(
cm
.
tg
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
cm
.
tg
(
e
,
c
)
return
c
:
IsFaceup
()
and
c
:
IsAttack
(
800
)
end
\ No newline at end of file
expansions/script/c60002207.lua
View file @
e2ce2446
...
...
@@ -2,6 +2,8 @@
local
m
=
60002207
local
cm
=
_G
[
"c"
..
m
]
function
cm
.
initial_effect
(
c
)
--pendulum summon
aux
.
EnablePendulumAttribute
(
c
)
--special summon
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
...
...
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