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
75413138
Commit
75413138
authored
May 01, 2022
by
mercury233
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/Fluorohydride/ygopro
into server
parents
b9c3150e
6bd8f12c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
gframe/premake5.lua
gframe/premake5.lua
+4
-1
premake5.lua
premake5.lua
+4
-1
strings.conf
strings.conf
+10
-4
No files found.
gframe/premake5.lua
View file @
75413138
...
@@ -27,6 +27,10 @@ else
...
@@ -27,6 +27,10 @@ else
links
{
"ocgcore"
,
"clzma"
,
"cspmemvfs"
,
LUA_LIB_NAME
,
"sqlite3"
,
"irrlicht"
,
"freetype"
,
"event"
}
links
{
"ocgcore"
,
"clzma"
,
"cspmemvfs"
,
LUA_LIB_NAME
,
"sqlite3"
,
"irrlicht"
,
"freetype"
,
"event"
}
end
end
if
BUILD_IKPMP3
then
links
{
"ikpmp3"
}
end
if
BUILD_EVENT
then
if
BUILD_EVENT
then
includedirs
{
"../event/include"
}
includedirs
{
"../event/include"
}
else
else
...
@@ -73,7 +77,6 @@ end
...
@@ -73,7 +77,6 @@ end
links
{
"irrKlang"
}
links
{
"irrKlang"
}
if
IRRKLANG_PRO
then
if
IRRKLANG_PRO
then
defines
{
"IRRKLANG_STATIC"
}
defines
{
"IRRKLANG_STATIC"
}
links
{
"ikpmp3"
}
filter
{
"not configurations:Debug"
}
filter
{
"not configurations:Debug"
}
libdirs
{
IRRKLANG_PRO_RELEASE_LIB_DIR
}
libdirs
{
IRRKLANG_PRO_RELEASE_LIB_DIR
}
filter
{
"configurations:Debug"
}
filter
{
"configurations:Debug"
}
...
...
premake5.lua
View file @
75413138
...
@@ -50,6 +50,7 @@ newoption { trigger = "irrklang-pro", category = "YGOPro - irrklang - pro", desc
...
@@ -50,6 +50,7 @@ newoption { trigger = "irrklang-pro", category = "YGOPro - irrklang - pro", desc
newoption
{
trigger
=
"no-irrklang-pro"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
}
newoption
{
trigger
=
"no-irrklang-pro"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
}
newoption
{
trigger
=
"irrklang-pro-release-lib-dir"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
,
value
=
"PATH"
}
newoption
{
trigger
=
"irrklang-pro-release-lib-dir"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
,
value
=
"PATH"
}
newoption
{
trigger
=
"irrklang-pro-debug-lib-dir"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
,
value
=
"PATH"
}
newoption
{
trigger
=
"irrklang-pro-debug-lib-dir"
,
category
=
"YGOPro - irrklang - pro"
,
description
=
""
,
value
=
"PATH"
}
newoption
{
trigger
=
'build-ikpmp3'
,
category
=
"YGOPro - irrklang - ikpmp3"
,
description
=
""
}
newoption
{
trigger
=
"winxp-support"
,
category
=
"YGOPro"
,
description
=
""
}
newoption
{
trigger
=
"winxp-support"
,
category
=
"YGOPro"
,
description
=
""
}
newoption
{
trigger
=
"mac-arm"
,
category
=
"YGOPro"
,
description
=
"M1"
}
newoption
{
trigger
=
"mac-arm"
,
category
=
"YGOPro"
,
description
=
"M1"
}
...
@@ -153,6 +154,8 @@ if IRRKLANG_PRO then
...
@@ -153,6 +154,8 @@ if IRRKLANG_PRO then
IRRKLANG_PRO_DEBUG_LIB_DIR
=
GetParam
(
"irrklang-pro-debug-lib-dir"
)
or
"../irrklang/lib/Win32-visualStudio-debug"
IRRKLANG_PRO_DEBUG_LIB_DIR
=
GetParam
(
"irrklang-pro-debug-lib-dir"
)
or
"../irrklang/lib/Win32-visualStudio-debug"
end
end
BUILD_IKPMP3
=
USE_IRRKLANG
and
(
GetParam
(
"build-ikpmp3"
)
or
IRRKLANG_PRO
)
if
GetParam
(
"winxp-support"
)
and
os
.
istarget
(
"windows"
)
then
if
GetParam
(
"winxp-support"
)
and
os
.
istarget
(
"windows"
)
then
WINXP_SUPPORT
=
true
WINXP_SUPPORT
=
true
end
end
...
@@ -249,6 +252,6 @@ end
...
@@ -249,6 +252,6 @@ end
if
BUILD_SQLITE
then
if
BUILD_SQLITE
then
include
"sqlite3"
include
"sqlite3"
end
end
if
USE_IRRKLANG
and
IRRKLANG_PRO
and
not
SERVER_MODE
then
if
BUILD_IKPMP3
and
not
SERVER_MODE
then
include
"ikpmp3"
include
"ikpmp3"
end
end
strings.conf
View file @
75413138
...
@@ -76,8 +76,8 @@
...
@@ -76,8 +76,8 @@
!
system
218
是否使用[%
ls
]的效果代替支付基本分?
!
system
218
是否使用[%
ls
]的效果代替支付基本分?
!
system
219
是否使用[%
ls
]的效果代替取除超量素材?
!
system
219
是否使用[%
ls
]的效果代替取除超量素材?
!
system
220
是否使用[%
ls
]的效果代替取除指示物?
!
system
220
是否使用[%
ls
]的效果代替取除指示物?
!
system
221
是否在[%
ls
]发动[%
ls
]的诱发效果?
!
system
221
是否在[%
ls
]发动[%
ls
]的诱发
类
效果?
!
system
222
是否要发动诱发效果?
!
system
222
是否要发动诱发
类
效果?
!
system
223
稍后将询问其他可以发动的效果。
!
system
223
稍后将询问其他可以发动的效果。
!
system
224
已用正规方法特殊召唤
!
system
224
已用正规方法特殊召唤
!
system
225
叠放于[%
ls
](%
d
)下
!
system
225
叠放于[%
ls
](%
d
)下
...
@@ -644,6 +644,7 @@
...
@@ -644,6 +644,7 @@
!
counter
0
x5f
拼图指示物
!
counter
0
x5f
拼图指示物
!
counter
0
x60
指示物(北极天熊辐射)
!
counter
0
x60
指示物(北极天熊辐射)
!
counter
0
x61
指示物(命运的囚人)
!
counter
0
x61
指示物(命运的囚人)
!
counter
0
x62
指示物(逐渐削减的生命)
#setnames, using tab for comment
#setnames, using tab for comment
!
setname
0
x1
正义盟军
A
・
O
・
J
!
setname
0
x1
正义盟军
A
・
O
・
J
!
setname
0
x2
次世代 ジェネクス
!
setname
0
x2
次世代 ジェネクス
...
@@ -1105,7 +1106,7 @@
...
@@ -1105,7 +1106,7 @@
!
setname
0
x15d
烙印
!
setname
0
x15d
烙印
!
setname
0
x15e
降阶魔法
RDM
!
setname
0
x15e
降阶魔法
RDM
!
setname
0
x15f
战吼 ウォークライ
!
setname
0
x15f
战吼 ウォークライ
!
setname
0
x160
物
质炉 マテリアクトル
!
setname
0
x160
原
质炉 マテリアクトル
!
setname
0
x161
溟界
!
setname
0
x161
溟界
!
setname
0
x162
七音服 ドレミコード
!
setname
0
x162
七音服 ドレミコード
!
setname
0
x163
北极天熊 ベアルクティ
!
setname
0
x163
北极天熊 ベアルクティ
...
@@ -1132,10 +1133,15 @@
...
@@ -1132,10 +1133,15 @@
!
setname
0
x177
海龙神 リバイアサン
!
setname
0
x177
海龙神 リバイアサン
!
setname
0
x178
潜海 シー・ステルス
!
setname
0
x178
潜海 シー・ステルス
!
setname
0
x179
兽带斗神 セリオンズ
!
setname
0
x179
兽带斗神 セリオンズ
!
setname
0
x17a
肆世坏
スケアクロー
!
setname
0
x17a
恐吓爪牙族
スケアクロー
!
setname
0
x17b
野蛮人 バーバリアン
!
setname
0
x17b
野蛮人 バーバリアン
!
setname
0
x17c
漫读使灵
Libromancer
!
setname
0
x17c
漫读使灵
Libromancer
!
setname
0
x17d
群豪 ヴァリアンツ
!
setname
0
x17d
群豪 ヴァリアンツ
!
setname
0
x17e
拉比林斯迷宫 ラビュリンス
!
setname
0
x17e
拉比林斯迷宫 ラビュリンス
!
setname
0
x117e
拉比林斯迷宫欢迎 ウェルカム・ラビュリンス
!
setname
0
x117e
拉比林斯迷宫欢迎 ウェルカム・ラビュリンス
!
setname
0
x17f
神碑
!
setname
0
x17f
神碑
!
setname
0
x180
卫星闪灵 スプライト
!
setname
0
x181
珠泪哀歌族 ティアラメンツ
!
setname
0
x182
春化精
!
setname
0
x183
悠悠 もけもけ
!
setname
0
x184
翼侠 ウィングマン
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