Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile-Cn-Ko-En
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
fallenstardust
YGOMobile-Cn-Ko-En
Commits
0c121a26
Commit
0c121a26
authored
Sep 11, 2019
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync ocgcore/libcard.cpp
icon of chatroom
parent
721bdf2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
Classes/ocgcore/libcard.cpp
Classes/ocgcore/libcard.cpp
+16
-4
mobile/src/main/res/menu/nav_mycard_menu.xml
mobile/src/main/res/menu/nav_mycard_menu.xml
+1
-1
No files found.
Classes/ocgcore/libcard.cpp
View file @
0c121a26
...
...
@@ -584,14 +584,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
)
{
...
...
@@ -608,14 +614,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
)
{
...
...
mobile/src/main/res/menu/nav_mycard_menu.xml
View file @
0c121a26
...
...
@@ -6,7 +6,7 @@
android:title=
"@string/mc_home"
/>
<item
android:id=
"@+id/action_chat"
android:icon=
"
?android:attr/textSelectHandleLeft
"
android:icon=
"
@drawable/ic_send_black_24dp
"
android:title=
"@string/mc_chat"
/>
<item
android:id=
"@+id/action_bbs"
...
...
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