Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
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
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
ygopro-2pick
Commits
c91a58f9
Commit
c91a58f9
authored
Oct 15, 2012
by
argon.sun
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Fluorohydride/ygopro
parents
b272fb13
4aed66e7
Changes
41
Hide whitespace changes
Inline
Side-by-side
Showing
41 changed files
with
69 additions
and
64 deletions
+69
-64
script/c10028593.lua
script/c10028593.lua
+1
-1
script/c10365322.lua
script/c10365322.lua
+14
-10
script/c10802915.lua
script/c10802915.lua
+1
-1
script/c15667446.lua
script/c15667446.lua
+1
-1
script/c16480084.lua
script/c16480084.lua
+1
-1
script/c1828513.lua
script/c1828513.lua
+1
-1
script/c21507589.lua
script/c21507589.lua
+1
-1
script/c21620076.lua
script/c21620076.lua
+2
-2
script/c22842214.lua
script/c22842214.lua
+1
-1
script/c24362891.lua
script/c24362891.lua
+1
-1
script/c25206027.lua
script/c25206027.lua
+1
-1
script/c25484449.lua
script/c25484449.lua
+1
-1
script/c36352429.lua
script/c36352429.lua
+1
-1
script/c41930553.lua
script/c41930553.lua
+1
-1
script/c42752141.lua
script/c42752141.lua
+1
-1
script/c42874792.lua
script/c42874792.lua
+1
-1
script/c45178472.lua
script/c45178472.lua
+1
-1
script/c4545854.lua
script/c4545854.lua
+1
-1
script/c46291010.lua
script/c46291010.lua
+2
-3
script/c47013502.lua
script/c47013502.lua
+1
-1
script/c50766506.lua
script/c50766506.lua
+1
-1
script/c51589188.lua
script/c51589188.lua
+1
-1
script/c52601736.lua
script/c52601736.lua
+1
-1
script/c52823314.lua
script/c52823314.lua
+1
-1
script/c57902193.lua
script/c57902193.lua
+11
-10
script/c68124775.lua
script/c68124775.lua
+1
-1
script/c69846323.lua
script/c69846323.lua
+1
-1
script/c72563071.lua
script/c72563071.lua
+1
-1
script/c73285669.lua
script/c73285669.lua
+1
-1
script/c73417207.lua
script/c73417207.lua
+1
-1
script/c79279397.lua
script/c79279397.lua
+1
-1
script/c80495985.lua
script/c80495985.lua
+1
-1
script/c87973893.lua
script/c87973893.lua
+1
-1
script/c88095331.lua
script/c88095331.lua
+2
-2
script/c93396832.lua
script/c93396832.lua
+1
-1
script/c93717133.lua
script/c93717133.lua
+3
-2
script/c94119480.lua
script/c94119480.lua
+1
-1
script/c95231062.lua
script/c95231062.lua
+1
-1
script/c96457619.lua
script/c96457619.lua
+1
-1
script/c9780364.lua
script/c9780364.lua
+1
-1
script/c99212922.lua
script/c99212922.lua
+1
-1
No files found.
script/c10028593.lua
View file @
c91a58f9
--
Reborn Tengu
--
݆h칷
function
c10028593
.
initial_effect
(
c
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c10365322.lua
View file @
c91a58f9
...
...
@@ -28,16 +28,20 @@ function c10365322.destg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
0
)
end
function
c10365322
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
local
tc
=
g
:
GetFirst
()
local
tc
=
Duel
.
GetFirstTarget
()
local
c
=
e
:
GetHandler
()
local
dam
=
tc
:
IsRelateToEffect
(
e
)
and
c
:
IsRelateToEffect
(
e
)
local
dg
=
Group
.
FromCards
(
c
,
tc
)
Duel
.
Destroy
(
dg
,
REASON_EFFECT
)
if
dam
and
tc
:
IsLocation
(
LOCATION_GRAVE
)
and
c
:
IsLocation
(
LOCATION_GRAVE
)
then
Duel
.
BreakEffect
()
local
d
=
tc
:
GetAttack
()
if
d
<
0
then
d
=
0
end
Duel
.
Damage
(
1
-
tp
,
d
,
REASON_EFFECT
)
if
not
tc
:
IsRelateToEffect
(
e
)
and
not
c
:
IsRelateToEffect
(
e
)
then
return
end
if
not
tc
:
IsRelateToEffect
(
e
)
then
Duel
.
Destroy
(
c
,
REASON_EFFECT
)
elseif
not
c
:
IsRelateToEffect
(
e
)
then
Duel
.
Destroy
(
tc
,
REASON_EFFECT
)
else
local
dg
=
Group
.
FromCards
(
c
,
tc
)
if
Duel
.
Destroy
(
dg
,
REASON_EFFECT
)
==
2
and
tc
:
IsLocation
(
LOCATION_GRAVE
)
and
c
:
IsLocation
(
LOCATION_GRAVE
)
then
Duel
.
BreakEffect
()
local
d
=
tc
:
GetAttack
()
if
d
<
0
then
d
=
0
end
Duel
.
Damage
(
1
-
tp
,
d
,
REASON_EFFECT
)
end
end
end
script/c10802915.lua
View file @
c91a58f9
--
Tour Guide From the Underworld
--
魔界発現世行きデスガイド
function
c10802915
.
initial_effect
(
c
)
--spsummon
local
e2
=
Effect
.
CreateEffect
(
c
)
...
...
script/c15667446.lua
View file @
c91a58f9
--
Latinum, Exarch of Dark World
--
\L
function
c15667446
.
initial_effect
(
c
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c16480084.lua
View file @
c91a58f9
--
Evolsaur Pelta
--
`ڥ륿
function
c16480084
.
initial_effect
(
c
)
end
function
c16480084
.
evolreg
(
c
)
...
...
script/c1828513.lua
View file @
c91a58f9
--
Shadow of the Six Samurai - Shien
--
\Ӱ
function
c1828513
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
c1828513
.
xyzfilter
,
2
)
...
...
script/c21507589.lua
View file @
c91a58f9
--
Fish and Swaps
--
フィッシュアンドバックス
function
c21507589
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c21620076.lua
View file @
c91a58f9
--
Pain Painter
--
ڥڥ`
function
c21620076
.
initial_effect
(
c
)
--alias
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -33,7 +33,7 @@ function c21620076.lvop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
local
tc
=
g
:
GetFirst
()
while
tc
do
if
c21620076
.
lvfilter
(
tc
)
then
if
tc
:
IsFaceup
(
)
then
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_CHANGE_LEVEL
)
...
...
script/c22842214.lua
View file @
c91a58f9
--
Sea Lancer
--
``
function
c22842214
.
initial_effect
(
c
)
--equip
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c24362891.lua
View file @
c91a58f9
--
Evo-Instant
--
ͻȻM
function
c24362891
.
initial_effect
(
c
)
--Special Summon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c25206027.lua
View file @
c91a58f9
--
Interplanetarypurplythorny Dragon
--
μϸo
function
c25206027
.
initial_effect
(
c
)
--special summon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c25484449.lua
View file @
c91a58f9
--
Wind-Up Shark
--
ޥ`
function
c25484449
.
initial_effect
(
c
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c36352429.lua
View file @
c91a58f9
--
Vampire Dragon
--
ヴァンパイア,ドラゴン
function
c36352429
.
initial_effect
(
c
)
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c41930553.lua
View file @
c91a58f9
--
Dark Smog
--
\Κ
function
c41930553
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c42752141.lua
View file @
c91a58f9
--
Evolzar Dolkka
--
エヴォルカイザー·ドルカ
function
c42752141
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
c42752141
.
xyzfilter
,
2
)
...
...
script/c42874792.lua
View file @
c91a58f9
--
Wind-Up Rabbit
--
ޥӥå
function
c42874792
.
initial_effect
(
c
)
--remove
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c45178472.lua
View file @
c91a58f9
--
Full House
--
եϥ
function
c45178472
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c4545854.lua
View file @
c91a58f9
--
Xyz Territory
--
エクシーズ·テリトリー
function
c4545854
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c46291010.lua
View file @
c91a58f9
--
Psi-Beast
--
åө`
function
c46291010
.
initial_effect
(
c
)
--remove
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -19,11 +19,10 @@ function c46291010.rmtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
c46291010
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsFacedown
()
or
not
c
:
IsRelateToEffect
(
e
)
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c46291010
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
c
:
GetLevel
())
local
tc
=
g
:
GetFirst
()
if
tc
then
if
tc
and
c
:
IsRelateToEffect
(
e
)
and
c
:
IsFaceup
()
then
Duel
.
Remove
(
tc
,
POS_FACEUP
,
REASON_EFFECT
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
script/c47013502.lua
View file @
c91a58f9
--
Dodger Dragon
--
ܥɡɥ饴
function
c47013502
.
initial_effect
(
c
)
--summon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c50766506.lua
View file @
c91a58f9
--
Ninjitsu Art of Duplication
--
̷ g
function
c50766506
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c51589188.lua
View file @
c91a58f9
--
Photon Trident
--
フォトン,トライデント
function
c51589188
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c52601736.lua
View file @
c91a58f9
--
Inzektor Hopper
--
׳װC ۥåѩ`
function
c52601736
.
initial_effect
(
c
)
--equip
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c52823314.lua
View file @
c91a58f9
--
Tour Bus From the Underworld
--
ħkFФХ
function
c52823314
.
initial_effect
(
c
)
--to deck
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c57902193.lua
View file @
c91a58f9
--
Painful Return
--
iܞ
function
c57902193
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_TOHAND
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
)
...
...
@@ -14,15 +13,15 @@ end
function
c57902193
.
filter
(
c
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
end
function
c57902193
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsControler
(
tp
)
and
chkc
:
IsLocation
(
LOCATION_GRAVE
)
and
c57902193
.
filter
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
c57902193
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
1
-
tp
,
HINTMSG_ATOHAND
)
Duel
.
SelectTarget
(
1
-
tp
,
c57902193
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
function
c57902193
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c57902193
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_GRAVE
)
end
function
c57902193
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
tc
:
IsRelateToEffect
(
e
)
then
Duel
.
Hint
(
HINT_SELECTMSG
,
1
-
tp
,
HINTMSG_ATOHAND
)
local
g
=
Duel
.
SelectMatchingCard
(
1
-
tp
,
c57902193
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
if
tc
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
...
...
@@ -35,5 +34,7 @@ function c57902193.activate(e,tp,eg,ep,ev,re,r,rp)
end
function
c57902193
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
SendtoHand
(
e
:
GetHandler
(),
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
e
:
GetHandler
())
if
e
:
GetHandler
():
IsLocation
(
LOCATION_HAND
)
then
Duel
.
ConfirmCards
(
1
-
tp
,
e
:
GetHandler
())
end
end
script/c68124775.lua
View file @
c91a58f9
--
Orient Dragon
--
ꥨȡɥ饴
function
c68124775
.
initial_effect
(
c
)
--synchro summon
aux
.
AddSynchroProcedure
(
c
,
nil
,
aux
.
NonTuner
(
nil
),
1
)
...
...
script/c69846323.lua
View file @
c91a58f9
--
Piercing Moray
--
ĥĥ
function
c69846323
.
initial_effect
(
c
)
--atkup
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c72563071.lua
View file @
c91a58f9
--
Psychic Shockwave
--
サイコ·ショックウェーブ
function
c72563071
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c73285669.lua
View file @
c91a58f9
--
Gladiator Beast Essedarii
--
L
function
c73285669
.
initial_effect
(
c
)
--fusion material
c
:
EnableReviveLimit
()
...
...
script/c73417207.lua
View file @
c91a58f9
--
Mara of the Nordic Alfar
--
O둥ȥ`
function
c73417207
.
initial_effect
(
c
)
--synchro custom
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c79279397.lua
View file @
c91a58f9
--D
-Boyz
--D
ܩ`
function
c79279397
.
initial_effect
(
c
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c80495985.lua
View file @
c91a58f9
--
Photon Sabre Tiger
--
フォトン·サーベルタイガー
function
c80495985
.
initial_effect
(
c
)
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c87973893.lua
View file @
c91a58f9
--
Inzektor Axe - Zektahawk
--
樅單蚾及藹葦 未弁玄石奈弁
function
c87973893
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c88095331.lua
View file @
c91a58f9
--
Evoltile Najasho
--
ɡʥϥ
function
c88095331
.
initial_effect
(
c
)
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -6,7 +6,7 @@ function c88095331.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_TRIGGER_O
+
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EVENT_RELEASE
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
+
EFFECT_FLAG_DAMAGE_STEP
)
e1
:
SetCondition
(
c88095331
.
condition
)
e1
:
SetTarget
(
c88095331
.
target
)
e1
:
SetOperation
(
c88095331
.
operation
)
...
...
script/c93396832.lua
View file @
c91a58f9
--
Smashing Horn
--
½Çµ
ѳZ¤
function
c93396832
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c93717133.lua
View file @
c91a58f9
...
...
@@ -16,6 +16,7 @@ function c93717133.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_QUICK_O
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e2
:
SetHintTiming
(
TIMING_BATTLE_PHASE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetCondition
(
c93717133
.
rmcon
)
e2
:
SetTarget
(
c93717133
.
rmtg
)
...
...
@@ -37,8 +38,8 @@ function c93717133.rmtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if
chkc
then
return
false
end
local
a
=
Duel
.
GetAttacker
()
local
d
=
Duel
.
GetAttackTarget
()
if
chk
==
0
then
return
(
a
==
e
:
GetHandler
()
and
d
and
d
:
IsCanBeEffectTarget
(
e
)
and
a
:
IsAbleToRemove
()
and
d
:
IsAbleToRemove
())
or
(
d
==
e
:
GetHandler
()
and
a
:
IsCanBeEffectTarget
(
e
)
and
a
:
IsAbleToRemove
()
and
d
:
IsAbleToRemove
())
end
if
chk
==
0
then
return
(
a
==
e
:
GetHandler
()
and
d
and
d
:
Is
OnField
()
and
d
:
Is
CanBeEffectTarget
(
e
)
and
a
:
IsAbleToRemove
()
and
d
:
IsAbleToRemove
())
or
(
d
==
e
:
GetHandler
()
and
a
:
Is
OnField
()
and
a
:
Is
CanBeEffectTarget
(
e
)
and
a
:
IsAbleToRemove
()
and
d
:
IsAbleToRemove
())
end
if
a
==
e
:
GetHandler
()
then
Duel
.
SetTargetCard
(
d
)
else
Duel
.
SetTargetCard
(
a
)
end
local
g
=
Group
.
FromCards
(
a
,
d
)
...
...
script/c94119480.lua
View file @
c91a58f9
--
Adreus, Keeper of Armageddon
--
皺挸及忐荾氪失玉伊它旦
function
c94119480
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterEqualFunction
(
Card
.
GetLevel
,
5
),
2
)
...
...
script/c95231062.lua
View file @
c91a58f9
--
Lost Blue Breaker
--
ロスト·ブルー·ブレイカー
function
c95231062
.
initial_effect
(
c
)
--destroy
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c96457619.lua
View file @
c91a58f9
--
Xyz Veil
--
``
function
c96457619
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c9780364.lua
View file @
c91a58f9
--
Gladiator Taming
--
L{
function
c9780364
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c99212922.lua
View file @
c91a58f9
--
White Dragon Ninja
--
o
function
c99212922
.
initial_effect
(
c
)
--spsummon limit
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
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