Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
Vee4
ygopro-scripts-888
Commits
d1a0ccc4
Commit
d1a0ccc4
authored
Aug 01, 2021
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add card BODE-JP055
parent
1e75f7a9
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
103 additions
and
0 deletions
+103
-0
c10584050.lua
c10584050.lua
+1
-0
c1984618.lua
c1984618.lua
+1
-0
c25451383.lua
c25451383.lua
+1
-0
c29354228.lua
c29354228.lua
+1
-0
c29948294.lua
c29948294.lua
+92
-0
c34995106.lua
c34995106.lua
+1
-0
c48285768.lua
c48285768.lua
+1
-0
c62022479.lua
c62022479.lua
+1
-0
c67100549.lua
c67100549.lua
+1
-0
c72272462.lua
c72272462.lua
+1
-0
c83199011.lua
c83199011.lua
+1
-0
c93595154.lua
c93595154.lua
+1
-0
No files found.
c10584050.lua
View file @
d1a0ccc4
--スプリガンズ・ブラスト!
function
c10584050
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_DISABLE
)
...
...
c1984618.lua
View file @
d1a0ccc4
--天底の使徒
function
c1984618
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_TOGRAVE
+
CATEGORY_TOHAND
+
CATEGORY_SEARCH
)
...
...
c25451383.lua
View file @
d1a0ccc4
--黒衣竜アルビオン
function
c25451383
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--change name
aux
.
EnableChangeCode
(
c
,
68468459
,
LOCATION_MZONE
+
LOCATION_GRAVE
)
--to grave
...
...
c29354228.lua
View file @
d1a0ccc4
--ドラグマ・エンカウンター
function
c29354228
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
29354228
,
0
))
...
...
c29948294.lua
0 → 100644
View file @
d1a0ccc4
--烙印の気炎
function
c29948294
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
29948294
,
0
))
e1
:
SetCategory
(
CATEGORY_TOGRAVE
+
CATEGORY_HANDES
+
CATEGORY_SEARCH
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
,
29948294
)
e1
:
SetTarget
(
c29948294
.
target
)
e1
:
SetOperation
(
c29948294
.
activate
)
c
:
RegisterEffect
(
e1
)
--to hand
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
29948294
,
1
))
e2
:
SetCategory
(
CATEGORY_TOHAND
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e2
:
SetCountLimit
(
1
,
29948294
)
e2
:
SetRange
(
LOCATION_GRAVE
)
e2
:
SetCondition
(
c29948294
.
thcon
)
e2
:
SetTarget
(
c29948294
.
thtg
)
e2
:
SetOperation
(
c29948294
.
thop
)
c
:
RegisterEffect
(
e2
)
if
not
c29948294
.
global_check
then
c29948294
.
global_check
=
true
local
ge1
=
Effect
.
CreateEffect
(
c
)
ge1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
ge1
:
SetCode
(
EVENT_TO_GRAVE
)
ge1
:
SetOperation
(
c29948294
.
checkop
)
Duel
.
RegisterEffect
(
ge1
,
0
)
end
end
function
c29948294
.
checkfilter
(
c
,
tp
)
return
c
:
IsType
(
TYPE_FUSION
)
and
c
:
IsControler
(
tp
)
end
function
c29948294
.
checkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
eg
:
IsExists
(
c29948294
.
checkfilter
,
1
,
nil
,
0
)
then
Duel
.
RegisterFlagEffect
(
0
,
29948294
,
RESET_PHASE
+
PHASE_END
,
0
,
1
)
end
if
eg
:
IsExists
(
c29948294
.
checkfilter
,
1
,
nil
,
1
)
then
Duel
.
RegisterFlagEffect
(
1
,
29948294
,
RESET_PHASE
+
PHASE_END
,
0
,
1
)
end
end
function
c29948294
.
cfilter
(
c
,
tp
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsPublic
()
and
Duel
.
IsExistingMatchingCard
(
c29948294
.
tgfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
c
:
GetRace
())
end
function
c29948294
.
tgfilter
(
c
,
race
)
return
(
c
:
IsAttack
(
2500
)
or
c
:
IsDefense
(
2500
))
and
c
:
IsRace
(
race
)
and
c
:
IsLevel
(
8
)
and
c
:
IsType
(
TYPE_FUSION
)
and
c
:
IsAbleToGrave
()
end
function
c29948294
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c29948294
.
cfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOGRAVE
,
nil
,
1
,
tp
,
LOCATION_EXTRA
)
end
function
c29948294
.
thfilter
(
c
)
return
(
c
:
IsCode
(
68468459
)
or
aux
.
IsCodeListed
(
c
,
68468459
)
and
c
:
IsType
(
TYPE_MONSTER
))
and
c
:
IsAbleToHand
()
end
function
c29948294
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_CONFIRM
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c29948294
.
cfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
tp
)
local
cc
=
g
:
GetFirst
()
if
cc
then
Duel
.
ConfirmCards
(
1
-
tp
,
cc
)
local
race
=
cc
:
GetRace
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
c29948294
.
tgfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
race
)
local
tc
=
tg
:
GetFirst
()
if
Duel
.
SendtoGrave
(
tc
,
REASON_EFFECT
)
~=
0
and
tc
:
IsLocation
(
LOCATION_GRAVE
)
then
local
g
=
Duel
.
GetMatchingGroup
(
c29948294
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
#
g
>
0
and
cc
:
IsDiscardable
()
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
29948294
,
2
))
then
Duel
.
BreakEffect
()
Duel
.
SendtoGrave
(
cc
,
REASON_EFFECT
+
REASON_DISCARD
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
end
end
end
end
function
c29948294
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetFlagEffect
(
tp
,
29948294
)
~=
0
end
function
c29948294
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsAbleToHand
()
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
e
:
GetHandler
(),
1
,
0
,
0
)
end
function
c29948294
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToEffect
(
e
)
then
Duel
.
SendtoHand
(
c
,
nil
,
REASON_EFFECT
)
end
end
c34995106.lua
View file @
d1a0ccc4
--白の烙印
function
c34995106
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
34995106
,
0
))
...
...
c48285768.lua
View file @
d1a0ccc4
--スプリガンズ・メリーメイカー
function
c48285768
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
nil
,
4
,
2
)
c
:
EnableReviveLimit
()
...
...
c62022479.lua
View file @
d1a0ccc4
--烙印の絆
function
c62022479
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
62022479
,
0
))
...
...
c67100549.lua
View file @
d1a0ccc4
--烙印凶鳴
function
c67100549
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
67100549
,
0
))
...
...
c72272462.lua
View file @
d1a0ccc4
--デスピアン・クエリティス
function
c72272462
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--fusion summon
c
:
EnableReviveLimit
()
aux
.
AddFusionProcFun2
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsFusionSetCard
,
0x164
),
c72272462
.
matfilter
,
true
)
...
...
c83199011.lua
View file @
d1a0ccc4
--スプリガンズ・コール!
function
c83199011
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
83199011
,
0
))
...
...
c93595154.lua
View file @
d1a0ccc4
--烙印の裁き
function
c93595154
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
68468459
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
93595154
,
0
))
...
...
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