Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
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
hex
ygopro2
Commits
9ec2549c
Commit
9ec2549c
authored
Sep 27, 2025
by
hex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新2025.10表
parent
716c4f44
Pipeline
#40755
failed
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
38 deletions
+38
-38
.gitlab-ci.yml
.gitlab-ci.yml
+5
-5
Assets/SibylSystem/Program.cs
Assets/SibylSystem/Program.cs
+3
-3
Assets/StreamingAssets/ygopro2-data.zip
Assets/StreamingAssets/ygopro2-data.zip
+0
-0
ProjectSettings/ProjectSettings.asset
ProjectSettings/ProjectSettings.asset
+1
-1
UserSettings/Layouts/default-2021.dwlt
UserSettings/Layouts/default-2021.dwlt
+29
-29
No files found.
.gitlab-ci.yml
View file @
9ec2549c
...
...
@@ -27,13 +27,13 @@
# # - ygopro2-data/picture
# script:
# - mkdir -p ygopro2-data/cdb ygopro2-data/pack # ygopro2-data/picture
# - wget -O ygopro2-data/cdb/cards.cdb https://cdn
02.moecube.com:444/koishipro/ygopro-database/zh-CN
/cards.cdb
# - wget -O ygopro2-data/cdb/lflist.conf https://cdn
02.moecube.com:444/koishipro/contents
/lflist.conf
# - wget -O ygopro2-data/cdb/strings.conf https://cdn
02.moecube.com:444/koishipro/ygopro-database/zh-CN
/strings.conf
# - wget -O ygopro2-data/cdb/cards.cdb https://cdn
tx.moecube.com/koishipro/content/
/cards.cdb
# - wget -O ygopro2-data/cdb/lflist.conf https://cdn
tx.moecube.com/koishipro/content
/lflist.conf
# - wget -O ygopro2-data/cdb/strings.conf https://cdn
tx.moecube.com/koishipro/content
/strings.conf
# - git clone --depth=1 https://code.mycard.moe/mycard/ygopro-starter-pack
# - mv ygopro-starter-pack/deck ygopro2-data/
# - wget -O ygopro2-data/pack/pack.db https://cdn
02.moecube.com:444
/ygopro-card-list/pack.db
# #- wget -O images.zip https://cdn
02.moecube.com:444
/images/ygopro-images-zh-CN.zip
# - wget -O ygopro2-data/pack/pack.db https://cdn
tx.moecube.com
/ygopro-card-list/pack.db
# #- wget -O images.zip https://cdn
tx.moecube.com
/images/ygopro-images-zh-CN.zip
# # - 7z x -y -oygopro2-data/picture/card images.zip
# make_data_archive:
...
...
Assets/SibylSystem/Program.cs
View file @
9ec2549c
...
...
@@ -599,7 +599,7 @@ public class Program : MonoBehaviour
bool
lflistUpdated
=
false
;
bool
stringsUpdated
=
false
;
// 1. 下载 cards.cdb
string
cardsUrl
=
"https://cdntx.moecube.com/koishipro/
ygopro-database/zh-CN
/cards.cdb"
;
string
cardsUrl
=
"https://cdntx.moecube.com/koishipro/
content
/cards.cdb"
;
string
cardsPath
=
Path
.
Combine
(
dbDir
,
"cards.cdb"
);
yield
return
StartCoroutine
(
UnityFileDownloader
.
DownloadFileWithHeadCheck
(
...
...
@@ -617,7 +617,7 @@ public class Program : MonoBehaviour
);
// 2. 下载 lflist.conf
string
lflistUrl
=
"https://cdntx.moecube.com/koishipro/
ygopro-database/zh-CN
/lflist.conf"
;
string
lflistUrl
=
"https://cdntx.moecube.com/koishipro/
content
/lflist.conf"
;
string
lflistPath
=
Path
.
Combine
(
dbDir
,
"lflist.conf"
);
yield
return
StartCoroutine
(
UnityFileDownloader
.
DownloadFileWithHeadCheck
(
...
...
@@ -635,7 +635,7 @@ public class Program : MonoBehaviour
);
// 3. 下载 strings.conf
string
stringsUrl
=
"https://cdntx.moecube.com/koishipro/
ygopro-database/zh-CN
/strings.conf"
;
"https://cdntx.moecube.com/koishipro/
content
/strings.conf"
;
string
stringsPath
=
Path
.
Combine
(
dbDir
,
"strings.conf"
);
yield
return
StartCoroutine
(
UnityFileDownloader
.
DownloadFileWithHeadCheck
(
...
...
Assets/StreamingAssets/ygopro2-data.zip
View file @
9ec2549c
No preview for this file type
ProjectSettings/ProjectSettings.asset
View file @
9ec2549c
...
...
@@ -17,7 +17,7 @@ PlayerSettings:
defaultCursor
:
{
fileID
:
0
}
cursorHotspot
:
{
x
:
0
,
y
:
0
}
m_SplashScreenBackgroundColor
:
{
r
:
0.13725491
,
g
:
0.12156863
,
b
:
0.1254902
,
a
:
1
}
m_ShowUnitySplashScreen
:
1
m_ShowUnitySplashScreen
:
0
m_ShowUnitySplashLogo
:
0
m_SplashScreenOverlayOpacity
:
1
m_SplashScreenAnimation
:
1
...
...
UserSettings/Layouts/default-2021.dwlt
View file @
9ec2549c
...
...
@@ -119,7 +119,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
300
,
y
:
200
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
controlID
:
41
controlID
:
18
---
!u!114
&6
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -144,7 +144,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
controlID
:
42
controlID
:
19
---
!u!114
&7
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -169,7 +169,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
200
,
y
:
100
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
controlID
:
43
controlID
:
20
---
!u!114
&8
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -233,7 +233,7 @@ MonoBehaviour:
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
ProjectBrowser
m_Name
:
ConsoleWindow
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
...
...
@@ -242,14 +242,14 @@ MonoBehaviour:
y
:
576
width
:
1147
height
:
290
m_MinSize
:
{
x
:
231
,
y
:
27
1
}
m_MaxSize
:
{
x
:
10001
,
y
:
10
021
}
m_ActualView
:
{
fileID
:
1
5
}
m_MinSize
:
{
x
:
101
,
y
:
12
1
}
m_MaxSize
:
{
x
:
4001
,
y
:
4
021
}
m_ActualView
:
{
fileID
:
1
6
}
m_Panes
:
-
{
fileID
:
15
}
-
{
fileID
:
16
}
m_Selected
:
0
m_LastSelected
:
1
m_Selected
:
1
m_LastSelected
:
0
---
!u!114
&11
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -558,9 +558,9 @@ MonoBehaviour:
m_PlayAudio
:
0
m_AudioPlay
:
0
m_Position
:
m_Target
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Target
:
{
x
:
0
.3683279
,
y
:
-0.19390088
,
z
:
0.078879856
}
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Value
:
{
x
:
0
.3683279
,
y
:
-0.19390088
,
z
:
0.078879856
}
m_RenderMode
:
0
m_CameraMode
:
drawMode
:
0
...
...
@@ -611,9 +611,9 @@ MonoBehaviour:
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_Size
:
m_Target
:
10
m_Target
:
2.1120198
speed
:
2
m_Value
:
10
m_Value
:
2.1120198
m_Ortho
:
m_Target
:
1
speed
:
2
...
...
@@ -671,23 +671,23 @@ MonoBehaviour:
m_SceneHierarchy
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
507cfeff
m_LastClickedID
:
-99248
m_ExpandedIDs
:
567cfeff3093feff04fb
ffff
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
304ceeff804ceeff5050eeff9a2ef1ffea2ef1ffb832f1ffb2daf5ff2edbf5ff52dbf5ff58dbf5ff64dbf5ffecdcf5ff10ddf5ff105cf7ff085ff7ff2062f7ff4462f7ff4a62f7ff5662f7ffcc63f7ffde63f7ff5087f7ff5687f7ff6287f7ffea88f7ffa004f9ffb00af9ffd40af9ffda0af9ffe60af9ff6e0cf9ff4417f9ff1a9ff9ff2ccaf9ff50caf9ff56caf9ff62caf9ffeacbf9ff4e93faff9e93faff6e97faffd898faff2899fafff89cfaff8071fbffda71fbffaa75fbff96f0fcff9cf0fcffa6f0fcff8cf8fcff90b3fdff96b3fdffa0b3fdff86bbfdffaabbfdffbcbbfdff02bdfdff52bdfdff66bdfdff3abefdff8abefdff60c2fdffc643ffffc644ffffd044ffffe844ffff4845ffff5a45ffff6c45ffff58f7ffff7cf7ffff82f7ffff64f8ffff6ef8ffffa4f8fffff2f8ffff04f9ffff16f9ffff28f9ffff3af9fffff8fa
ffff
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_Name
:
trans_setting(Clone)
m_OriginalName
:
trans_setting(Clone)
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_UserData
:
-2162
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_OriginalEventType
:
0
m_IsRenamingFilename
:
0
m_ClientGUIView
:
{
fileID
:
8
}
m_SearchString
:
...
...
@@ -799,23 +799,23 @@ MonoBehaviour:
m_SkipHidden
:
0
m_SearchArea
:
1
m_Folders
:
-
Assets/
old/UiverseAssests/TextMesh Pro
-
Assets/
SibylSystem/Ocgcore
m_Globs
:
[]
m_OriginalText
:
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets/
old/UiverseAssests/TextMesh Pro
-
Assets/
SibylSystem/Ocgcore
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/hexzhou/Workplace/ygopro2_unity2021
m_LockTracker
:
m_IsLocked
:
0
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
31
9
}
m_SelectedIDs
:
10
af0000
m_LastClickedID
:
4481
6
m_ExpandedIDs
:
0000000006af000008af00000aaf00000caf00000eaf000010af000012af0000
28
af000000ca9a3bffffff7f
scrollPos
:
{
x
:
0
,
y
:
115
9
}
m_SelectedIDs
:
0a
af0000
m_LastClickedID
:
4481
0
m_ExpandedIDs
:
0000000006af000008af00000aaf00000caf00000eaf000010af000012af0000
1aaf000026af00004c
af000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
...
...
@@ -870,7 +870,7 @@ MonoBehaviour:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
0
m_HadKeyboardFocusLastEvent
:
1
m_ExpandedInstanceIDs
:
c62300000000000096d2000090d20000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
...
...
@@ -921,7 +921,7 @@ MonoBehaviour:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
6
72
y
:
6
68
width
:
1146
height
:
269
m_ViewDataDictionary
:
{
fileID
:
0
}
...
...
@@ -945,7 +945,7 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Inspector
m_Image
:
{
fileID
:
-
2667387946076563598
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
-
440750813802333266
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
...
...
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