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
56b61486
Commit
56b61486
authored
Oct 20, 2016
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ygopro
parent
a2adc47c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1091 additions
and
1042 deletions
+1091
-1042
app/app-detail.component.html
app/app-detail.component.html
+23
-10
app/app-detail.component.ts
app/app-detail.component.ts
+0
-4
app/apps.service.ts
app/apps.service.ts
+4
-0
app/mycard.module.ts
app/mycard.module.ts
+3
-1
app/ygopro.component.css
app/ygopro.component.css
+0
-0
app/ygopro.component.html
app/ygopro.component.html
+23
-0
app/ygopro.component.ts
app/ygopro.component.ts
+15
-0
apps.json
apps.json
+1023
-1027
No files found.
app/app-detail.component.html
View file @
56b61486
...
@@ -15,12 +15,13 @@
...
@@ -15,12 +15,13 @@
</progress>
</progress>
</div>
</div>
</div>
</div>
<div
*ngIf=
"isInstalled"
>
<div
*ngIf=
"isInstalled
&& (routingService.app != 'ygopro')
"
>
<button
(click)=
"startApp(routingService.app)"
type=
"button"
class=
"btn btn-primary"
>
运行
</button>
<button
(click)=
"startApp(routingService.app)"
type=
"button"
class=
"btn btn-primary"
>
运行
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
设置
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
设置
</button>
<button
(click)=
"
openDir
(routingService.app)"
type=
"button"
class=
"btn btn-secondary"
>
游览本地文件
</button>
<button
(click)=
"
appsService.browse
(routingService.app)"
type=
"button"
class=
"btn btn-secondary"
>
游览本地文件
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
联机
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
联机
</button>
</div>
</div>
<ygopro
*ngIf=
"isInstalled && (routingService.app == 'ygopro')"
></ygopro>
<br>
<br>
...
@@ -65,12 +66,22 @@
...
@@ -65,12 +66,22 @@
<td>
{{'app.' + mod.id + '.name' | translate}}
</td>
<td>
{{'app.' + mod.id + '.name' | translate}}
</td>
<td>
{{mod.type}}
</td>
<td>
{{mod.type}}
</td>
<td
*ngIf=
"checkInstall(mod.id)"
>
<td
*ngIf=
"checkInstall(mod.id)"
>
<button
type=
"button"
class=
"btn btn-danger btn-sm"
>
卸载
</button></td>
<button
type=
"button"
class=
"btn btn-danger btn-sm"
>
卸载
</button>
</td>
<td
*ngIf=
"!checkInstall(mod.id)"
>
<td
*ngIf=
"!checkInstall(mod.id)"
>
<button
*ngIf=
"!appsService.getDownloadInfo(mod.id)"
(click)=
"install(mod.id)"
type=
"button"
class=
"btn btn-primary btn-sm"
>
安装
</button>
<button
*ngIf=
"!appsService.getDownloadInfo(mod.id)"
(click)=
"install(mod.id)"
type=
"button"
<progress
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'active'"
class=
"progress progress-striped progress-animated"
value=
"{{appsService.getDownloadInfo(mod.id).progress}}"
max=
"100"
></progress>
class=
"btn btn-primary btn-sm"
>
安装
<div
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'wait'"
>
等待安装...
</div>
</button>
<div
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'install'"
>
正在安装...
</div>
<progress
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'active'"
class=
"progress progress-striped progress-animated"
value=
"{{appsService.getDownloadInfo(mod.id).progress}}"
max=
"100"
></progress>
<div
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'wait'"
>
等待安装...
</div>
<div
*ngIf=
"appsService.getDownloadInfo(mod.id) && appsService.getDownloadInfo(mod.id).status === 'install'"
>
正在安装...
</div>
</td>
</td>
</tr>
</tr>
</tbody>
</tbody>
...
@@ -84,7 +95,7 @@
...
@@ -84,7 +95,7 @@
{{appsService.tarQueue | json}}
{{appsService.tarQueue | json}}
{{appsService.waitInstallQueue | json}}
{{appsService.waitInstallQueue | json}}
</pre>
</pre>
<button
(click)=
"appsService.doTar()"
>
DOTAR
</button>
<button
(click)=
"appsService.doTar()"
>
DOTAR
</button>
<!-- Modal -->
<!-- Modal -->
<div
class=
"modal fade"
id=
"install-modal"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
<div
class=
"modal fade"
id=
"install-modal"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
...
@@ -103,7 +114,8 @@
...
@@ -103,7 +114,8 @@
<h4>
安装位置
</h4>
<h4>
安装位置
</h4>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
<div
class=
"input-group"
>
<div
class=
"input-group"
>
<input
type=
"text"
[(ngModel)]=
"appsService.installConfig.installDir"
name=
"installDir"
class=
"form-control"
placeholder=
"安装位置"
>
<input
type=
"text"
[(ngModel)]=
"appsService.installConfig.installDir"
name=
"installDir"
class=
"form-control"
placeholder=
"安装位置"
>
<span
class=
"input-group-btn"
>
<span
class=
"input-group-btn"
>
<button
(click)=
"selectDir()"
class=
"btn btn-secondary"
type=
"button"
>
浏览
</button>
<button
(click)=
"selectDir()"
class=
"btn btn-secondary"
type=
"button"
>
浏览
</button>
</span>
</span>
...
@@ -112,7 +124,8 @@
...
@@ -112,7 +124,8 @@
<h4>
快捷方式
</h4>
<h4>
快捷方式
</h4>
<div
class=
"checkbox"
>
<div
class=
"checkbox"
>
<label>
<label>
<input
type=
"checkbox"
[(ngModel)]=
"appsService.installConfig.shortcut.application"
name=
"application"
>
<input
type=
"checkbox"
[(ngModel)]=
"appsService.installConfig.shortcut.application"
name=
"application"
>
创建应用程序快捷方式
创建应用程序快捷方式
</label>
</label>
</div>
</div>
...
...
app/app-detail.component.ts
View file @
56b61486
...
@@ -134,10 +134,6 @@ export class AppDetailComponent {
...
@@ -134,10 +134,6 @@ export class AppDetailComponent {
return
dir
[
0
];
return
dir
[
0
];
}
}
openDir
(
id
)
{
this
.
electron
.
remote
.
shell
.
showItemInFolder
(
this
.
appsService
.
searchApp
(
id
).
local
.
path
);
}
startApp
(
id
)
{
startApp
(
id
)
{
let
execute
=
this
.
path
.
join
(
this
.
appsService
.
searchApp
(
id
).
local
.
path
,
this
.
appsService
.
searchApp
(
id
).
actions
[
process
.
platform
][
"
main
"
].
execute
);
let
execute
=
this
.
path
.
join
(
this
.
appsService
.
searchApp
(
id
).
local
.
path
,
this
.
appsService
.
searchApp
(
id
).
actions
[
process
.
platform
][
"
main
"
].
execute
);
let
args
=
this
.
appsService
.
searchApp
(
id
).
actions
[
process
.
platform
][
"
main
"
].
args
;
let
args
=
this
.
appsService
.
searchApp
(
id
).
actions
[
process
.
platform
][
"
main
"
].
args
;
...
...
app/apps.service.ts
View file @
56b61486
...
@@ -430,4 +430,8 @@ export class AppsService {
...
@@ -430,4 +430,8 @@ export class AppsService {
return
!
1
;
return
!
1
;
return
!
0
return
!
0
}
}
browse
(
id
)
{
this
.
electron
.
remote
.
shell
.
showItemInFolder
(
this
.
searchApp
(
id
).
local
.
path
);
}
}
}
app/mycard.module.ts
View file @
56b61486
...
@@ -13,6 +13,8 @@ import {RosterComponent} from './roster.component';
...
@@ -13,6 +13,8 @@ import {RosterComponent} from './roster.component';
import
{
CandyComponent
}
from
'
./candy.component
'
;
import
{
CandyComponent
}
from
'
./candy.component
'
;
import
{
CommunityComponent
}
from
'
./community.component
'
;
import
{
CommunityComponent
}
from
'
./community.component
'
;
import
{
YGOProComponent
}
from
'
./ygopro.component
'
;
import
{
RoutingService
}
from
'
./routing.service
'
;
import
{
RoutingService
}
from
'
./routing.service
'
;
import
{
AppsService
}
from
'
./apps.service
'
;
import
{
AppsService
}
from
'
./apps.service
'
;
...
@@ -20,7 +22,7 @@ import {TranslateModule} from 'ng2-translate';
...
@@ -20,7 +22,7 @@ import {TranslateModule} from 'ng2-translate';
@
NgModule
({
@
NgModule
({
imports
:
[
BrowserModule
,
FormsModule
,
HttpModule
,
TranslateModule
.
forRoot
()],
imports
:
[
BrowserModule
,
FormsModule
,
HttpModule
,
TranslateModule
.
forRoot
()],
declarations
:
[
MyCardComponent
,
LoginComponent
,
StoreComponent
,
LobbyComponent
,
CommunityComponent
,
AppsComponent
,
AppDetailComponent
,
RosterComponent
,
CandyComponent
],
declarations
:
[
MyCardComponent
,
LoginComponent
,
StoreComponent
,
LobbyComponent
,
CommunityComponent
,
AppsComponent
,
AppDetailComponent
,
RosterComponent
,
CandyComponent
,
YGOProComponent
],
bootstrap
:
[
MyCardComponent
],
bootstrap
:
[
MyCardComponent
],
providers
:
[
RoutingService
,
AppsService
],
providers
:
[
RoutingService
,
AppsService
],
schemas
:
[
NO_ERRORS_SCHEMA
]
schemas
:
[
NO_ERRORS_SCHEMA
]
...
...
app/ygopro.component.css
0 → 100644
View file @
56b61486
app/ygopro.component.html
0 → 100644
View file @
56b61486
<form
class=
"form-inline"
>
<div
class=
"form-group"
>
<label
for=
"exampleSelect1"
>
卡组
</label>
<select
class=
"form-control"
id=
"exampleSelect1"
>
<option>
1
</option>
<option>
2
</option>
<option>
3
</option>
<option>
4
</option>
<option>
5
</option>
</select>
</div>
<button
type=
"submit"
class=
"btn btn-secondary"
>
编辑
</button>
<button
type=
"submit"
class=
"btn btn-secondary"
>
删除
</button>
</form>
<div>
<button
type=
"button"
class=
"btn btn-primary"
>
竞技匹配
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
娱乐匹配
</button>
<!--<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#game-create-modal">创建房间</button>-->
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-list-modal"
>
房间列表
</button>
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-create-windbot"
>
单人模式
</button>
<button
(click)=
"appsService.browse(routingService.app)"
type=
"button"
class=
"btn btn-secondary"
>
浏览本地文件
</button>
</div>
\ No newline at end of file
app/ygopro.component.ts
0 → 100644
View file @
56b61486
/**
* Created by zh99998 on 16/9/2.
*/
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
"
./apps.service
"
;
import
{
RoutingService
}
from
"
./routing.service
"
;
@
Component
({
selector
:
'
ygopro
'
,
templateUrl
:
'
app/ygopro.component.html
'
,
styleUrls
:
[
'
app/ygopro.component.css
'
],
})
export
class
YGOProComponent
{
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
}
}
apps.json
View file @
56b61486
[
[
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[]
"darwin"
:
[]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th06-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th06-lang-zh-TW"
,
"id"
:
"th06-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7ea2
\u
9b54
\u
4e61
\u
8bed
\u
8a00
\u
5305(
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7ea2
\u
9b54
\u
4e61
\u
8bed
\u
8a00
\u
5305(
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th06.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th06"
,
"id"
:
"th06"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7ea2
\u
9b54
\u
4e61"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7ea2
\u
9b54
\u
4e61"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th075-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th075-lang-zh-TW"
,
"id"
:
"th075-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th075.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th075"
,
"id"
:
"th075"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
8403
\u
68a6
\u
60f3"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
8403
\u
68a6
\u
60f3"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th07-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th07-lang-zh-TW"
,
"id"
:
"th07-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th07.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th07"
,
"id"
:
"th07"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5996
\u
5996
\u
68a6"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th08-lang-zh-CN.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th08-lang-zh-CN"
,
"id"
:
"th08-lang-zh-CN"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6c38
\u
591c
\u
6284
\u
8bed
\u
8a00
\u
5305(
\u
7b80
\u
4f53
\u
4e2d
\u
6587)"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6c38
\u
591c
\u
6284
\u
8bed
\u
8a00
\u
5305(
\u
7b80
\u
4f53
\u
4e2d
\u
6587)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th08.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th08"
,
"id"
:
"th08"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6c38
\u
591c
\u
6284"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6c38
\u
591c
\u
6284"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th095-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th095-lang-zh-TW"
,
"id"
:
"th095-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th095.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th095"
,
"id"
:
"th095"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
6587
\u
82b1
\u
5e16"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th09-langzh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th09-langzh-TW"
,
"id"
:
"th09-langzh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2 (
\u
7e41
\u
4f53
\u
4e2d
\u
6587)"
}
}
},
},
{
{
"category"
:
"game"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th09.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th09"
,
"id"
:
"th09"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
82b1
\u
6620
\u
51a2"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th105-lang-zh-CN.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th105-lang-zh-CN"
,
"id"
:
"th105-lang-zh-CN"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th105.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th105"
,
"id"
:
"th105"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7eef
\u
60f3
\u
5929"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7eef
\u
60f3
\u
5929"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th10-lang-zh-CN-zh-TW.meta4"
,
"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"
"darwin"
:
"http://thief.mycard.moe/metalinks/th10-lang-zh-CN-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th10-lang-zh-CN-zh-TW"
,
"id"
:
"th10-lang-zh-CN-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th10.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th10"
,
"id"
:
"th10"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
98ce
\u
795e
\u
5f55"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
98ce
\u
795e
\u
5f55"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th11-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th11-lang-zh-TW"
,
"id"
:
"th11-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th11.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th11"
,
"id"
:
"th11"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5730
\u
7075
\u
6bbf"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5730
\u
7075
\u
6bbf"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th123-lang-zh-CN.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th123-lang-zh-CN"
,
"id"
:
"th123-lang-zh-CN"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th123.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th123"
,
"id"
:
"th123"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
975e
\u
60f3
\u
5929
\u
5219"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
975e
\u
60f3
\u
5929
\u
5219"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th12-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th12-lang-zh-TW"
,
"id"
:
"th12-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th12.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th12"
,
"id"
:
"th12"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
661f
\u
83b2
\u
8239"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
661f
\u
83b2
\u
8239"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th1-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th1-lang-zh-TW"
,
"id"
:
"th1-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th1.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th1"
,
"id"
:
"th1"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7075
\u
5f02
\u
4f20"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
7075
\u
5f02
\u
4f20"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th2-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th2-lang-zh-TW"
,
"id"
:
"th2-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th2.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th2"
,
"id"
:
"th2"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
68a6
\u
65f6
\u
7a7a"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
68a6
\u
65f6
\u
7a7a"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th3-lang-zh-TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th3-lang-zh-TW"
,
"id"
:
"th3-lang-zh-TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th3.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th3"
,
"id"
:
"th3"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5c01
\u
9b54
\u
5f55"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5c01
\u
9b54
\u
5f55"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th4-lang-zh_TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th4-lang-zh_TW"
,
"id"
:
"th4-lang-zh_TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th4.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th4"
,
"id"
:
"th4"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5e7b
\u
60f3
\u
4e61"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
5e7b
\u
60f3
\u
4e61"
}
}
},
},
{
{
"category"
:
"lang"
,
"category"
:
"lang"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th5-lang-zh_TW.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th5-lang-zh_TW"
,
"id"
:
"th5-lang-zh_TW"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"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)"
"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"
,
"category"
:
"game"
,
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"fxt desc"
},
},
"tags"
:
[
"tags"
:
[
"game"
"game"
],
],
"homepage"
:
"http://www.myacg.cc"
,
"homepage"
:
"http://www.myacg.cc"
,
"author"
:
"ZUN"
,
"author"
:
"ZUN"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"th07.exe"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"open"
:
"wine"
,
"env"
:
{
"env"
:
{
"LC_ALL"
:
"ja_JP"
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
}
},
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[
"darwin"
:
[
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"th06"
"id"
:
"th06"
},
},
{
{
"type"
:
"language"
,
"type"
:
"language"
,
"id"
:
"th12_mod1"
"id"
:
"th12_mod1"
},
},
{
{
"type"
:
"emulator"
,
"type"
:
"emulator"
,
"id"
:
"wine"
"id"
:
"wine"
}
}
]
]
},
},
"download"
:
{
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
,
"win32"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
"darwin"
:
"http://thief.mycard.moe/metalinks/th5.meta4"
},
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
],
"id"
:
"th5"
,
"id"
:
"th5"
,
"locales"
:
[
"locales"
:
[
"zh-CN"
"zh-CN"
],
],
"name"
:
{
"name"
:
{
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
602a
\u
7eee
\u
8c08"
"zh-CN"
:
"
\u
4e1c
\u
65b9
\u
602a
\u
7eee
\u
8c08"
}
}
},
},
{
{
"category"
:
"game"
,
"id"
:
"ygopro"
,
"name"
:
{
"zh-CN"
:
"YGOPro"
},
"description"
:
{
"description"
:
{
"zh-CN"
:
"fxt desc"
"zh-CN"
:
"A script engine for
\"
yu-gi-oh!
\"
and sample gui."
},
},
"category"
:
"game"
,
"tags"
:
[
"tags"
:
[
"game"
"game"
,
],
"card"
"homepage"
:
"http://www.myacg.cc"
,
],
"author"
:
"ZUN"
,
"locales"
:
[
"zh-CN"
],
"homepage"
:
"https://github.com/Fluorohydride/ygopro"
,
"author"
:
"Fluorohydride"
,
"actions"
:
{
"actions"
:
{
"win32"
:
{
"win32"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"ygopro_vs.exe"
,
"args"
:
[],
"args"
:
[],
"env"
:
{
"env"
:
{}
"LC_ALL"
:
"ja_JP"
}
}
}
},
},
"darwin"
:
{
"darwin"
:
{
"main"
:
{
"main"
:
{
"execute"
:
"th07.exe"
,
"execute"
:
"ygopro.app/Contents/MacOS/ygopro"
,
"args"
:
[],
"args"
:
[],
"open"
:
"wine"
,
"env"
:
{}
"env"
:
{
"LC_ALL"
:
"ja_JP"
}
}
}
}
}
},
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/ygopro-win32.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/ygopro-osx.meta4"
},
"version"
:
{
"version"
:
{
"darwin"
:
"1.06"
"darwin"
:
"1.06"
},
},
"references"
:
{
"references"
:
{
"win32"
:
[],
"win32"
:
[],
"darwin"
:
[]
"darwin"
:
[]
},
},
"download"
:
{
"win32"
:
"http://thief.mycard.moe/metalinks/ygopro-win32.meta4"
,
"darwin"
:
"http://thief.mycard.moe/metalinks/ygopro-win32.meta4"
},
"news"
:
[
"news"
:
[
{
{
"url"
:
"#"
,
"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"
:
"#"
,
"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"
}
}
],
]
"id"
:
"ygopro-win32"
,
"locales"
:
[
"zh-CN"
],
"name"
:
{
"zh-CN"
:
"YGOPro"
}
}
}
]
]
\ 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