Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts
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
Reinen
ygopro-scripts
Commits
c1fd2144
Commit
c1fd2144
authored
Feb 23, 2021
by
Chrono-Genex
Committed by
GitHub
Feb 23, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Big Evolution Pill (#1571)
parent
5b4b6014
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
c84808313.lua
c84808313.lua
+11
-3
No files found.
c84808313.lua
View file @
c1fd2144
...
@@ -9,12 +9,13 @@ function c84808313.initial_effect(c)
...
@@ -9,12 +9,13 @@ function c84808313.initial_effect(c)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--reduce tribute
--reduce tribute
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
84808313
,
0
))
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_
DECREASE_TRIBUTE
)
e2
:
SetCode
(
EFFECT_
SUMMON_PROC
)
e2
:
SetRange
(
LOCATION_SZONE
)
e2
:
SetRange
(
LOCATION_SZONE
)
e2
:
SetTargetRange
(
LOCATION_HAND
,
0
)
e2
:
SetTargetRange
(
LOCATION_HAND
,
0
)
e2
:
Set
Target
(
aux
.
TargetBoolFunction
(
Card
.
IsRace
,
RACE_DINOSAUR
)
)
e2
:
Set
Condition
(
c84808313
.
ntcon
)
e2
:
Set
Value
(
0x20002
)
e2
:
Set
Target
(
c84808313
.
nttg
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
--remain field
--remain field
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
...
@@ -54,3 +55,10 @@ function c84808313.desop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -54,3 +55,10 @@ function c84808313.desop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Destroy
(
c
,
REASON_RULE
)
Duel
.
Destroy
(
c
,
REASON_RULE
)
end
end
end
end
function
c84808313
.
ntcon
(
e
,
c
,
minc
)
if
c
==
nil
then
return
true
end
return
minc
==
0
and
Duel
.
GetLocationCount
(
c
:
GetControler
(),
LOCATION_MZONE
)
>
0
end
function
c84808313
.
nttg
(
e
,
c
)
return
c
:
IsLevelAbove
(
5
)
and
c
:
IsRace
(
RACE_DINOSAUR
)
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