Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
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
syntax_j
mycard
Commits
4fada0a9
Commit
4fada0a9
authored
Oct 18, 2016
by
wudizhanche1000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更改程序列表
parent
19c6546c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2176 additions
and
324 deletions
+2176
-324
app/app-detail.component.ts
app/app-detail.component.ts
+22
-21
app/apps.component.ts
app/apps.component.ts
+0
-1
apps.json
apps.json
+2154
-302
No files found.
app/app-detail.component.ts
View file @
4fada0a9
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
'
./apps.service
'
import
{
RoutingService
}
from
'
./routing.service
'
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
'
./apps.service
'
import
{
RoutingService
}
from
'
./routing.service
'
import
{
App
}
from
"
./app
"
;
declare
var
process
;
...
...
@@ -19,8 +19,9 @@ export class AppDetailComponent {
spawn
=
window
[
'
System
'
].
_nodeRequire
(
'
child_process
'
).
spawn
;
path
=
window
[
'
System
'
].
_nodeRequire
(
'
path
'
);
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
}
_currentApp
;
get
currentApp
():
App
{
return
this
.
appsService
.
searchApp
(
this
.
routingService
.
app
);
...
...
@@ -28,7 +29,7 @@ export class AppDetailComponent {
_name
;
get
name
()
{
if
(
this
.
currentApp
)
{
if
(
this
.
currentApp
)
{
return
this
.
currentApp
.
name
[
this
.
currentApp
.
locales
[
0
]];
}
return
"
Loading
"
;
...
...
@@ -42,8 +43,8 @@ export class AppDetailComponent {
_news
;
get
news
()
{
if
(
this
.
currentApp
)
{
if
(
this
.
currentApp
.
news
.
length
>
0
)
{
if
(
this
.
currentApp
)
{
if
(
this
.
currentApp
.
news
.
length
>
0
)
{
return
this
.
currentApp
.
news
;
}
}
...
...
@@ -63,15 +64,15 @@ export class AppDetailComponent {
get
mods
()
{
let
contains
=
[
"
optional
"
,
"
language
"
,
"
emulator
"
];
if
(
this
.
currentApp
)
{
if
(
this
.
currentApp
.
references
[
process
.
platform
]
&&
this
.
currentApp
.
references
[
process
.
platform
].
length
>
0
)
{
if
(
this
.
currentApp
)
{
if
(
this
.
currentApp
.
references
[
process
.
platform
]
&&
this
.
currentApp
.
references
[
process
.
platform
].
length
>
0
)
{
let
refs
=
this
.
currentApp
.
references
[
process
.
platform
];
refs
=
refs
.
filter
((
ref
)
=>
{
refs
=
refs
.
filter
((
ref
)
=>
{
return
contains
.
includes
(
ref
.
type
);
});
refs
=
refs
.
map
((
ref
)
=>
{
refs
=
refs
.
map
((
ref
)
=>
{
let
tmp
=
Object
.
create
(
ref
);
switch
(
tmp
.
type
)
{
switch
(
tmp
.
type
)
{
case
"
optional
"
:
tmp
.
type
=
"
选项
"
;
break
;
...
...
@@ -92,10 +93,10 @@ export class AppDetailComponent {
}
checkInstall
(
id
):
boolean
{
if
(
this
.
appsService
.
searchApp
(
id
))
{
if
(
this
.
appsService
.
searchApp
(
id
).
local
.
path
)
{
if
(
this
.
appsService
.
searchApp
(
id
))
{
let
local
=
this
.
appsService
.
searchApp
(
id
).
local
;
if
(
local
&&
local
.
path
)
{
return
true
;
}
}
...
...
@@ -105,7 +106,7 @@ export class AppDetailComponent {
install
(
id
)
{
let
uri
=
this
.
appsService
.
searchApp
(
id
).
download
[
process
.
platform
];
console
.
log
(
process
.
platform
);
if
(
uri
)
{
if
(
uri
)
{
this
.
appsService
.
download
(
id
,
uri
);
}
else
{
console
.
log
(
"
lost download uri!
"
);
...
...
@@ -117,8 +118,8 @@ export class AppDetailComponent {
installSubmit
(
theForm
)
{
console
.
log
(
theForm
);
this
.
install
(
this
.
routingService
.
app
);
for
(
let
mod
in
this
.
appsService
.
installConfig
.
mods
)
{
if
(
this
.
appsService
.
installConfig
.
mods
[
mod
])
{
for
(
let
mod
in
this
.
appsService
.
installConfig
.
mods
)
{
if
(
this
.
appsService
.
installConfig
.
mods
[
mod
])
{
this
.
install
(
mod
);
}
}
...
...
@@ -132,6 +133,7 @@ export class AppDetailComponent {
this
.
appsService
.
installConfig
.
installDir
=
dir
[
0
];
return
dir
[
0
];
}
openDir
(
id
)
{
this
.
electron
.
remote
.
shell
.
showItemInFolder
(
this
.
appsService
.
searchApp
(
id
).
local
.
path
);
}
...
...
@@ -147,9 +149,9 @@ export class AppDetailComponent {
let
open
=
''
;
let
openId
=
this
.
appsService
.
searchApp
(
id
).
actions
[
process
.
platform
][
"
main
"
].
open
;
if
(
openId
)
{
if
(
openId
)
{
this
.
appsService
.
searchApp
(
openId
).
actions
[
process
.
platform
][
"
main
"
].
execute
;
if
(
this
.
checkInstall
(
openId
))
{
if
(
this
.
checkInstall
(
openId
))
{
open
=
this
.
path
.
join
(
this
.
appsService
.
searchApp
(
openId
).
local
.
path
,
this
.
appsService
.
searchApp
(
openId
).
actions
[
process
.
platform
][
"
main
"
].
execute
);
args
.
push
(
execute
);
}
else
{
...
...
@@ -180,5 +182,4 @@ export class AppDetailComponent {
}
}
app/apps.component.ts
View file @
4fada0a9
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
'
./apps.service
'
import
{
RoutingService
}
from
'
./routing.service
'
import
{
App
}
from
"
./app
"
;
@
Component
({
selector
:
'
apps
'
,
...
...
apps.json
View file @
4fada0a9
[
{
"id"
:
"th105"
,
"name"
:
{
"zh-CN"
:
"th07"
},
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
},
"open"
:
"wine"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"
id"
:
"th06
"
,
"
type"
:
"emulator
"
"
type"
:
"emulator
"
,
"
id"
:
"th06
"
},
{
"
id"
:
"th12_mod1
"
,
"
type"
:
"language
"
"
type"
:
"language
"
,
"
id"
:
"th12_mod1
"
},
{
"
id"
:
"wine
"
,
"
type"
:
"emulator
"
"
type"
:
"emulator
"
,
"
id"
:
"wine
"
}
]
},
"locales"
:
[
"zh-CN"
],
"download"
:
{
"
darwin"
:
"http://thief.mycard.moe/metalinks/th07
.meta4"
,
"
win32"
:
"http://thief.mycard.moe/metalinks/th07
.meta4"
"
win32"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW
.meta4"
,
"
darwin"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW
.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th06-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6
\u
8bed
\u
8a00
\u
5305(
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"id"
:
"th11"
,
"name"
:
{
"zh-CN"
:
"地灵殿"
},
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"
th12
desc"
"zh-CN"
:
"
fxt
desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"id"
:
"th105"
,
"type"
:
"optional"
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"
id"
:
"th12_mod1
"
,
"
type"
:
"languag
e"
"
type"
:
"emulator
"
,
"
id"
:
"win
e"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th06"
,
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"news"
:
[],
"tags"
:
[
"STG"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
"/foo/bar"
,
"version"
:
"10.3"
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6"
}
},
{
"id"
:
"th12_mod1"
,
"name"
:
{
"zh-CN"
:
"th12_mod1"
},
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"
th12
desc"
"zh-CN"
:
"
fxt
desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"language
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"
darwin
"
:
{
"
win32
"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{
"darwin"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
},
"news"
:
[],
"tags"
:
[
"STG"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
"10.3"
}
},
{
"id"
:
"wine"
,
"name"
:
{
"zh-CN"
:
"wine"
},
"description"
:
{
"zh-CN"
:
"th12 desc"
},
"author"
:
"ZUN"
,
"homepage"
:
"http://www.myacg.cc"
,
"category"
:
"emulator"
,
"actions"
:
{
},
"darwin"
:
{
"main"
:
{
"execute"
:
"
win
e"
,
"execute"
:
"
th07.ex
e"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{
"darwin"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
},
"news"
:
[],
"tags"
:
[
"STG"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
"/usr/local/bin"
,
"version"
:
"1.8"
}
},
{
"id"
:
"th06"
,
"name"
:
{
"zh-CN"
:
"th06"
},
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"homepage"
:
"http://www.myacg.cc"
,
"category"
:
"game"
,
"actions"
:
{
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
}
]
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{
"darwin"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
"win32"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th075-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
8403
\u
68a6
\u
60f3
\u
8bed
\u
8a00
\u
5305(
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"id"
:
"sublime"
,
"name"
:
{
"zh-CN"
:
"sublime"
},
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"
Sublime Text
"
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th075"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
"/Applications/Sublime Text.app/Contents/MacOS"
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
8403
\u
68a6
\u
60f3"
}
},
{
"id"
:
"th08"
,
"name"
:
{
"zh-CN"
:
"TH08"
},
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th0
8
.exe"
,
"execute"
:
"th0
7
.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
},
"open"
:
"wine"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"darwin"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
"win32"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th07-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6
\u
8bed
\u
8a00
\u
5305(
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"id"
:
"th09"
,
"name"
:
{
"zh-CN"
:
"东方绯想天"
},
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"homepage"
:
"http://www.myacg.cc"
,
"category"
:
"game"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th07"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6"
}
},
{
"id"
:
"th10"
,
"name"
:
{
"zh-CN"
:
"东方绯想天"
},
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"tags"
:
[
"game"
"id"
:
"th08-lang-zh-CN"
,
"locales"
:
[
"zh-CN"
],
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6
\u
8bed
\u
8a00
\u
5305(
\u
7b80
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"id"
:
"th12"
,
"name"
:
{
"zh-CN"
:
"东方绯想天"
},
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th08"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th095-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"id"
:
"th13"
,
"name"
:
{
"zh-CN"
:
"东方绯想天"
},
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"author"
:
"ZUN"
,
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"
category"
:
"game
"
,
"
author"
:
"ZUN
"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
""
,
"execute"
:
"
th07.exe
"
,
"args"
:
[],
"env"
:
""
,
"open"
:
""
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"references"
:
{},
"locales"
:
[
"zh-CN"
],
"download"
:
{},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
},
"news"
:
[
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"title"
:
"News Title"
,
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th095"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"local"
:
{
"path"
:
""
,
"version"
:
""
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th09-langzh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th09"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th105-lang-zh-CN"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7eef
\u
60f3
\u
5929
\u
8bed
\u
8a00
\u
5305 (
\u
7b80
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th105"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7eef
\u
60f3
\u
5929"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th10-lang-zh-CN-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th10-lang-zh-CN-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th10-lang-zh-CN-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
98ce
\u
795e
\u
5f55
\u
8bed
\u
8a00
\u
5305 (
\u
7b80
\u
4f53
\u
4e2d
\u
6587,
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th10"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
98ce
\u
795e
\u
5f55"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th11-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5730
\u
7075
\u
6bbf
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th11"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5730
\u
7075
\u
6bbf"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th123-lang-zh-CN"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
975e
\u
60f3
\u
5929
\u
5219
\u
8bed
\u
8a00
\u
5305 (
\u
7b80
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th123"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
975e
\u
60f3
\u
5929
\u
5219"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th12-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
661f
\u
83b2
\u
8239
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th12"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
661f
\u
83b2
\u
8239"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th1-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7075
\u
5f02
\u
4f20
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th1"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7075
\u
5f02
\u
4f20"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th2-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
68a6
\u
65f6
\u
7a7a
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th2"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
68a6
\u
65f6
\u
7a7a"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th3-lang-zh-TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5c01
\u
9b54
\u
5f55
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th3"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5c01
\u
9b54
\u
5f55"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th4-lang-zh_TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5e7b
\u
60f3
\u
4e61
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th4"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5e7b
\u
60f3
\u
4e61"
}
},
{
"category"
:
"lang"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th5-lang-zh_TW"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
602a
\u
7eee
\u
8c08
\u
8bed
\u
8a00
\u
5305 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
},
{
"category"
:
"game"
,
"description"
:
{
"zh-CN"
:
"fxt desc"
},
"tags"
:
[
"game"
],
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"actions"
:
{
"win32"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
},
"darwin"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
},
"version"
:
{
"darwin"
:
"1.06"
},
"references"
:
{
"win32"
:
[],
"darwin"
:
[
{
"type"
:
"emulator"
,
"id"
:
"th06"
},
{
"type"
:
"language"
,
"id"
:
"th12_mod1"
},
{
"type"
:
"emulator"
,
"id"
:
"wine"
}
]
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
},
"news"
:
[
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
},
{
"url"
:
"#"
,
"image"
:
"http://www.myacg.cc/wp-content/uploads/2000/01/newBanner51.jpg"
,
"title"
:
"News Title"
}
],
"id"
:
"th5"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
602a
\u
7eee
\u
8c08"
}
}
]
\ No newline at end of file
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