Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
Commits
d375d0e8
Commit
d375d0e8
authored
Feb 16, 2015
by
nekrozar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
16cd95a3
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
40 additions
and
0 deletions
+40
-0
script/c11609969.lua
script/c11609969.lua
+4
-0
script/c13073850.lua
script/c13073850.lua
+4
-0
script/c37991342.lua
script/c37991342.lua
+4
-0
script/c51194046.lua
script/c51194046.lua
+4
-0
script/c64496451.lua
script/c64496451.lua
+4
-0
script/c65518099.lua
script/c65518099.lua
+4
-0
script/c74605254.lua
script/c74605254.lua
+4
-0
script/c87588741.lua
script/c87588741.lua
+4
-0
script/c90885155.lua
script/c90885155.lua
+4
-0
script/c91907707.lua
script/c91907707.lua
+4
-0
No files found.
script/c11609969.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c11609969.initial_effect(c)
e2
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c11609969
.
splimcon
)
e2
:
SetTarget
(
c11609969
.
splimit
)
c
:
RegisterEffect
(
e2
)
--scale change
...
...
@@ -41,6 +42,9 @@ function c11609969.initial_effect(c)
e5
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
c
:
RegisterEffect
(
e5
)
end
function
c11609969
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c11609969
.
splimit
(
e
,
c
,
tp
,
sumtp
,
sumpos
)
return
not
c
:
IsSetCard
(
0xaf
)
and
bit
.
band
(
sumtp
,
SUMMON_TYPE_PENDULUM
)
==
SUMMON_TYPE_PENDULUM
end
...
...
script/c13073850.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c13073850.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c13073850
.
splimcon
)
e2
:
SetTarget
(
c13073850
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk up
...
...
@@ -72,6 +73,9 @@ function c13073850.initial_effect(c)
e9
:
SetLabelObject
(
e8
)
c
:
RegisterEffect
(
e9
)
end
function
c13073850
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c13073850
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c37991342.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c37991342.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c37991342
.
splimcon
)
e2
:
SetTarget
(
c37991342
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk down
...
...
@@ -63,6 +64,9 @@ function c37991342.initial_effect(c)
e8
:
SetOperation
(
c37991342
.
desop
)
c
:
RegisterEffect
(
e8
)
end
function
c37991342
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c37991342
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c51194046.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c51194046.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c51194046
.
splimcon
)
e2
:
SetTarget
(
c51194046
.
splimit
)
c
:
RegisterEffect
(
e2
)
--draw
...
...
@@ -52,6 +53,9 @@ function c51194046.initial_effect(c)
Duel
.
RegisterEffect
(
ge3
,
0
)
end
end
function
c51194046
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c51194046
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c64496451.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c64496451.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c64496451
.
splimcon
)
e2
:
SetTarget
(
c64496451
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk up
...
...
@@ -71,6 +72,9 @@ function c64496451.initial_effect(c)
e9
:
SetLabelObject
(
e8
)
c
:
RegisterEffect
(
e9
)
end
function
c64496451
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c64496451
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c65518099.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c65518099.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c65518099
.
splimcon
)
e2
:
SetTarget
(
c65518099
.
splimit
)
c
:
RegisterEffect
(
e2
)
--tohand
...
...
@@ -28,6 +29,9 @@ function c65518099.initial_effect(c)
e3
:
SetOperation
(
c65518099
.
operation
)
c
:
RegisterEffect
(
e3
)
end
function
c65518099
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c65518099
.
splimit
(
e
,
c
,
tp
,
sumtp
,
sumpos
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c74605254.lua
View file @
d375d0e8
...
...
@@ -15,6 +15,7 @@ function c74605254.initial_effect(c)
e2
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c74605254
.
splimcon
)
e2
:
SetTarget
(
c74605254
.
splimit
)
c
:
RegisterEffect
(
e2
)
--scale change
...
...
@@ -42,6 +43,9 @@ function c74605254.initial_effect(c)
e4
:
SetOperation
(
c74605254
.
thop
)
c
:
RegisterEffect
(
e4
)
end
function
c74605254
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c74605254
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
)
return
not
c
:
IsSetCard
(
0xaf
)
and
bit
.
band
(
sumtype
,
SUMMON_TYPE_PENDULUM
)
==
SUMMON_TYPE_PENDULUM
end
...
...
script/c87588741.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c87588741.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c87588741
.
splimcon
)
e2
:
SetTarget
(
c87588741
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk down
...
...
@@ -71,6 +72,9 @@ function c87588741.initial_effect(c)
e9
:
SetLabelObject
(
e8
)
c
:
RegisterEffect
(
e9
)
end
function
c87588741
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c87588741
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c90885155.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c90885155.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c90885155
.
splimcon
)
e2
:
SetTarget
(
c90885155
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk down
...
...
@@ -69,6 +70,9 @@ function c90885155.initial_effect(c)
e9
:
SetLabelObject
(
e8
)
c
:
RegisterEffect
(
e9
)
end
function
c90885155
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c90885155
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
end
...
...
script/c91907707.lua
View file @
d375d0e8
...
...
@@ -14,6 +14,7 @@ function c91907707.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetCondition
(
c91907707
.
splimcon
)
e2
:
SetTarget
(
c91907707
.
splimit
)
c
:
RegisterEffect
(
e2
)
--atk up
...
...
@@ -64,6 +65,9 @@ function c91907707.initial_effect(c)
e8
:
SetOperation
(
c91907707
.
thop
)
c
:
RegisterEffect
(
e8
)
end
function
c91907707
.
splimcon
(
e
)
return
not
e
:
GetHandler
():
IsForbidden
()
end
function
c91907707
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0xaa
)
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