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
Soulgamer
ygopro-222DIY-cards
Commits
5dba80ff
Commit
5dba80ff
authored
Jun 21, 2022
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1145141919810
parent
f86173c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
135 additions
and
11 deletions
+135
-11
expansions/script/c81000000.lua
expansions/script/c81000000.lua
+135
-11
No files found.
expansions/script/c81000000.lua
View file @
5dba80ff
...
...
@@ -13,10 +13,10 @@ function Tenka.Shizuka(c)
eb
:
SetRange
(
LOCATION_MZONE
)
eb
:
SetCode
(
EFFECT_INDESTRUCTABLE_COUNT
)
eb
:
SetCountLimit
(
1
)
eb
:
SetValue
(
Tenka
.
v
alcon
)
eb
:
SetValue
(
Tenka
.
ShizukaV
alcon
)
c
:
RegisterEffect
(
eb
)
end
function
Tenka
.
v
alcon
(
e
,
re
,
r
,
rp
)
function
Tenka
.
ShizukaV
alcon
(
e
,
re
,
r
,
rp
)
return
bit
.
band
(
r
,
REASON_BATTLE
)
~=
0
end
--Kitakami Reika, 81015xxx(81015028~ ), 0x81a
...
...
@@ -35,8 +35,8 @@ function Tenka.KoikakeRitual(c)
ea
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
ea
:
SetRange
(
LOCATION_MZONE
)
ea
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
ea
:
SetCondition
(
Tenka
.
a
tkcon
)
ea
:
SetValue
(
Tenka
.
b
tkval
)
ea
:
SetCondition
(
Tenka
.
KoikakeA
tkcon
)
ea
:
SetValue
(
Tenka
.
KoikakeA
tkval
)
c
:
RegisterEffect
(
ea
)
end
function
Tenka
.
KoikakeLink
(
c
)
...
...
@@ -45,22 +45,22 @@ function Tenka.KoikakeLink(c)
ea
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
ea
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
ea
:
SetRange
(
LOCATION_MZONE
)
ea
:
SetCondition
(
Tenka
.
a
tkcon
)
ea
:
SetValue
(
Tenka
.
a
tkval
)
ea
:
SetCondition
(
Tenka
.
KoikakeA
tkcon
)
ea
:
SetValue
(
Tenka
.
KoikakeLinkA
tkval
)
c
:
RegisterEffect
(
ea
)
end
function
Tenka
.
a
tkcon
(
e
)
function
Tenka
.
KoikakeA
tkcon
(
e
)
local
ph
=
Duel
.
GetCurrentPhase
()
return
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
end
function
Tenka
.
a
tkfilter
(
c
)
function
Tenka
.
KoikakeA
tkfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_RITUAL
)
and
c
:
IsType
(
TYPE_PENDULUM
)
and
c
:
GetLevel
()
>
0
end
function
Tenka
.
a
tkval
(
e
,
c
)
local
lg
=
c
:
GetLinkedGroup
():
Filter
(
Tenka
.
a
tkfilter
,
nil
)
function
Tenka
.
KoikakeLinkA
tkval
(
e
,
c
)
local
lg
=
c
:
GetLinkedGroup
():
Filter
(
Tenka
.
KoikakeA
tkfilter
,
nil
)
return
lg
:
GetSum
(
Card
.
GetLevel
)
*
300
end
function
Tenka
.
b
tkval
(
e
,
c
)
function
Tenka
.
KoikakeA
tkval
(
e
,
c
)
return
c
:
GetLevel
()
*
300
end
--kobayashi maid dragon
...
...
@@ -77,12 +77,14 @@ function Tenka.MaidDragon(c)
c
:
RegisterEffect
(
ea
)
end
--
--
function
Tenka
.
Asamiya
(
c
)
c
:
EnableReviveLimit
()
aux
.
AddCodeList
(
c
,
81027000
)
aux
.
EnableChangeCode
(
c
,
81027000
,
LOCATION_MZONE
+
LOCATION_HAND
)
end
--
--
function
Tenka
.
Einstein
(
c
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetType
(
EFFECT_TYPE_FIELD
)
...
...
@@ -109,6 +111,7 @@ function Tenka.checkop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
RegisterFlagEffect
(
ep
,
81024000
,
RESET_PHASE
+
PHASE_END
,
0
,
1
)
end
end
--
function
Tenka
.
EinMainCon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetFlagEffect
(
tp
,
81024000
)
~=
0
and
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
end
...
...
@@ -117,6 +120,7 @@ function Tenka.EinBattleCon(e,tp,eg,ep,ev,re,r,rp)
return
ep
==
tp
and
c
:
IsRelateToBattle
()
end
--
--
function
Tenka
.
Pendulum
(
c
)
if
not
Auxiliary
.
PendulumChecklist
then
Auxiliary
.
PendulumChecklist
=
0
...
...
@@ -285,6 +289,7 @@ function Tenka.SelectGroupNew(tp,desc,cancelable,g,f,cg,min,max,...)
return
g
:
SelectSubGroup
(
tp
,
f
,
cancelable
,
min
,
max
,
...
)
end
--
--
function
Tenka
.
MiyakoCost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Tenka
.
costfilter
,
tp
,
LOCATION_MZONE
+
LOCATION_HAND
,
0
,
1
,
nil
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
...
...
@@ -295,6 +300,7 @@ function Tenka.costfilter(c,tp)
return
((
c
:
IsFaceup
()
and
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_TRAP
)
~=
0
and
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_CONTINUOUS
)
~=
0
and
c
:
IsType
(
TYPE_MONSTER
))
or
c
:
IsHasEffect
(
81049012
,
tp
))
and
c
:
IsAbleToGraveAsCost
()
and
(
c
:
IsLocation
(
LOCATION_HAND
)
or
c
:
IsFaceup
())
end
--
--
function
Tenka
.
FlowerKnightGirl
(
c
)
--synchro limit
local
ea
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -316,3 +322,121 @@ function Tenka.Chiyuufilter(c)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_LINK
)
and
c
:
IsSetCard
(
0x581f
)
end
--
--
function
Tenka
.
Lamunation
(
c
,
m
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
ea
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
ea
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
ea
:
SetRange
(
LOCATION_GRAVE
)
ea
:
SetCountLimit
(
1
,
m
+
900
)
ea
:
SetTarget
(
Tenka
.
LamunationSptg
)
ea
:
SetOperation
(
Tenka
.
LamunationSpop
)
c
:
RegisterEffect
(
ea
)
end
--
function
Tenka
.
LamunationBeast
(
c
,
m
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
ea
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
ea
:
SetCode
(
EVENT_PHASE
+
PHASE_STANDBY
)
ea
:
SetRange
(
LOCATION_GRAVE
)
ea
:
SetCountLimit
(
1
,
m
+
900
)
ea
:
SetTarget
(
Tenka
.
LamunationSptg
)
ea
:
SetOperation
(
Tenka
.
LamunationSpop
)
c
:
RegisterEffect
(
ea
)
end
--
function
Tenka
.
LamunationFusion
(
c
,
m
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
ea
:
SetType
(
EFFECT_TYPE_QUICK_O
)
ea
:
SetCode
(
EVENT_FREE_CHAIN
)
ea
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
ea
:
SetRange
(
LOCATION_GRAVE
)
ea
:
SetCountLimit
(
1
,
m
+
900
)
ea
:
SetCondition
(
Tenka
.
LamunationFusionSpcon
)
ea
:
SetTarget
(
Tenka
.
LamunationSptg
)
ea
:
SetOperation
(
Tenka
.
LamunationSpop
)
c
:
RegisterEffect
(
ea
)
end
function
Tenka
.
LamunationCfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsSummonLocation
(
LOCATION_GRAVE
)
and
c
:
IsAttack
(
1550
)
and
c
:
IsDefense
(
1050
)
and
not
c
:
IsType
(
TYPE_FUSION
)
end
function
Tenka
.
LamunationFusionSpcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
then
return
false
end
return
Duel
.
IsExistingMatchingCard
(
Tenka
.
LamunationCfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
--
function
Tenka
.
LamunationFusion2
(
c
,
m
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
ea
:
SetType
(
EFFECT_TYPE_QUICK_O
)
ea
:
SetCode
(
EVENT_FREE_CHAIN
)
ea
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
ea
:
SetRange
(
LOCATION_GRAVE
)
ea
:
SetCountLimit
(
1
,
m
+
900
)
ea
:
SetCondition
(
Tenka
.
LamunationFusionSpcon2
)
ea
:
SetTarget
(
Tenka
.
LamunationSptg
)
ea
:
SetOperation
(
Tenka
.
LamunationSpop
)
c
:
RegisterEffect
(
ea
)
end
function
Tenka
.
LamunationDfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsSummonLocation
(
LOCATION_GRAVE
)
and
c
:
IsAttack
(
1550
)
and
c
:
IsDefense
(
1050
)
and
c
:
IsType
(
TYPE_FUSION
)
and
not
c
:
IsCode
(
m
)
end
function
Tenka
.
LamunationFusionSpcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
then
return
false
end
return
Duel
.
IsExistingMatchingCard
(
Tenka
.
LamunationDfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
--
function
Tenka
.
Lamunation2
(
c
,
m
)
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
ea
:
SetType
(
EFFECT_TYPE_QUICK_O
)
ea
:
SetCode
(
EVENT_FREE_CHAIN
)
ea
:
SetHintTiming
(
0
,
TIMING_BATTLE_START
+
TIMING_BATTLE_END
)
ea
:
SetRange
(
LOCATION_GRAVE
)
ea
:
SetCountLimit
(
1
,
m
+
900
)
ea
:
SetCondition
(
Tenka
.
LamunationSpcon
)
ea
:
SetTarget
(
Tenka
.
LamunationSptg
)
ea
:
SetOperation
(
Tenka
.
LamunationSpop
)
c
:
RegisterEffect
(
ea
)
end
function
Tenka
.
LamunationEfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsSummonLocation
(
LOCATION_GRAVE
)
and
c
:
IsAttack
(
1550
)
and
c
:
IsDefense
(
1050
)
and
not
c
:
IsCode
(
m
)
end
function
Tenka
.
LamunationSpcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
return
Duel
.
IsExistingMatchingCard
(
Tenka
.
LamunationEfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
and
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
end
--
function
Tenka
.
LamunationSptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
c
=
e
:
GetHandler
()
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
c
,
1
,
0
,
0
)
end
function
Tenka
.
LamunationSpop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToEffect
(
e
)
then
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
--
function
Tenka
.
LamunationLimit
(
c
,
tp
)
local
c
=
e
:
GetHandler
()
local
ea
=
Effect
.
CreateEffect
(
c
)
ea
:
SetType
(
EFFECT_TYPE_FIELD
)
ea
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
ea
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
ea
:
SetTargetRange
(
1
,
0
)
ea
:
SetTarget
(
Tenka
.
LamunationSplimit
)
if
Duel
.
GetTurnPlayer
()
==
tp
then
ea
:
SetReset
(
RESET_PHASE
+
PHASE_END
+
RESET_SELF_TURN
,
2
)
else
ea
:
SetReset
(
RESET_PHASE
+
PHASE_END
+
RESET_SELF_TURN
)
end
Duel
.
RegisterEffect
(
ea
,
tp
)
end
function
Tenka
.
LamunationSplimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
c
:
IsLocation
(
LOCATION_DECK
)
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