Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-core
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-core
Commits
d047770e
Commit
d047770e
authored
Sep 16, 2019
by
mycard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/purerosefallen/ygopro-core
into 2pick
parents
53649187
e18df9cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
5 deletions
+21
-5
libcard.cpp
libcard.cpp
+16
-4
operations.cpp
operations.cpp
+5
-1
No files found.
libcard.cpp
View file @
d047770e
...
...
@@ -707,14 +707,20 @@ int32 scriptlib::card_get_attack(lua_State *L) {
check_param_count
(
L
,
1
);
check_param
(
L
,
PARAM_TYPE_CARD
,
1
);
card
*
pcard
=
*
(
card
**
)
lua_touserdata
(
L
,
1
);
lua_pushinteger
(
L
,
pcard
->
get_attack
());
int32
atk
=
pcard
->
get_attack
();
if
(
atk
<
0
)
atk
=
0
;
lua_pushinteger
(
L
,
atk
);
return
1
;
}
int32
scriptlib
::
card_get_origin_attack
(
lua_State
*
L
)
{
check_param_count
(
L
,
1
);
check_param
(
L
,
PARAM_TYPE_CARD
,
1
);
card
*
pcard
=
*
(
card
**
)
lua_touserdata
(
L
,
1
);
lua_pushinteger
(
L
,
pcard
->
get_base_attack
());
int32
atk
=
pcard
->
get_base_attack
();
if
(
atk
<
0
)
atk
=
0
;
lua_pushinteger
(
L
,
atk
);
return
1
;
}
int32
scriptlib
::
card_get_text_attack
(
lua_State
*
L
)
{
...
...
@@ -731,14 +737,20 @@ int32 scriptlib::card_get_defense(lua_State *L) {
check_param_count
(
L
,
1
);
check_param
(
L
,
PARAM_TYPE_CARD
,
1
);
card
*
pcard
=
*
(
card
**
)
lua_touserdata
(
L
,
1
);
lua_pushinteger
(
L
,
pcard
->
get_defense
());
int32
def
=
pcard
->
get_defense
();
if
(
def
<
0
)
def
=
0
;
lua_pushinteger
(
L
,
def
);
return
1
;
}
int32
scriptlib
::
card_get_origin_defense
(
lua_State
*
L
)
{
check_param_count
(
L
,
1
);
check_param
(
L
,
PARAM_TYPE_CARD
,
1
);
card
*
pcard
=
*
(
card
**
)
lua_touserdata
(
L
,
1
);
lua_pushinteger
(
L
,
pcard
->
get_base_defense
());
int32
def
=
pcard
->
get_base_defense
();
if
(
def
<
0
)
def
=
0
;
lua_pushinteger
(
L
,
def
);
return
1
;
}
int32
scriptlib
::
card_get_text_defense
(
lua_State
*
L
)
{
...
...
operations.cpp
View file @
d047770e
...
...
@@ -59,7 +59,11 @@ void field::change_chain_effect(uint8 chaincount, int32 rep_op) {
return
;
if
(
chaincount
>
core
.
current_chain
.
size
()
||
chaincount
<
1
)
chaincount
=
core
.
current_chain
.
size
();
core
.
current_chain
[
chaincount
-
1
].
replace_op
=
rep_op
;
chain
&
pchain
=
core
.
current_chain
[
chaincount
-
1
];
pchain
.
replace_op
=
rep_op
;
if
((
pchain
.
triggering_effect
->
type
&
EFFECT_TYPE_ACTIVATE
)
&&
(
pchain
.
triggering_effect
->
handler
->
current
.
location
==
LOCATION_SZONE
))
{
pchain
.
triggering_effect
->
handler
->
set_status
(
STATUS_LEAVE_CONFIRMED
,
TRUE
);
}
}
void
field
::
change_target
(
uint8
chaincount
,
group
*
targets
)
{
if
(
core
.
current_chain
.
size
()
==
0
)
...
...
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