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
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
YGOPRO-520DIY
ygopro
Commits
3daf86d6
Commit
3daf86d6
authored
Mar 28, 2014
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: gframe, damage_step
parent
e3a9fa51
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
20 deletions
+27
-20
gframe/deck_con.cpp
gframe/deck_con.cpp
+2
-1
gframe/game.cpp
gframe/game.cpp
+2
-2
script/c21454943.lua
script/c21454943.lua
+5
-5
script/c41925941.lua
script/c41925941.lua
+2
-1
script/c84389640.lua
script/c84389640.lua
+16
-11
No files found.
gframe/deck_con.cpp
View file @
3daf86d6
...
...
@@ -273,14 +273,15 @@ bool DeckBuilder::OnEvent(const irr::SEvent& event) {
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1056
),
TYPE_MONSTER
+
TYPE_FUSION
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1057
),
TYPE_MONSTER
+
TYPE_RITUAL
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1063
),
TYPE_MONSTER
+
TYPE_SYNCHRO
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1075
),
TYPE_MONSTER
+
TYPE_SYNCHRO
+
TYPE_TUNER
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1073
),
TYPE_MONSTER
+
TYPE_XYZ
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1074
),
TYPE_MONSTER
+
TYPE_PENDULUM
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1062
),
TYPE_MONSTER
+
TYPE_TUNER
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1061
),
TYPE_MONSTER
+
TYPE_DUAL
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1060
),
TYPE_MONSTER
+
TYPE_UNION
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1059
),
TYPE_MONSTER
+
TYPE_SPIRIT
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1071
),
TYPE_MONSTER
+
TYPE_FLIP
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1072
),
TYPE_MONSTER
+
TYPE_TOON
);
mainGame
->
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1074
),
TYPE_MONSTER
+
TYPE_PENDULUM
);
break
;
}
case
2
:
{
...
...
gframe/game.cpp
View file @
3daf86d6
...
...
@@ -384,7 +384,7 @@ bool Game::Initialize() {
cbCardType
->
addItem
(
dataManager
.
GetSysString
(
1312
));
cbCardType
->
addItem
(
dataManager
.
GetSysString
(
1313
));
cbCardType
->
addItem
(
dataManager
.
GetSysString
(
1314
));
cbCardType2
=
env
->
addComboBox
(
rect
<
s32
>
(
1
30
,
3
,
19
0
,
23
),
wFilter
,
-
1
);
cbCardType2
=
env
->
addComboBox
(
rect
<
s32
>
(
1
25
,
3
,
20
0
,
23
),
wFilter
,
-
1
);
cbCardType2
->
addItem
(
dataManager
.
GetSysString
(
1310
),
0
);
env
->
addStaticText
(
dataManager
.
GetSysString
(
1315
),
rect
<
s32
>
(
205
,
5
,
280
,
25
),
false
,
false
,
wFilter
);
cbLimit
=
env
->
addComboBox
(
rect
<
s32
>
(
260
,
3
,
390
,
23
),
wFilter
,
-
1
);
...
...
@@ -402,7 +402,7 @@ bool Game::Initialize() {
env
->
addStaticText
(
dataManager
.
GetSysString
(
1321
),
rect
<
s32
>
(
10
,
51
,
70
,
71
),
false
,
false
,
wFilter
);
cbRace
=
env
->
addComboBox
(
rect
<
s32
>
(
60
,
49
,
190
,
69
),
wFilter
,
-
1
);
cbRace
->
addItem
(
dataManager
.
GetSysString
(
1310
),
0
);
for
(
int
filter
=
0x1
;
filter
!=
0x
4
00000
;
filter
<<=
1
)
for
(
int
filter
=
0x1
;
filter
!=
0x
8
00000
;
filter
<<=
1
)
cbRace
->
addItem
(
dataManager
.
FormatRace
(
filter
),
filter
);
env
->
addStaticText
(
dataManager
.
GetSysString
(
1322
),
rect
<
s32
>
(
205
,
28
,
280
,
48
),
false
,
false
,
wFilter
);
ebAttack
=
env
->
addEditBox
(
L""
,
rect
<
s32
>
(
260
,
26
,
340
,
46
),
true
,
wFilter
);
...
...
script/c21454943.lua
View file @
3daf86d6
...
...
@@ -39,10 +39,10 @@ function c21454943.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if
maxpay
<
def
then
maxpay
=
def
end
if
maxpay
<
lp
then
lp
=
maxpay
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
21454943
,
1
))
if
lp
>
500
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
,
400
,
500
)
elseif
lp
>
400
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
,
400
)
elseif
lp
>
300
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
)
elseif
lp
>
200
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
)
if
lp
>
=
500
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
,
400
,
500
)
elseif
lp
>
=
400
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
,
400
)
elseif
lp
>
=
300
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
,
300
)
elseif
lp
>
=
200
then
alp
=
Duel
.
AnnounceNumber
(
tp
,
100
,
200
)
end
Duel
.
PayLPCost
(
tp
,
alp
)
e
:
SetLabel
(
-
alp
)
...
...
@@ -57,7 +57,7 @@ end
function
c21454943
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
tc
=
Duel
.
GetFirstTarget
()
local
c
=
e
:
GetHandler
()
if
not
tc
or
not
tc
:
IsRelateToEffect
(
e
)
or
not
tc
:
Is
RelateToBattle
()
or
not
tc
:
Is
Controler
(
1
-
tp
)
then
return
end
if
not
tc
or
not
tc
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsControler
(
1
-
tp
)
then
return
end
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
...
...
script/c41925941.lua
View file @
3daf86d6
...
...
@@ -35,6 +35,7 @@ function c41925941.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if
maxpay
<
def
then
maxpay
=
def
end
if
maxpay
<
maxc
then
maxc
=
maxpay
end
if
maxc
>
5000
then
maxc
=
5000
end
maxc
=
math.floor
(
maxc
/
100
)
*
100
local
t
=
{}
for
i
=
1
,
maxc
/
100
do
t
[
i
]
=
i
*
100
...
...
@@ -52,7 +53,7 @@ end
function
c41925941
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
bc
=
Duel
.
GetFirstTarget
()
local
val
=
e
:
GetLabel
()
if
not
bc
or
not
bc
:
IsRelateToEffect
(
e
)
or
not
bc
:
Is
RelateToBattle
()
or
not
bc
:
Is
Controler
(
1
-
tp
)
then
return
end
if
not
bc
or
not
bc
:
IsRelateToEffect
(
e
)
or
not
bc
:
IsControler
(
1
-
tp
)
then
return
end
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
...
...
script/c84389640.lua
View file @
3daf86d6
...
...
@@ -16,6 +16,7 @@ function c84389640.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
+
EFFECT_FLAG_DAMAGE_STEP
)
e2
:
SetCondition
(
c84389640
.
condition
)
e2
:
SetCost
(
c84389640
.
cost
)
e2
:
SetTarget
(
c84389640
.
target
)
e2
:
SetOperation
(
c84389640
.
operation
)
c
:
RegisterEffect
(
e2
)
end
...
...
@@ -52,16 +53,20 @@ function c84389640.cost(e,tp,eg,ep,ev,re,r,rp,chk)
e
:
SetLabel
(
-
pay
)
e
:
GetHandler
():
RegisterFlagEffect
(
84389640
,
RESET_PHASE
+
RESET_DAMAGE
,
0
,
1
)
end
function
c84389640
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
tc
=
e
:
GetLabelObject
()
if
chkc
then
return
chkc
==
tc
end
if
chk
==
0
then
return
tc
:
IsCanBeEffectTarget
(
e
)
end
Duel
.
SetTargetCard
(
tc
)
end
function
c84389640
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
not
e
:
GetHandler
():
IsRelateToEffect
(
e
)
then
return
end
local
bc
=
e
:
GetLabelObject
()
if
bc
:
IsRelateToBattle
()
and
bc
:
IsFaceup
()
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetOwnerPlayer
(
tp
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
)
e1
:
SetValue
(
e
:
GetLabel
())
bc
:
RegisterEffect
(
e1
)
end
local
bc
=
Duel
.
GetFirstTarget
()
if
not
e
:
GetHandler
():
IsRelateToEffect
(
e
)
or
not
bc
or
not
bc
:
IsRelateToEffect
(
e
)
or
not
bc
:
IsControler
(
1
-
tp
)
then
return
end
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetOwnerPlayer
(
tp
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
)
e1
:
SetValue
(
e
:
GetLabel
())
bc
:
RegisterEffect
(
e1
)
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