Showing preview only (607K chars total). Download the full file or copy to clipboard to get everything.
Repository: rwv/chinese-dos-games
Branch: master
Commit: 54d6a2d30a61
Files: 13
Total size: 590.8 KB
Directory structure:
gitextract_ru5up3ro/
├── .github/
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ │ └── game-request.md
│ ├── workflows/
│ │ ├── s3-sync.yml
│ │ └── wiki.yml
│ └── workflows_scripts/
│ └── generate_home.py
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── download_data.py
└── games.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: ['zczc.cz/sponsor']
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: "\U0001F41B Create a report to help us improve bug 报告"
---
**bug 描述**
bug 的描述
**如何重现**
如何重现这个 bug
**预期情况**
你预期的正常情况
**截图**
bug 的截图
**系统环境**
操作系统:
浏览器:
游戏:
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: "\U0001F31F Suggest an idea for this project 功能要求"
---
**要求的功能**
描述功能
**优先度**
* [ ] 高
* [ ] 中
* [ ] 低
================================================
FILE: .github/ISSUE_TEMPLATE/game-request.md
================================================
---
name: Game request
about: "\U0001F3AE Requesting new game. 新游戏请求。"
---
**游戏简体中文名:**
**游戏繁体中文名:**
**游戏英文名:**
**游戏发行年份:**
**游戏下载地址(可选):**
**游戏封面图地址(可选):**
**其他(如键位、秘籍、链接等等)(可选):**
================================================
FILE: .github/workflows/s3-sync.yml
================================================
name: Sync images to S3
on:
workflow_dispatch:
push:
branches:
- master
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install awscli
run: pip install awscli
- name: Push to S3
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_S3_ENDPOINT: ${{ secrets.AWS_S3_ENDPOINT }}
run: aws s3 cp img s3://$AWS_S3_BUCKET/ --recursive --endpoint-url "$AWS_S3_ENDPOINT"
================================================
FILE: .github/workflows/wiki.yml
================================================
name: Update Wiki
on:
push:
paths:
- 'games.json'
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Generate Home.md
run: python .github/workflows_scripts/generate_home.py
- name: Upload Documentation to Wiki
uses: SwiftDocOrg/github-wiki-publish-action@v1
with:
path: "wiki"
env:
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
================================================
FILE: .github/workflows_scripts/generate_home.py
================================================
import json
import os
import json
root = os.path.abspath('.')
EXIST_TEXT = '✔️'
NONEXIST_TEXT = '❌'
with open(os.path.join(root, 'games.json'), encoding='utf8') as f:
game_infos = json.load(f)
home_text = f"""
# 🎮 中文 DOS 游戏
中文 DOS 游戏合集,目前共有 {len(game_infos['games'].keys())} 款游戏。
## 信息统计
"""
# Generate Table
def sizeof_fmt(num, suffix='B'):
for unit in ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi']:
if abs(num) < 1024.0:
return "%3.1f%s%s" % (num, unit, suffix)
num /= 1024.0
return "%.1f%s%s" % (num, 'Yi', suffix)
handler = {
'游戏名称': lambda game_info: f'<a href="https://dos.zczc.cz/games/{identifier}/">' +
game_info['name']['zh-Hans']+'</a>',
'文件大小': lambda game_info: sizeof_fmt(game_info['filesize']),
'封面': lambda game_info: EXIST_TEXT if 'coverFilename' in game_info.keys() else NONEXIST_TEXT,
'键位': lambda game_info: EXIST_TEXT if 'keymaps' in game_info.keys() else NONEXIST_TEXT,
'作弊': lambda game_info: EXIST_TEXT if 'cheats' in game_info.keys() else NONEXIST_TEXT,
'发行年份': lambda game_info: EXIST_TEXT if 'releaseYear' in game_info.keys() else NONEXIST_TEXT,
'类型': lambda game_info: EXIST_TEXT if 'type' in game_info.keys() else NONEXIST_TEXT,
}
table_header = '| ' + ' | '.join(handler.keys()) + ' |\n'
table_header = table_header + '| :----:' * len(handler.keys()) + ' |\n'
table_text = table_header
for identifier, game_info in game_infos['games'].items():
row = '| ' + \
' | '.join(map(lambda func: func(game_info),
handler.values())) + ' |\n'
table_text += row
home_text += table_text
os.makedirs(os.path.join(root, 'wiki'))
with open(os.path.join(root, 'wiki', 'Home.md'), mode='w', encoding='utf8') as f:
f.write(home_text)
================================================
FILE: .gitignore
================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
# game binary file
bin/
# PyCharm
.idea/
================================================
FILE: CONTRIBUTING.md
================================================
## 修改现有游戏信息
修改 `games.json` 文件,目前已有的键值为
* `identifier`: 游戏标识符
* `name`: 游戏名称
* `releaseYear`: 游戏发行年份
* `keymaps`: 游戏操作键位
* `executable`: 游戏执行文件
* `links`: 游戏链接
* `cheats`: 作弊命令
* `coverFilename`: 封面图文件名称
* `sha256`: 游戏压缩包的 `sha256` 值
示例:
``` json
"仙剑奇侠传":{
"identifier":"仙剑奇侠传",
"name":{
"zh-Hans":"仙剑奇侠传",
"zh-Hant":"仙劍奇俠傳",
"en":"The Legend of Sword and Fairy"
},
"releaseYear":1995,
"executable":"PAL!.EXE",
"keymaps":{
"←→↑↓":"移动",
"Alt":"显示菜单、取消操作",
"Enter/Ctrl/Space":"对话、调查、菜单选择"
},
"cheats":{
"cass":"得到金钱250元(15%的概率是灾难)",
"vers":"显示版本",
"memy":"内存检查",
"test":"内存测试",
"joke":"海盗鱿鱼俱乐部图片",
"damn, darn,or heck":"住宅区的土地改划为教会",
"porn":"损失 $3,000"
},
"links":{
"仙劍奇俠傳攻略":"https://chiuinan.github.io/game/game/intro/ch/c11/pal/"
},
"coverFilename":"cover.png",
"sha256":"ef209d15734a9e2e533d9a73f2550b3524be5c4cfd5b0ed68c82df6638784adb"
}
```
## 添加游戏
在 `games.json` 中添加,具体可参考上面 `json` 示例,其中 `identifier`, `executable`, `sha256` 必需。
将游戏封面图片拷贝至 `img/<identifier>/cover.<suffix>`,将 `<identifier>` 修改为游戏标识符,`<suffix>` 修改为图片后缀名。
并将游戏文件打包为 `zip` 后缀,计算其 `sha256` 值。将其拷贝至 `bin/<identifier>.zip` 并测试运行。
若运行成功,将 `zip` 文件发布至网上,并提 [Pull Request](https://github.com/rwv/chinese-dos-games/pulls)
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
# 🎮 中文 DOS 游戏
网址: https://dos.lol
中文 DOS 游戏合集,目前共有 1898 款游戏。
## 下载游戏文件
在根目录下运行 Python 3 脚本
``` python
python download_data.py
```
若下载出错请参见 [Issue #26](https://github.com/rwv/chinese-dos-games/issues/26)
## 游戏列表
参见 https://dos.lol/games
## IPFS
IPNS Hash: [`k2k4r8oyknzob8jjqpj6toer4dw3jc6srsbqlbsalktnw1fopb7iyqd2`](https://ipfs.io/ipns/k2k4r8oyknzob8jjqpj6toer4dw3jc6srsbqlbsalktnw1fopb7iyqd2)
## 网站源代码
请参见 [rwv/chinese-dos-games-web: 🌐 Source code of https://dos.zczc.cz](https://github.com/rwv/chinese-dos-games-web)
## 版权问题
本人明白此项目存在版权上的侵权,如版权方介意的话,请联系 [chinese.dos.games@outlook.com](mailto:chinese.dos.games@outlook.com),本人将立刻删除有关文件。
## Contributing
欢迎提 [Issue](https://github.com/rwv/chinese-dos-games/issues) 和 [Pull request](https://github.com/rwv/chinese-dos-games/pulls) 来增加新的游戏!
PR 具体参见 [CONTRIBUTING.md](https://github.com/rwv/chinese-dos-games/blob/master/CONTRIBUTING.md)
## Credits
* [dreamlayers/em-dosbox: An Emscripten port of DOSBox](https://github.com/dreamlayers/em-dosbox)
* [db48x/emularity: easily embed emulators](https://github.com/db48x/emularity)
* [衡兰若芷制作的DOS游戏合集](https://tieba.baidu.com/p/3962261741)
================================================
FILE: download_data.py
================================================
import hashlib
import inspect
import os
import json
import urllib.request
from concurrent.futures import ThreadPoolExecutor, wait
root = os.path.dirname(os.path.abspath(
inspect.getfile(inspect.currentframe())))
PREFIX = "https://dos-bin.zczc.cz/"
DESTINATION = os.path.join(root, 'bin')
BUF_SIZE = 65536
THREAD_SIZE = 10
# read game infos from games.json
with open(os.path.join(root, 'games.json'), encoding='utf8') as f:
game_infos = json.load(f)
def generate_sha256(file):
sha256 = hashlib.sha256()
with open(file, 'rb') as f:
while True:
data = f.read(BUF_SIZE)
if not data:
break
sha256.update(data)
return sha256.hexdigest()
def download(identifier, url, file):
print(f'Downloading {identifier} game file')
urllib.request.urlretrieve(url, file)
def main(prefix=PREFIX, destination=DESTINATION):
# create folder
os.makedirs(destination, exist_ok=True)
executor = ThreadPoolExecutor(max_workers=THREAD_SIZE)
all_task = list()
downloaded = list()
for identifier in game_infos['games'].keys():
file = os.path.normcase(os.path.join(destination, identifier + '.zip'))
url = prefix + urllib.parse.quote(identifier) + '.zip'
if os.path.isfile(file) and generate_sha256(file) == game_infos['games'][identifier]['sha256']:
print(f'skip {identifier}')
else:
downloaded.append(identifier)
task = executor.submit(download, identifier, url, file)
all_task.append(task)
wait(all_task)
return downloaded
if __name__ == '__main__':
main()
================================================
FILE: games.json
================================================
{
"games": {
"仙剑奇侠传": {
"identifier": "仙剑奇侠传",
"name": {
"zh-Hans": "仙剑奇侠传",
"zh-Hant": "仙劍奇俠傳",
"en": "The Legend of Sword and Fairy"
},
"releaseYear": 1995,
"executable": "PAL!.EXE",
"keymaps": {
"←→↑↓": "移动",
"Alt": "显示菜单、取消操作",
"Enter/Ctrl/Space": "对话、调查、菜单选择"
},
"links": {
"仙劍奇俠傳攻略": "https://chiuinan.github.io/game/game/intro/ch/c11/pal/"
},
"coverFilename": "cover.png",
"sha256": "ef209d15734a9e2e533d9a73f2550b3524be5c4cfd5b0ed68c82df6638784adb",
"filesize": 20272189
},
"模拟城市2000": {
"identifier": "模拟城市2000",
"name": {
"zh-Hans": "模拟城市 2000",
"zh-Hant": "模擬城市 2000",
"en": "SimCity 2000"
},
"releaseYear": 1993,
"executable": "SC2000.EXE",
"cheats": {
"cass": "得到金钱250元(15%的概率是灾难)",
"vers": "显示版本",
"memy": "内存检查",
"test": "内存测试",
"joke": "海盗鱿鱼俱乐部图片",
"damn, darn,or heck": "住宅区的土地改划为教会",
"porn": "损失 $3,000"
},
"links": {
"模擬城市2000 - Wikipedia": "https://zh.wikipedia.org/wiki/%E6%A8%A1%E6%93%AC%E5%9F%8E%E5%B8%822000",
"SimCity 2000 Cheats for DOS": "http://patcoston.com/co/cheatdos.aspx"
},
"coverFilename": "cover.jpg",
"sha256": "4be8560fdbc4663e6715d2d9358f2e1ca61eae73a8704ad315d4dcc818642d8a",
"filesize": 2912768
},
"美少女梦工厂2": {
"identifier": "美少女梦工厂2",
"name": {
"zh-Hans": "美少女梦工厂 2",
"zh-Hant": "美少女夢工廠 2",
"en": "Princess Maker 2"
},
"releaseYear": 1988,
"executable": "PM2.COM",
"links": {
"Princess Maker 2 - Wikipedia": "https://en.wikipedia.org/wiki/Princess_Maker_2"
},
"coverFilename": "cover.jpg",
"sha256": "d05e57cc8204a68263e4c93e09dc24247820181d176ed4f7f336368cc78ebbdd",
"filesize": 7960255
},
"同级生2": {
"identifier": "同级生2",
"name": {
"zh-Hans": "同级生 2",
"zh-Hant": "同級生 2",
"en": "Dōkyūsei 2"
},
"releaseYear": 1995,
"executable": "START.BAT",
"links": {
"同级生2 - Wikipedia": "https://zh.wikipedia.org/wiki/同級生2"
},
"coverFilename": "cover.jpg",
"sha256": "d41a2a8d17ac25714d577da69d74ac24b089664b48955f01e9bb6821a26453be",
"filesize": 14480560
},
"大富翁3": {
"identifier": "大富翁3",
"name": {
"zh-Hans": "大富翁3",
"zh-Hant": "大富翁3",
"en": "Rich Man 3"
},
"releaseYear": 1996,
"executable": "PLAY.BAT",
"links": {
"大富翁3 - Wikipedia": "https://zh.wikipedia.org/wiki/大富翁3"
},
"coverFilename": "cover.jpg",
"sha256": "bcc1220680f7f6d0b13a216145fbc6694d84688009b7a23f69940ce3632024f6",
"filesize": 9532561
},
"明星志愿1": {
"identifier": "明星志愿1",
"name": {
"zh-Hans": "明星志愿1",
"zh-Hant": "明星志願1",
"en": "Stardom"
},
"releaseYear": 1995,
"executable": "PLAY.BAT",
"links": {
"《明星志愿》 - 互动百科": "http://www.baike.com/wiki/《明星志愿》"
},
"coverFilename": "cover.png",
"sha256": "a5225f10dbbcef85b032f1f4230d69326cbe3ec495cf7b410d6adff6c888a2e3",
"filesize": 6256250
},
"三国志4": {
"identifier": "三国志4",
"name": {
"zh-Hans": "三国志IV",
"zh-Hant": "三國志IV",
"en": "Romance of the Three Kingdoms IV: Wall of Fire"
},
"releaseYear": 1995,
"executable": "SAN486.COM",
"links": {
"三国志IV - Wikipedia": "https://zh.wikipedia.org/wiki/%E4%B8%89%E5%9C%8B%E5%BF%97IV"
},
"coverFilename": "cover.jpg",
"sha256": "88b7ffc802211d0921eae6c773528a511821c2364bc6ce2c4c175116a3706f21",
"filesize": 3585587
},
"金庸群侠传": {
"identifier": "金庸群侠传",
"name": {
"zh-Hans": "金庸群侠传",
"zh-Hant": "金庸群俠傳",
"en": "Jin Yong Qun Xia Zhuan"
},
"releaseYear": 1996,
"executable": "PLAY.BAT",
"links": {
"金庸群侠传 - Wikipedia": "https://zh.wikipedia.org/wiki/金庸群俠傳"
},
"coverFilename": "cover.jpg",
"sha256": "79dc70ac1c5170c8e7c6df4d3d3fafa4d5134c5e510bf74ce65e3f5e84e6a5a6",
"filesize": 26130954
},
"轩辕剑1": {
"identifier": "轩辕剑1",
"name": {
"zh-Hans": "轩辕剑1",
"zh-Hant": "軒轅劍1",
"en": "Xuan-Yuan Sword 1"
},
"releaseYear": 1990,
"executable": "PLAY.BAT",
"coverFilename": "cover.jpg",
"sha256": "92b6f9f284e297f1342d0362fb5e583f1f9813cf79a6ccc33f32a801e26e94a7",
"filesize": 1033798
},
"轩辕剑2": {
"identifier": "轩辕剑2",
"name": {
"zh-Hans": "轩辕剑2",
"zh-Hant": "軒轅劍2",
"en": "Xuan-Yuan Sword 2"
},
"releaseYear": 1994,
"executable": "SWD2.EXE",
"coverFilename": "cover.png",
"sha256": "ebb2716058a3fba999666365d5237161f9dfcfe42b66c645ba222508cfeeae2c",
"filesize": 11825823
},
"皇帝": {
"identifier": "皇帝",
"name": {
"zh-Hans": "皇帝",
"zh-Hant": "皇帝",
"en": "Emperor"
},
"releaseYear": 1996,
"executable": "SKING.EXE",
"coverFilename": "cover.png",
"sha256": "41c8c3678d5381561f22bc8a7df2eef15f9e24e10ef2a54801a14a1eb1854923",
"filesize": 11231841
},
"轩辕剑外传:枫之舞": {
"identifier": "轩辕剑外传:枫之舞",
"name": {
"zh-Hans": "轩辕剑外传:枫之舞",
"zh-Hant": "軒轅劍外傳:楓之舞",
"en": "Xuan-Yuan Sword: Dance of Maple"
},
"releaseYear": 1995,
"executable": "SWDA.EXE",
"coverFilename": "cover.jpg",
"sha256": "b274bfed1bf19cc1e620b403a513300a5dd3fb065fd8621029891bde762f9e19",
"filesize": 16908983
},
"疯狂医院": {
"identifier": "疯狂医院",
"name": {
"zh-Hans": "疯狂医院",
"zh-Hant": "瘋狂醫院",
"en": "Crazy Doctor"
},
"releaseYear": 1993,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "5abedef930e8049081e18d0ce3ea9eec64245ba8642dabece37177dd3a0f81be",
"filesize": 3304944
},
"大航海时代": {
"identifier": "大航海时代",
"name": {
"zh-Hans": "大航海时代",
"zh-Hant": "大航海時代",
"en": "Uncharted Waters"
},
"releaseYear": 1991,
"executable": "KOEI.COM",
"coverFilename": "cover.jpg",
"sha256": "67f93d244498a953bd6f27e33ba7a0a87b061f7418fb08647949fc4ff891c326",
"filesize": 913167
},
"大航海时代2": {
"identifier": "大航海时代2",
"name": {
"zh-Hans": "大航海时代2",
"zh-Hant": "大航海時代2",
"en": "Uncharted Waters II"
},
"releaseYear": 1994,
"executable": "KOUKAI2.COM",
"coverFilename": "cover.jpg",
"sha256": "789a81ef8011f7765c3540e95e9dd71539182be8acc07dfb8b4fb511d4d9dd61",
"filesize": 3045369
},
"银河英雄传说3SP": {
"identifier": "银河英雄传说3SP",
"name": {
"zh-Hans": "银河英雄传说III SP",
"zh-Hant": "銀河英雄傳說III SP",
"en": "Legend of the Galactic Heroes III SP"
},
"releaseYear": 1994,
"executable": "GIN3.COM",
"coverFilename": "cover.jpg",
"sha256": "cc71018c920d676d35acf6ac67abc15a00dfcce3d3aad811632c6ce646615f5c",
"filesize": 3527452
},
"三国志2": {
"identifier": "三国志2",
"name": {
"zh-Hans": "三国志II",
"zh-Hant": "三國志II",
"en": "Romance of the Three Kingdoms II"
},
"releaseYear": 1991,
"executable": "Koei.bat",
"coverFilename": "cover.jpg",
"sha256": "1f6ffff5f68aae2479b777fc585532bcbdb274d134c1e373ee7a17ecb791100e",
"filesize": 893672
},
"三国志3": {
"identifier": "三国志3",
"name": {
"zh-Hans": "三国志III",
"zh-Hant": "三國志III",
"en": "Romance of the Three Kingdoms III"
},
"releaseYear": 1993,
"executable": "KOEI.COM",
"coverFilename": "cover.jpg",
"sha256": "515ec3ed07caf4948a92923388350ade12df279807c2510b0fdb51bf39f95216",
"filesize": 2260444
},
"三国志5": {
"identifier": "三国志5",
"name": {
"zh-Hans": "三国志V",
"zh-Hant": "三國志V",
"en": "Romance of the Three Kingdoms V"
},
"releaseYear": 1996,
"executable": "SAN5.COM",
"coverFilename": "cover.png",
"sha256": "48a658d7fc30e3f4b6d8bccaf4479e02db02041f41fc3c9482445be19803ac83",
"filesize": 7401356
},
"三国志5X": {
"identifier": "三国志5X",
"name": {
"zh-Hans": "三国志V 威力加强版",
"zh-Hant": "三國志V 威力加強版",
"en": "Romance of the Three Kingdoms V X"
},
"releaseYear": 1997,
"executable": "PLAY.BAT",
"coverFilename": "cover.jpg",
"sha256": "a4d9cc30c08fb995da70f9a46a06b76b3b77978f28f4b5c296cfb609a9a28314",
"filesize": 9311448
},
"三国志英杰传": {
"identifier": "三国志英杰传",
"name": {
"zh-Hans": "三国志英杰传",
"zh-Hant": "三國志英傑傳",
"en": "Romance of the Three Kingdoms Heroic Legend"
},
"releaseYear": 1995,
"executable": "REKO3.COM",
"coverFilename": "cover.jpg",
"sha256": "07bad92d786dbcd90bf27eed6e8473e09374608e21767c68d11cf293b3982999",
"filesize": 3461749
},
"主题医院": {
"identifier": "主题医院",
"name": {
"zh-Hans": "主题医院 无声音版",
"zh-Hant": "杏林也瘋狂",
"en": "Theme Hospital"
},
"releaseYear": 1997,
"executable": "HOSPITAL.EXE",
"coverFilename": "cover.jpg",
"sha256": "6df81727261a637851b964f36f4f2cd6c1015e10fa1e03fbac5d91aeea3f6ddd",
"filesize": 26619552
},
"三国演义": {
"identifier": "三国演义",
"name": {
"zh-Hans": "三国演义",
"zh-Hant": "三國演義",
"en": "Romance of the Three Kingdoms"
},
"releaseYear": 1991,
"executable": "AA.EXE",
"coverFilename": "cover.jpg",
"sha256": "077dbc8662e447d9a49c66d0b137c0a42730d93eeceab1caf92e52243211ad84",
"filesize": 2334427
},
"三界谕邦沛之迷": {
"identifier": "三界谕邦沛之迷",
"name": {
"zh-Hans": "三界谕:邦沛之迷",
"zh-Hant": "三界諭:邦沛之謎",
"en": "Three Realms encyclical: Bangpei Mystery"
},
"releaseYear": 1991,
"executable": "3K_CRK.COM",
"coverFilename": "cover.jpg",
"sha256": "4f2688c95ce16a23dc1b5fda1b5664b91b676b2e0b9bfb9a12b22e391df280b8",
"filesize": 3358859
},
"殖民计划": {
"identifier": "殖民计划",
"name": {
"zh-Hans": "殖民计划",
"zh-Hant": "殖民計畫",
"en": "Colonial plan"
},
"releaseYear": 1991,
"executable": "APS.BAT",
"coverFilename": "cover.png",
"sha256": "0e7531fc0649405231f849fd165b31633bb7beddfa42c36db257f0eea5599e13",
"filesize": 5725156
},
"炎龙骑士团2黄金城之谜": {
"identifier": "炎龙骑士团2黄金城之谜",
"name": {
"zh-Hans": "炎龙骑士团II‧黄金城之谜",
"zh-Hant": "炎龍騎士團II‧黃金城之謎",
"en": "Flame Dragon 2: Legend of Golden Castle"
},
"releaseYear": 1995,
"executable": "FD2.EXE",
"coverFilename": "cover.png",
"sha256": "bd241b639ad5e122faf6996e4dd000fdd3b2a5d7bd55709df17db517e9962ed1",
"filesize": 8155666
},
"倚天屠龙记": {
"identifier": "倚天屠龙记",
"name": {
"zh-Hans": "倚天屠龙记",
"zh-Hant": "倚天屠龍記",
"en": "Heavenly Sword Dragon Slaying Sabe"
},
"releaseYear": 1994,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "ba2bda2619f5b9a4d477397fb8d1a0f61c59bd6e7ad28e24668f0b55302ae275",
"filesize": 10300998
},
"信长之野望天翔记": {
"identifier": "信长之野望天翔记",
"name": {
"zh-Hans": "信长之野望·天翔记",
"zh-Hant": "信長之野望·天翔記",
"en": "Nobunaga no Yabō: Tenshōki"
},
"releaseYear": 1994,
"executable": "TENSHOU.COM",
"coverFilename": "cover.jpg",
"sha256": "72e1758187de7120d8e392e667e3d2fa26ef7cb52ac3b0c4f49841b9dbf4c002",
"filesize": 3437060
},
"信长之野望霸王传": {
"identifier": "信长之野望霸王传",
"name": {
"zh-Hans": "信长之野望·霸王传",
"zh-Hant": "信長之野望·霸王傳",
"en": "Nobunaga no Yabō: Haouden"
},
"releaseYear": 1992,
"executable": "KOEI.COM",
"coverFilename": "cover.jpg",
"sha256": "562538821780dcd92649ad2f3657606c4484bba8583adca939ff84fac37de1bd",
"filesize": 2559443
},
"金瓶梅": {
"identifier": "金瓶梅",
"name": {
"zh-Hans": "金瓶梅之偷情宝鉴",
"zh-Hant": "金瓶梅之偷情寶鑑",
"en": "Jin Ping Mei"
},
"releaseYear": 1997,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "2eb18e3a61d8422cb2e1903cc3a03b0a00e8ea1f90aefabbd18cfe1335fa9cef",
"filesize": 32523389
},
"江南才子唐伯虎": {
"identifier": "江南才子唐伯虎",
"name": {
"zh-Hans": "江南才子唐伯虎",
"zh-Hant": "江南才子唐伯虎",
"en": "JiangNan talent TANG BOHU"
},
"releaseYear": 1999,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "a030c106f412698f0daed8c2d6c27333c3b7694a0f5aacfc721a6e696dc550c9",
"filesize": 74390830
},
"暗棋圣手": {
"identifier": "暗棋圣手",
"name": {
"zh-Hans": "暗棋圣手",
"zh-Hant": "暗棋聖手",
"en": "Dark Chess Master"
},
"releaseYear": 1995,
"executable": "CHESS.EXE",
"coverFilename": "cover.png",
"sha256": "67dd298a2f12f85590a2d5079888a6f482ff260aab6f93ad4beccc7308078a91",
"filesize": 9991424
},
"太阁立志传": {
"identifier": "太阁立志传",
"name": {
"zh-Hans": "太阁立志传",
"zh-Hant": "太閤立志傳",
"en": "Taikō Risshiden"
},
"releaseYear": 1992,
"executable": "PLAY.BAT",
"coverFilename": "cover.jpg",
"keymaps": {
"Enter": "进入游戏"
},
"sha256": "1c08aae4105c56500b79e13dad7df8bc9512aa3023cbde1429b1e689a506eb59",
"filesize": 2519176
},
"非洲探险2": {
"identifier": "非洲探险2",
"name": {
"zh-Hans": "非洲探险2",
"zh-Hant": "非洲探險2",
"en": "Crazy Adventure in Africa2"
},
"releaseYear": 1996,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"cheats": {
"africa-pdmode": "开启作弊模式",
"pandaprop": "直接购买道具",
"pandamagic": "直接购买法术",
"editperson": "修改人物属性"
},
"sha256": "85abfeeea9a5fe18539d86f0193244f61067343a9f993b2583230d5938d89c7c",
"filesize": 7126705
},
"主题医院S": {
"identifier": "主题医院S",
"name": {
"zh-Hans": "主题医院",
"zh-Hant": "杏林也瘋狂",
"en": "Theme Hospital"
},
"releaseYear": 1997,
"executable": "HOSPITAL.EXE",
"coverFilename": "cover.jpg",
"sha256": "53b3e39ab6d57937301fdffe0c6a663d5c4eeb738794778360617e6b0e3ea92b",
"filesize": 158407209
},
"航空霸业2": {
"identifier": "航空霸业2",
"name": {
"zh-Hans": "航空霸业2",
"zh-Hant": "航空霸業2",
"en": "Aerobiz 2"
},
"releaseYear": 1995,
"executable": "AM2.COM",
"coverFilename": "cover.png",
"keymaps": {
"Enter": "进入游戏"
},
"sha256": "c42078c96256441cec6b59c50db0348021d2d82da1382803d38741b6e3cf8606",
"filesize": 1769326
},
"中国球王": {
"identifier": "中国球王",
"name": {
"zh-Hans": "中国球王",
"zh-Hant": "中國球王",
"en": "Chinese king of soccer "
},
"releaseYear": 1997,
"executable": "PLAY.COM",
"coverFilename": "cover.jpg",
"sha256": "4e50109f346d58d67ea11a74ab4584b0508d907475fa1dcf9db4c7a044b7af15",
"filesize": 7517503
},
"艾蒂丝魔法大冒险": {
"identifier": "艾蒂丝魔法大冒险",
"name": {
"zh-Hans": "艾蒂丝魔法大冒险",
"zh-Hant": "艾蒂絲魔法大冒險",
"en": "Adith the forgotten alchemy"
},
"releaseYear": 1999,
"executable": "play.bat",
"coverFilename": "cover.png",
"sha256": "34b7da1a752e45e2ac8d7da66be854ffa95db2a429c84178ed75a7eea7dc86c0",
"filesize": 85842909
},
"卧龙传": {
"identifier": "卧龙传",
"name": {
"zh-Hans": "卧龙传",
"zh-Hant": "臥龍傳",
"en": "Biography of wolong"
},
"releaseYear": 1995,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "029cf2932286813cbaefb53429aa79322a76b169486d6dddb66a5609066b0428",
"filesize": 1891840
},
"天使帝国": {
"identifier": "天使帝国",
"name": {
"zh-Hans": "天使帝国",
"zh-Hant": "天使帝國",
"en": "Angel Empire"
},
"releaseYear": 1993,
"executable": "U",
"coverFilename": "cover.png",
"sha256": "8c06fd3d602e0b1b6404769abd9cf21d047ed8546a5af0b516011b0554151e5c",
"filesize": 4144790
},
"魔域传说4波斯战记": {
"identifier": "魔域传说4波斯战记",
"name": {
"zh-Hans": "魔域传说Ⅳ:波斯战记",
"zh-Hant": "魔域传说Ⅳ:波斯战记",
"en": "First Queen 4"
},
"releaseYear": 1995,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "8717c71b0a6b1b7cc4d912e1f3f9d7d672580b6b0fdd4cc3779c44396bfa2c8b",
"filesize": 2930177
},
"魔法公主": {
"identifier": "魔法公主",
"name": {
"zh-Hans": "魔法公主",
"zh-Hant": "魔法公主",
"en": "Princess Mononoke Adventure"
},
"releaseYear": 1995,
"executable": "PLAY.BAT",
"coverFilename": "cover.png",
"sha256": "4674212b9ac1d4fcf362aabcf94f2935c62fff32a27853dc71f700ed1de0b09f",
"filesize": 3867891
},
"1000公里": {
"identifier": "1000公里",
"name": {
"zh-Hans": "1000公里"
},
"executable": "runme.bat",
"type": "SIM",
"sha256": "6e6ec07dd221f75cfc5b5dad372448aaa9796b3641150cc2c79352833c0534c8",
"filesize": 1175212
},
"1000米利亚": {
"identifier": "1000米利亚",
"name": {
"zh-Hans": "1000米利亚"
},
"executable": "runme",
"type": "SIM",
"sha256": "721a3a777d0fd924630d617713c2242a3510be6eaec52ec1918f50829225d34e",
"filesize": 1175212
},
"1-0足球经理": {
"identifier": "1-0足球经理",
"name": {
"zh-Hans": "1-0足球经理"
},
"executable": "run",
"type": "SIM",
"sha256": "62480d31ed4ce74f61564558348aed51170287bc382d97adef5c98e303390238",
"filesize": 399757,
"coverFilename": "cover.png"
},
"1830铁路公爵": {
"identifier": "1830铁路公爵",
"name": {
"zh-Hans": "1830铁路公爵"
},
"executable": "1830.exe",
"type": "PUZ",
"sha256": "676c943a607ae514442fc2a86e2471e841124031155e9658e832a6f5f98e6945",
"filesize": 4104556,
"coverFilename": "cover.png"
},
"1869大航海": {
"identifier": "1869大航海",
"name": {
"zh-Hans": "1869大航海"
},
"executable": "1869",
"type": "SIM",
"sha256": "bcc5e95c1e76a984531dc26020a11db55f1cf0923efa3b8678011d65b1e21d8f",
"filesize": 1136330,
"coverFilename": "cover.png"
},
"1942特种部队": {
"identifier": "1942特种部队",
"name": {
"zh-Hans": "1942特种部队"
},
"executable": "tf",
"type": "SIM",
"sha256": "ff14d38721e39b341b5093200304236332c31b21a31fd873f5273da7293136ac",
"img": "cd.iso",
"filesize": 19563094,
"coverFilename": "cover.png"
},
"2001特遣队": {
"identifier": "2001特遣队",
"name": {
"zh-Hans": "2001特遣队"
},
"executable": "mis.exe",
"type": "SPG",
"sha256": "408a798312982311769ac3a58ae93224a923d5019df304bb81391eee66bba8b5",
"filesize": 9625601,
"coverFilename": "cover.png"
},
"2601帝国联合舰队": {
"identifier": "2601帝国联合舰队",
"name": {
"zh-Hans": "2601帝国联合舰队"
},
"executable": "play.com",
"type": "SLG",
"sha256": "21cebb28782967d8f0ec8f32f72651079beecfbee232f98ef1f854452b0590b1",
"filesize": 9356294
},
"3D俄罗斯": {
"identifier": "3D俄罗斯",
"name": {
"zh-Hans": "3D俄罗斯"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "c62acf2cbf04742467b2c58c0d51a6b7838e23f229d116b7bc435388bb1f66a1",
"filesize": 646597,
"coverFilename": "cover.png"
},
"3D魔方": {
"identifier": "3D魔方",
"name": {
"zh-Hans": "3D魔方"
},
"executable": "3DCUBE.EXE",
"type": "PUZ",
"sha256": "5f76bcbc45e64f9f791de721364e17f6e5e21b71b92cee80ee3013a199d63c6c",
"filesize": 53227,
"coverFilename": "cover.png"
},
"3D陨石": {
"identifier": "3D陨石",
"name": {
"zh-Hans": "3D陨石"
},
"executable": "a3dsw",
"type": "ACT",
"sha256": "5e657759b26b657fae71df68762dfc30350b6f3cb4dc1ae2c9e10fc7570046b2",
"filesize": 2416915,
"coverFilename": "cover.png"
},
"3D炸弹人": {
"identifier": "3D炸弹人",
"name": {
"zh-Hans": "3D炸弹人"
},
"executable": "bomb",
"type": "ACT",
"sha256": "bdc88205f91a26df9c59010f926b709293b1ed2eec602b337424d6dc2f94e4b3",
"filesize": 212696,
"coverFilename": "cover.png"
},
"3D桌上体育": {
"identifier": "3D桌上体育",
"name": {
"zh-Hans": "3D桌上体育"
},
"executable": "table.exe",
"type": "SIM",
"sha256": "0eba005af501b6fcec011625014ec49d916bb1e76e54d6bdd395215783ab1baa",
"filesize": 6319040,
"coverFilename": "cover.png"
},
"3x3只眼": {
"identifier": "3x3只眼",
"name": {
"zh-Hans": "3x3只眼"
},
"executable": "3x3.bat",
"type": "HGA",
"sha256": "87f11d83f0f5b33f51b83e84c2aebccf34b5cd745d4ba2dd7bf3b58b066a3668",
"filesize": 11469382
},
"4D网球": {
"identifier": "4D网球",
"name": {
"zh-Hans": "4D网球"
},
"executable": "TENNIS.EXE",
"type": "SIM",
"sha256": "bcccbc01ea17d5a1cc2f498b3f38dca4dadb68589c0a0233152c8ed91e9925f8",
"filesize": 1210817,
"coverFilename": "cover.png"
},
"66区": {
"identifier": "66区",
"name": {
"zh-Hans": "66区"
},
"executable": "zone66.bat",
"type": "ACT",
"sha256": "d046055602df0600a26131f95797655acc0104728dceae7c81cac1a04871a71d",
"filesize": 3802810
},
"688攻击潜艇": {
"identifier": "688攻击潜艇",
"name": {
"zh-Hans": "688攻击潜艇"
},
"executable": "688.bat",
"type": "SIM",
"sha256": "0755ac3b53b5cb441d55c2dc0cf20a1d76e80e5cbe849011af6da74deacdbc9c",
"filesize": 586310
},
"80年空中激斗": {
"identifier": "80年空中激斗",
"name": {
"zh-Hans": "80年空中激斗"
},
"executable": "dog.exe",
"type": "SIM",
"sha256": "8c36f6d3ef0ea1f5e2cbd38e334ab429aa74a322087c9570bf7965c0fbe038ef",
"filesize": 4834076,
"coverFilename": "cover.png"
},
"94美国世界杯": {
"identifier": "94美国世界杯",
"name": {
"zh-Hans": "94美国世界杯"
},
"executable": "FOOTBALL.EXE",
"type": "SIM",
"sha256": "ac24a108025cbe459d049877cc9b4f676ba521cad17161a51ffa96df1df1b218",
"filesize": 848365,
"coverFilename": "cover.png"
},
"97超少女": {
"identifier": "97超少女",
"name": {
"zh-Hans": "97超少女"
},
"executable": "super97.exe",
"type": "HGA",
"sha256": "19826d70bb144f503a3c518a18061f5af219d1a3ebc0b0610b072b7e522f2e19",
"filesize": 1357194,
"coverFilename": "cover.png"
},
"A320空中客机": {
"identifier": "A320空中客机",
"name": {
"zh-Hans": "A320空中客机"
},
"executable": "a320",
"type": "SIM",
"sha256": "3f1397972b2f52fe8f2840c30783b6fc09bca9424ddffae3c9b5a9db48f87503",
"filesize": 331975,
"coverFilename": "cover.png"
},
"ALPHA风暴": {
"identifier": "ALPHA风暴",
"name": {
"zh-Hans": "ALPHA风暴"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "1348abb945f0b89f9af4c048b7767bd0100d3995ff170a9d990eb15dba553f29",
"filesize": 16266288,
"coverFilename": "cover.png"
},
"B17飞行堡垒": {
"identifier": "B17飞行堡垒",
"name": {
"zh-Hans": "B17飞行堡垒"
},
"executable": "B17.EXE",
"type": "SIM",
"sha256": "abebb585a73fafa72b1f58a30e229cddff387f9680d745373b12ed793e41ced0",
"filesize": 3342532,
"coverFilename": "cover.png"
},
"BOPPIN物理游戏": {
"identifier": "BOPPIN物理游戏",
"name": {
"zh-Hans": "BOPPIN物理游戏"
},
"executable": "BOPPIN",
"type": "PUZ",
"sha256": "b594236fc2e2a5482c2ead2ee92b21cc49af5d19459130e295d40f32a397000b",
"filesize": 1480748,
"coverFilename": "cover.png"
},
"CBA嘉年华": {
"identifier": "CBA嘉年华",
"name": {
"zh-Hans": "CBA嘉年华"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "5fc65b443c2d6e47f2f97367952b6d39dfb544a4310a53ded11b1b597f38ccea",
"filesize": 6179756,
"coverFilename": "cover.png"
},
"Dvorak打字": {
"identifier": "Dvorak打字",
"name": {
"zh-Hans": "Dvorak打字"
},
"executable": "dt.exe",
"type": "PUZ",
"sha256": "e42f542873cb3030cab8619ea8b5048c699817237d2c5e136473db1aa289661a",
"filesize": 1197245,
"coverFilename": "cover.png"
},
"D计划": {
"identifier": "D计划",
"name": {
"zh-Hans": "D计划"
},
"executable": "task.bat",
"type": "ACT",
"sha256": "55f62b8c6cda1806a3ecfb49662485348a7bf368d1d99ed202def0c315175ecb",
"filesize": 1400873
},
"ES方程式": {
"identifier": "ES方程式",
"name": {
"zh-Hans": "ES方程式"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "6aea922ff62e13e84949f0c8d164dc1864254a866642616f36ac7c9e3feca955",
"filesize": 6146009,
"coverFilename": "cover.png"
},
"F14战机": {
"identifier": "F14战机",
"name": {
"zh-Hans": "F14战机"
},
"executable": "PLAY.BAT",
"type": "SIM",
"sha256": "26534536947398061c09054ce32d8b7f60ad49e7f58f158c0726fef0b9c3192a",
"filesize": 5811267,
"coverFilename": "cover.png"
},
"F15战斗机": {
"identifier": "F15战斗机",
"name": {
"zh-Hans": "F15战斗机"
},
"executable": "f15",
"type": "SIM",
"sha256": "e356372f3238f3b7a6f974d44fc6aeaef13669b15ef44cd4b0a38b4e8ca48399",
"filesize": 6482925
},
"F1赛车1994": {
"identifier": "F1赛车1994",
"name": {
"zh-Hans": "F1赛车1994"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "2957e32bc8c8d2640c3c57144f82d6c68325e488d01d4fd02a7d1fc3b1fd0555",
"filesize": 759673,
"coverFilename": "cover.png"
},
"F1赛车经理": {
"identifier": "F1赛车经理",
"name": {
"zh-Hans": "F1赛车经理"
},
"executable": "F1.EXE",
"type": "SIM",
"sha256": "1de15dd2fbd915857eaeacd0ed46f615d13ddadb21f928b6d1871297909845f1",
"filesize": 20787492,
"coverFilename": "cover.png"
},
"FIFA1996": {
"identifier": "FIFA1996",
"name": {
"zh-Hans": "FIFA1996"
},
"executable": "FIFA.BAT",
"type": "SIM",
"sha256": "f9002d3e4cde820e0bda6636e45b564bda7c708e1691b808802cc95339d317f2",
"filesize": 29544364,
"coverFilename": "cover.png"
},
"FIFA97": {
"identifier": "FIFA97",
"name": {
"zh-Hans": "FIFA97"
},
"executable": "FIFADOS",
"type": "SIM",
"sha256": "79cf6ff300ea0472d984cdf3337a0f308461f56a16a1b97fbe50cec2d7dd07cb",
"filesize": 71248663,
"coverFilename": "cover.png"
},
"FX战士": {
"identifier": "FX战士",
"name": {
"zh-Hans": "FX战士"
},
"executable": "FIGHT.EXE",
"type": "ACT",
"sha256": "842511d3bcd735d7e7d2e86e8c6015d6a583beeead5409ba999ef45a9b9e4946",
"filesize": 10091970,
"coverFilename": "cover.png"
},
"GEEK游戏集": {
"identifier": "GEEK游戏集",
"name": {
"zh-Hans": "GEEK游戏集"
},
"executable": "geekwad.exe",
"type": "PUZ",
"sha256": "fcccd4ea927e78bbae093235b77f672f36717e40d9c8bb8cb52f6d44ac45494d",
"filesize": 1979545,
"coverFilename": "cover.png"
},
"GP500摩托赛": {
"identifier": "GP500摩托赛",
"name": {
"zh-Hans": "GP500摩托赛"
},
"executable": "gp.bat",
"type": "SIM",
"sha256": "946890390ea0967b2a0ed5e30471dd2fc27f0b8209f6b8c04fc69c890fa8a644",
"filesize": 658282
},
"GT赛车97": {
"identifier": "GT赛车97",
"name": {
"zh-Hans": "GT赛车97"
},
"executable": "gt",
"type": "SIM",
"sha256": "1ea633a5daa212f0411be242c680940a598682fe03abdebad3510aa9b4e48586",
"filesize": 42736788,
"coverFilename": "cover.png"
},
"MAX机械突袭": {
"identifier": "MAX机械突袭",
"name": {
"zh-Hans": "MAX机械突袭"
},
"executable": "max.bat",
"type": "SLG",
"sha256": "9f62feb985bac8fdfcabaa6e49089f7da301b201a82f3bdafa01bce21acd2487",
"img": "MAX.iso",
"filesize": 545702361
},
"NBA嘉年华": {
"identifier": "NBA嘉年华",
"name": {
"zh-Hans": "NBA嘉年华"
},
"executable": "JAM.COM",
"type": "SIM",
"sha256": "a3e6625edfb8f2bde6df0a12caf11e3184bace832b215b60525150cf4b09b27a",
"img": "NBAJamTE.cue",
"filesize": 364950426,
"coverFilename": "cover.png"
},
"NBA直播": {
"identifier": "NBA直播",
"name": {
"zh-Hans": "NBA直播"
},
"executable": "BBV.EXE",
"type": "SIM",
"sha256": "5597f32cca053633a6629c71ed682cfee7ce575f12ae29d8378f0e622540f001",
"filesize": 429534,
"coverFilename": "cover.png"
},
"Nectaris": {
"identifier": "Nectaris",
"name": {
"zh-Hans": "Nectaris"
},
"executable": "start.bat",
"type": "SPG",
"sha256": "e6e779bb13c7e5c87b13ea54920a860c70def9ab8e4d0bbed5de2a43fdb32c3e",
"filesize": 1288914,
"coverFilename": "cover.png"
},
"PCE合集(执行PCE+文件名)": {
"identifier": "PCE合集(执行PCE+文件名)",
"name": {
"zh-Hans": "PCE合集(执行PCE+文件名)"
},
"executable": "readme",
"type": "ACT",
"sha256": "d5e4dab97bc5e843fa243acd14e5a52470520e98902b91b7de6b2702a8e5fb51",
"filesize": 71732115,
"coverFilename": "cover.png"
},
"PC拉力赛": {
"identifier": "PC拉力赛",
"name": {
"zh-Hans": "PC拉力赛"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "9e03a2281b219820198e62c3632938eaccfc6f7877b227bb2a404544fabae0fe",
"filesize": 2623034,
"coverFilename": "cover.png"
},
"PC原人": {
"identifier": "PC原人",
"name": {
"zh-Hans": "PC原人"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "cece1281b77726b74c9e913a2b4c7ce5146bb3f8f6ae31db11922acdf86efb72",
"filesize": 629090,
"coverFilename": "cover.png"
},
"PC原人2": {
"identifier": "PC原人2",
"name": {
"zh-Hans": "PC原人2"
},
"executable": "pre2.exe",
"type": "ACT",
"sha256": "55b19a17b34be5b6f216d782923cdea5ef18877800b8a6eb8562eb9316b883e0",
"filesize": 1077790,
"coverFilename": "cover.png"
},
"PSY幽记": {
"identifier": "PSY幽记",
"name": {
"zh-Hans": "PSY幽记"
},
"executable": "PLAY.BAT",
"type": "RPG",
"sha256": "cbc7fd461bb2b268c632b1bb5fcbfa2e6d86a2f3c778a9de280f221822e409dd",
"cdrom": "no",
"filesize": 12048493
},
"QQ三国志": {
"identifier": "QQ三国志",
"name": {
"zh-Hans": "QQ三国志"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "3a0691552f5f2abc3ec1c461b354e351570fbe63afa65545123c54678ab3a71d",
"coverFilename": "cover.png",
"filesize": 12951875
},
"RS2": {
"identifier": "RS2",
"name": {
"zh-Hans": "RS2"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "3c1877c768c7d022f080d2048c57fc5f9f5fb68c2147bc5c6b4d6764255f7e23",
"filesize": 601386
},
"SU27侧翼部队": {
"identifier": "SU27侧翼部队",
"name": {
"zh-Hans": "SU27侧翼部队"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "c36b73fbe6c81232046afb53e8eaf38a3db8fd1ef99ea21a2e1874bff319c824",
"filesize": 5301032,
"coverFilename": "cover.png"
},
"V字战机": {
"identifier": "V字战机",
"name": {
"zh-Hans": "V字战机"
},
"executable": "vwing",
"type": "ACT",
"sha256": "1e7e6d8da8469d444895fd680de039d53c0544b3ac9c1248b82ed35d948ea7b0",
"filesize": 499578,
"coverFilename": "cover.png"
},
"XATAX战机": {
"identifier": "XATAX战机",
"name": {
"zh-Hans": "XATAX战机"
},
"executable": "xatax.exe",
"type": "ACT",
"sha256": "e42abc89b3993da2e1a515e00d35b814f563aca1f3c45134ed670caf8d064156",
"filesize": 829773
},
"X计划": {
"identifier": "X计划",
"name": {
"zh-Hans": "X计划"
},
"executable": "x.exe",
"type": "ACT",
"sha256": "beafc4651719ab9fb8247f71aed5b13e446d2d44a8b44e92927feef019d098cc",
"filesize": 1980803,
"coverFilename": "cover.png"
},
"X任务": {
"identifier": "X任务",
"name": {
"zh-Hans": "X任务"
},
"executable": "xquest.exe",
"type": "ACT",
"sha256": "7ae7d14f8fae42b2af4f8b6d23d1181ce71093d4d38b417fd31908c24a5d928b",
"filesize": 599264,
"coverFilename": "cover.png"
},
"YAB棒球": {
"identifier": "YAB棒球",
"name": {
"zh-Hans": "YAB棒球"
},
"executable": "YAB",
"type": "SIM",
"sha256": "a1246e272de9c4ca7f71d22e372926103b828c1d278a71cca8c58d35575d0294",
"filesize": 356262,
"coverFilename": "cover.png"
},
"YES!HG": {
"identifier": "YES!HG",
"name": {
"zh-Hans": "YES!HG"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "278d7f2e5be7abde13698ab8d3580a4b6251ce09cddb6a2072fcabf92deb2f9b",
"coverFilename": "cover.jpg",
"filesize": 6272953
},
"Z字特工队": {
"identifier": "Z字特工队",
"name": {
"zh-Hans": "Z字特工队"
},
"executable": "play.bat",
"type": "RTS",
"sha256": "71126081619cb4036b933c18f26e0d2ca77a854b8cf17bdac45ff09d877383be",
"filesize": 12053130
},
"阿尔比恩": {
"identifier": "阿尔比恩",
"name": {
"zh-Hans": "阿尔比恩"
},
"executable": "albilow.bat",
"type": "RPG",
"sha256": "4a29dddce200dd5a20372867a8843ed155ab39071bd6fbcad1e7e759c34feadf",
"filesize": 64730914
},
"阿卡尼亚之地莉娃阴影": {
"identifier": "阿卡尼亚之地莉娃阴影",
"name": {
"zh-Hans": "阿卡尼亚之地莉娃阴影"
},
"executable": "riva.exe",
"type": "RPG",
"sha256": "4c1623f4a04775e9ed5f2164f6c8af76c742eacf3b4accc419082b3d7b438cfe",
"filesize": 45020120,
"coverFilename": "cover.png"
},
"阿卡尼亚之地命运之刃": {
"identifier": "阿卡尼亚之地命运之刃",
"name": {
"zh-Hans": "阿卡尼亚之地命运之刃"
},
"executable": "blade.bat",
"type": "RPG",
"sha256": "2835c7e400ad6b2b7f7a3cbc7c0945dcca6e15df830c2e254d4be7d81f45e82c",
"filesize": 4768482,
"coverFilename": "cover.png"
},
"阿卡尼亚之地星痕": {
"identifier": "阿卡尼亚之地星痕",
"name": {
"zh-Hans": "阿卡尼亚之地星痕"
},
"executable": "star.exe",
"type": "RPG",
"sha256": "9c9efc3ef70c3462f63159bc7ab1567fe5201d3f4454b74a7f212eb937b33a11",
"filesize": 12045649,
"coverFilename": "cover.png"
},
"阿卡特兹": {
"identifier": "阿卡特兹",
"name": {
"zh-Hans": "阿卡特兹"
},
"executable": "alcatraz.exe",
"type": "ACT",
"sha256": "0b5b0220ff84bd30401f996bd6448777bb478f3cf000e0e94576040ea7e91489",
"filesize": 750255,
"coverFilename": "cover.png"
},
"阿拉丁2灯神诅咒": {
"identifier": "阿拉丁2灯神诅咒",
"name": {
"zh-Hans": "阿拉丁2灯神诅咒"
},
"executable": "GENIE.BAT",
"type": "ACT",
"sha256": "6bec2cd2abf863c8e36728f3d653a95e94ff25ecda83ec7cbb9daf6ff89adb3c",
"filesize": 6899515,
"coverFilename": "cover.png"
},
"阿拉丁传奇": {
"identifier": "阿拉丁传奇",
"name": {
"zh-Hans": "阿拉丁传奇"
},
"executable": "aladdin.exe",
"type": "ACT",
"sha256": "cb40b5d342d20f9479fd4eec4a14316d17672bd71024d975652d83e09db97e43",
"filesize": 1799770
},
"阿蕾莎冰封世界": {
"identifier": "阿蕾莎冰封世界",
"name": {
"zh-Hans": "阿蕾莎冰封世界"
},
"executable": "aleshar",
"type": "RPG",
"sha256": "857ca7f473968836d03b9f56126e6d728eb7a94f9760d7db3dcbadbc9beb7b36",
"filesize": 2662805
},
"阿曼达2525": {
"identifier": "阿曼达2525",
"name": {
"zh-Hans": "阿曼达2525"
},
"executable": "2525de.exe",
"type": "SLG",
"sha256": "fae917272e410217b2c5ee4d449364c7d52658a85cf7b9dd4e1a42a2d750b6ed",
"filesize": 1289015,
"coverFilename": "cover.png"
},
"阿曼尼开国启示录": {
"identifier": "阿曼尼开国启示录",
"name": {
"zh-Hans": "阿曼尼开国启示录"
},
"executable": "play",
"type": "SPG",
"sha256": "c5ddb90ec365e8620fbe8b2665e8b3a3fb6adadec2b46e6cf76c4deaaf6508a1",
"filesize": 4284526,
"coverFilename": "cover.png"
},
"阿曼尼斯传说3": {
"identifier": "阿曼尼斯传说3",
"name": {
"zh-Hans": "阿曼尼斯传说3"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "d71ce841c790f9697d46bdd95bd5c8695d27c949a872a8aa96c314013a8ef844",
"filesize": 4685907,
"coverFilename": "cover.png"
},
"阿猫阿狗": {
"identifier": "阿猫阿狗",
"name": {
"zh-Hans": "阿猫阿狗"
},
"executable": "tuntown",
"type": "RPG",
"sha256": "4866351535078024f6a78446ddb25ccba1b051ae1473d0d0ee80f4b54e96bd62",
"coverFilename": "cover.jpg",
"cdrom": "no",
"filesize": 176421078
},
"阿瓦隆": {
"identifier": "阿瓦隆",
"name": {
"zh-Hans": "阿瓦隆"
},
"executable": "avalon",
"type": "RPG",
"sha256": "765c3b9ca03658610715d6ababec16015dbf5f8c6f45c625c1721f824a39cba1",
"filesize": 1457855,
"coverFilename": "cover.png"
},
"哀伤罗曼史": {
"identifier": "哀伤罗曼史",
"name": {
"zh-Hans": "哀伤罗曼史"
},
"executable": "start",
"type": "AVG",
"sha256": "24dfbcd3b8e9fe403feec865d6c7ed3b09010b5d6af3fedc845bb1b3e416ab2a",
"filesize": 8179043
},
"埃及统治者": {
"identifier": "埃及统治者",
"name": {
"zh-Hans": "埃及统治者"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "d194d17b8d63e4d94be92f486fbe8a4d3d93926f5e709aecd247084b79a99e41",
"filesize": 410915,
"coverFilename": "cover.png"
},
"艾薇拉": {
"identifier": "艾薇拉",
"name": {
"zh-Hans": "艾薇拉"
},
"executable": "elvira.bat",
"type": "RPG",
"sha256": "ecf17dc1c979fe5c6162e0d1e43cdc14df9afc14ae95edfbd28f23769345a826",
"filesize": 4661517,
"coverFilename": "cover.png"
},
"艾薇拉2": {
"identifier": "艾薇拉2",
"name": {
"zh-Hans": "艾薇拉2"
},
"executable": "cerberus",
"type": "RPG",
"sha256": "4f785eeaaa8376a293e9b7fec3c10fbacafed5e5f5708013f691805bf23236dc",
"filesize": 3134598,
"coverFilename": "cover.png"
},
"艾薇拉动作版": {
"identifier": "艾薇拉动作版",
"name": {
"zh-Hans": "艾薇拉动作版"
},
"executable": "elvira.bat",
"type": "ACT",
"sha256": "f0c7d89e5d1d3d528931bde36b8a0409503b03662d3556e5fec9f12fe9e29caa",
"filesize": 2379653
},
"爱之物语": {
"identifier": "爱之物语",
"name": {
"zh-Hans": "爱之物语"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "256b01f88d86b8bf171f1dd0f15a2d08df0b10383a28ca76ba00188cc69ec564",
"filesize": 4815741,
"coverFilename": "cover.png"
},
"爱之物语2": {
"identifier": "爱之物语2",
"name": {
"zh-Hans": "爱之物语2"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "b81d258eb71bae8a40332345b5c14d3131c3a73404352b1694bc9ea58dfcfa01",
"filesize": 4419525
},
"爱之物语3": {
"identifier": "爱之物语3",
"name": {
"zh-Hans": "爱之物语3"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "55323167806ba70f1e31a17e412a3a09af097269735e00118eba08c964bde585",
"filesize": 4811999,
"coverFilename": "cover.png"
},
"安雅战机": {
"identifier": "安雅战机",
"name": {
"zh-Hans": "安雅战机"
},
"executable": "game",
"type": "ACT",
"sha256": "2fcf120858db2b57552ecf6c561dbead81513167a1437f9662ae4b2956f7566a",
"filesize": 418326,
"coverFilename": "cover.png"
},
"暗狼(共享版)": {
"identifier": "暗狼(共享版)",
"name": {
"zh-Hans": "暗狼(共享版)"
},
"executable": "darkwolf",
"type": "ACT",
"sha256": "3d88c290e187e943bf960f770ca6474b2a2a8df202cf9e95933183e6df044252",
"filesize": 723597,
"coverFilename": "cover.png"
},
"暗棋侏罗纪": {
"identifier": "暗棋侏罗纪",
"name": {
"zh-Hans": "暗棋侏罗纪"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "d26c38954064a749f4ae6a83d3824258310aa987e593d0cb90d456b4f4808ba8",
"coverFilename": "cover.png",
"filesize": 2917200
},
"暗色": {
"identifier": "暗色",
"name": {
"zh-Hans": "暗色"
},
"executable": "darker.bat",
"type": "SIM",
"sha256": "de2674446bdea418c1562509c74568fb03167ad9399dba42b30e020d5f89c4be",
"filesize": 5379005,
"coverFilename": "cover.png"
},
"暗影术士": {
"identifier": "暗影术士",
"name": {
"zh-Hans": "暗影术士"
},
"executable": "shadow.bat",
"type": "ACT",
"sha256": "54ad0f36b29b84a633699ddbabc977c98f6b4a988d4e04f1d643869cba0b7f90",
"filesize": 6240008,
"coverFilename": "cover.png"
},
"暗影武士": {
"identifier": "暗影武士",
"name": {
"zh-Hans": "暗影武士"
},
"executable": "sw.exe",
"type": "ACT",
"sha256": "31806c36fef8353fcad2c228778f4f833a6275ea912084031eb064676561e24e",
"filesize": 113701834,
"coverFilename": "cover.png"
},
"暗影之地": {
"identifier": "暗影之地",
"name": {
"zh-Hans": "暗影之地"
},
"executable": "shadow",
"type": "RPG",
"sha256": "252ec2c69bcde6f6b30d5c6a3e929c161f06847bf692efc620b64ab284b58655",
"filesize": 321365
},
"暗影之力": {
"identifier": "暗影之力",
"name": {
"zh-Hans": "暗影之力"
},
"executable": "sforce.bat",
"type": "AVG",
"sha256": "1aed340cb622db9d02109b10b8084d1c9537da043007e6c2a921e2fd815c68e5",
"filesize": 2177715
},
"暗之纹章": {
"identifier": "暗之纹章",
"name": {
"zh-Hans": "暗之纹章"
},
"executable": "m.exe",
"type": "RPG",
"sha256": "877d2ca7ee0e565113717c36398d52e29ae5c40d15ab541f3844a9bf865b006c",
"filesize": 9569782,
"coverFilename": "cover.png"
},
"奥尼大作战2": {
"identifier": "奥尼大作战2",
"name": {
"zh-Hans": "奥尼大作战2"
},
"executable": "arnie2",
"type": "ACT",
"sha256": "32279682de06a8bb17e61d63965a7abf29c322dad65015b62f93737b65d936cd",
"filesize": 367627
},
"八女神物语": {
"identifier": "八女神物语",
"name": {
"zh-Hans": "八女神物语"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "e0473653505c479cd307cd4f0e7675c80393e63617fd66698f50a967de203649",
"filesize": 11620047,
"coverFilename": "cover.png"
},
"八女神物语2": {
"identifier": "八女神物语2",
"name": {
"zh-Hans": "八女神物语2"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "5b19b21f79762514aac2dee48032b217cdb9cb06bdc170aa694c7eb4df8b9513",
"filesize": 9597550
},
"巴克罗杰矩阵立方": {
"identifier": "巴克罗杰矩阵立方",
"name": {
"zh-Hans": "巴克罗杰矩阵立方"
},
"executable": "start.exe",
"type": "RPG",
"sha256": "32824c0d1261c937f4ecb48f7f1bb90464a0431c879ac1ca70825161beaff203",
"filesize": 1062423,
"coverFilename": "cover.png"
},
"巴克罗杰末日倒数": {
"identifier": "巴克罗杰末日倒数",
"name": {
"zh-Hans": "巴克罗杰末日倒数"
},
"executable": "start.exe",
"type": "RPG",
"sha256": "c20cc63b9a3090df920b2a5d091f316eb96a81c833620d8a0ad5b7c0b77c7a1a",
"filesize": 946168,
"coverFilename": "cover.png"
},
"巴士帝国": {
"identifier": "巴士帝国",
"name": {
"zh-Hans": "巴士帝国"
},
"links": {
"巴士帝国密码": "https://github.com/Xunius/bus_empire_passwords"
},
"executable": "bus.bat",
"type": "SIM",
"sha256": "03839acab4ad1e65c9a6e2c37cb78d497ab276cdd90d6c7b2b65acf35dbcde35",
"filesize": 1177377
},
"芭比超级模特": {
"identifier": "芭比超级模特",
"name": {
"zh-Hans": "芭比超级模特"
},
"executable": "barbie.exe",
"type": "ACT",
"sha256": "2568efc008a3f9ae7712d4f401e8f93780d7bec6c3459e1dda0dfa6e7e4c296b",
"filesize": 1711440
},
"白银塔里斯曼传奇": {
"identifier": "白银塔里斯曼传奇",
"name": {
"zh-Hans": "白银塔里斯曼传奇"
},
"executable": "GO.BAT",
"type": "RPG",
"sha256": "6cda9466f15888971ab52189294c8c405042b1115c4de34af19e961e40ac6951",
"filesize": 505247,
"coverFilename": "cover.png"
},
"百夫长罗马防御": {
"identifier": "百夫长罗马防御",
"name": {
"zh-Hans": "百夫长罗马防御"
},
"executable": "runme.bat",
"type": "SLG",
"sha256": "cd0a52535192c3c6a517e373ddd82b5fde8c77d094d34ff7f9d7b5522d6d7d90",
"filesize": 935645,
"coverFilename": "cover.png"
},
"百战百胜": {
"identifier": "百战百胜",
"name": {
"zh-Hans": "百战百胜"
},
"executable": "a.bat",
"type": "PUZ",
"sha256": "8a66e68b7c599a4f4a82aa039e800854b47e0113c87c46e824f24882e7202ce8",
"filesize": 417885
},
"百战地虫": {
"identifier": "百战地虫",
"name": {
"zh-Hans": "百战地虫"
},
"executable": "liero",
"type": "ACT",
"sha256": "7116baacede17b5678df3f937a59727ee2c6dc169c402cec916b0656e4eb0704",
"filesize": 443821
},
"百战爬虫": {
"identifier": "百战爬虫",
"name": {
"zh-Hans": "百战爬虫"
},
"executable": "creepers.exe",
"type": "PUZ",
"sha256": "a251209519a93499ddc8e8a5cfe2c18d6222aaefd04693fc7efac7b3ed8c9f9b",
"filesize": 933236,
"coverFilename": "cover.png"
},
"百战水管工": {
"identifier": "百战水管工",
"name": {
"zh-Hans": "百战水管工"
},
"executable": "pipe.exe",
"type": "PUZ",
"sha256": "8aacfa6acfd9a603952d1e11b76370a9a00da722dc73eb84ca2cd401c14e6864",
"filesize": 550052,
"coverFilename": "cover.png"
},
"百战天虫": {
"identifier": "百战天虫",
"name": {
"zh-Hans": "百战天虫"
},
"executable": "WORMS2.BAT",
"type": "ACT",
"sha256": "fa8ce2c63518667a5ff6a44fa36f9b3902b7fc1bc135d78acad0fc5f7b344439",
"filesize": 1944824,
"coverFilename": "cover.png"
},
"百战天虫光碟版": {
"identifier": "百战天虫光碟版",
"name": {
"zh-Hans": "百战天虫光碟版"
},
"executable": "worms.bat",
"type": "ACT",
"sha256": "9be0a3cbbff3c303e658ea4100f8603f2fe2ff98ecd5fc324e9bf33c5446f330",
"img": "cd/WORMSUNITED.cue",
"filesize": 574238727
},
"班级99": {
"identifier": "班级99",
"name": {
"zh-Hans": "班级99"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "0f797b2cbbd4246c786f11a87de040c30dacb1495266987cf01fad15c1ce3331",
"filesize": 838310,
"coverFilename": "cover.png"
},
"板球97": {
"identifier": "板球97",
"name": {
"zh-Hans": "板球97"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "038e7e47248ed461d69ea3a5d752a9eb4ff8778632a625112212b68bff84d8cb",
"filesize": 12999289,
"coverFilename": "cover.png"
},
"棒棒糖": {
"identifier": "棒棒糖",
"name": {
"zh-Hans": "棒棒糖"
},
"executable": "lolly.bat",
"type": "ACT",
"sha256": "786ec49e267b09861f88ca51c403913191d2e4f1be77337c802be7eb8e5f3a87",
"filesize": 2405098,
"coverFilename": "cover.png"
},
"棒球大联盟3": {
"identifier": "棒球大联盟3",
"name": {
"zh-Hans": "棒球大联盟3"
},
"executable": "hb.bat",
"type": "SIM",
"sha256": "45f664e8954fb14bf62f8973a8cc87805470dd50c5c14b1ad2541f6060a35e1e",
"filesize": 1133452,
"coverFilename": "cover.png"
},
"棒球大联盟4": {
"identifier": "棒球大联盟4",
"name": {
"zh-Hans": "棒球大联盟4"
},
"executable": "hb4.exe",
"type": "SIM",
"sha256": "f85f740b1099be855c6cba2262570a54de3738c8eaf9a215bde68650336936d6",
"filesize": 11554600,
"coverFilename": "cover.png"
},
"宝藏陷阱": {
"identifier": "宝藏陷阱",
"name": {
"zh-Hans": "宝藏陷阱"
},
"executable": "tt.bat",
"type": "ACT",
"sha256": "1ab12d802d651d3e0a2346190044b5a4b6620bf0855a920c0cc8eb08a79b11c4",
"filesize": 648162
},
"宝里宝气骑士": {
"identifier": "宝里宝气骑士",
"name": {
"zh-Hans": "宝里宝气骑士"
},
"executable": "eric.exe",
"type": "AVG",
"sha256": "218d127b5e9665470e1d581612bf5997494867ce4356fdc723da2665b7048836",
"filesize": 5844473,
"coverFilename": "cover.png"
},
"宝石迷阵": {
"identifier": "宝石迷阵",
"name": {
"zh-Hans": "宝石迷阵"
},
"executable": "xixit",
"type": "PUZ",
"sha256": "11b64f8cc085ac1bacd9340e3523e6e6419d038912be86ce8ecfef8c4800bf0a",
"filesize": 824098,
"coverFilename": "cover.png"
},
"堡垒防卫战/领国战役": {
"identifier": "堡垒防卫战/领国战役",
"name": {
"zh-Hans": "堡垒防卫战/领国战役"
},
"executable": "RAMPART.EXE",
"type": "SLG",
"sha256": "df5cf1b6fbdc45e4c555853cce0d1cedfa46bae6a2cc12d428da46a2565c9718",
"filesize": 897356,
"coverFilename": "cover.png"
},
"报应": {
"identifier": "报应",
"name": {
"zh-Hans": "报应"
},
"executable": "runme.bat",
"type": "SIM",
"sha256": "48cc8ae6c799425deeacc316e1b16438639880f0830ff23657a4c0c737891a30",
"filesize": 106022947,
"coverFilename": "cover.png"
},
"鲍勃逃离地狱": {
"identifier": "鲍勃逃离地狱",
"name": {
"zh-Hans": "鲍勃逃离地狱"
},
"executable": "bobhell",
"type": "ACT",
"sha256": "09b1aa474e43591b0f55061f8632b5b43bef71d32ce8d199753312b3a9273e16",
"filesize": 1741002
},
"鲍勃跳跃因子": {
"identifier": "鲍勃跳跃因子",
"name": {
"zh-Hans": "鲍勃跳跃因子"
},
"executable": "bob",
"type": "ACT",
"sha256": "13f03dd0d706c342c9321accaed21b5fc54641fc6ac553ad03f59f570f518060",
"filesize": 202313
},
"暴力辛迪加": {
"identifier": "暴力辛迪加",
"name": {
"zh-Hans": "暴力辛迪加"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "bd05c3a05c661b9d88b5283bd3de772e0ec62b9a37a7310e742519d7a8cdf654",
"filesize": 14755541
},
"暴怒终结者": {
"identifier": "暴怒终结者",
"name": {
"zh-Hans": "暴怒终结者"
},
"executable": "term.bat",
"type": "ACT",
"sha256": "cd63bbfb9529933ee976399c7172fd4b827638c67a54ee05feb486859d64d641",
"filesize": 7691927,
"coverFilename": "cover.png"
},
"爆笑保龄球": {
"identifier": "爆笑保龄球",
"name": {
"zh-Hans": "爆笑保龄球"
},
"executable": "bowling.com",
"type": "PUZ",
"sha256": "7f251ac5620816de966a4591a0af581d1980c2caf86aff442447a1a12ca757e6",
"filesize": 1047917,
"coverFilename": "cover.png"
},
"爆笑出击": {
"identifier": "爆笑出击",
"name": {
"zh-Hans": "爆笑出击"
},
"executable": "air.exe",
"type": "ACT",
"sha256": "852efc066d6878ffdf5ac5723c7ab2652a40e002ea9dc1e26b213ad031a3db9d",
"cdrom": "no",
"filesize": 2054609
},
"爆笑躲避球": {
"identifier": "爆笑躲避球",
"name": {
"zh-Hans": "爆笑躲避球"
},
"executable": "cdodge.exe",
"type": "ACT",
"sha256": "c72293e595d07236a3fe2a6d5b23bc8ce0878ebeddca34b893eaef8d40e1942f",
"filesize": 2085541,
"coverFilename": "cover.png"
},
"爆笑三国志": {
"identifier": "爆笑三国志",
"name": {
"zh-Hans": "爆笑三国志"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "3aa5715d51e93a4b9958b96784233badbafa584f218e56ad4c653ee36667ed39",
"filesize": 5378668,
"coverFilename": "cover.png"
},
"爆笑水浒传": {
"identifier": "爆笑水浒传",
"name": {
"zh-Hans": "爆笑水浒传"
},
"executable": "model",
"type": "PUZ",
"sha256": "822d0fcc74d6e9245f40792b9a599fc9a52971c0dd53602100399a9a703214c3",
"img": "CD/BXSHZ.cue",
"filesize": 95541626
},
"悲恋湖杀人事件": {
"identifier": "悲恋湖杀人事件",
"name": {
"zh-Hans": "悲恋湖杀人事件"
},
"executable": "sadlake.exe",
"type": "AVG",
"sha256": "af38378cbd9cc761e5551641c630f64f5fe41b5e35754070b3b3f500c24e5db8",
"filesize": 2224593
},
"北极行动": {
"identifier": "北极行动",
"name": {
"zh-Hans": "北极行动"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "3a524f4a833c2143cf10d3ec99dcc5e0207f908ac9a2df0b1156834c722ab897",
"filesize": 810246,
"coverFilename": "cover.png"
},
"北太平洋海战": {
"identifier": "北太平洋海战",
"name": {
"zh-Hans": "北太平洋海战"
},
"executable": "gnbna.bat",
"type": "SIM",
"sha256": "4253ae3bb449c233d780c9db0238bddd40f7e626a68703f3c9d2a00417b574d6",
"filesize": 3163909,
"coverFilename": "cover.png"
},
"贝多芬二世犬": {
"identifier": "贝多芬二世犬",
"name": {
"zh-Hans": "贝多芬二世犬"
},
"executable": "btvn",
"type": "ACT",
"sha256": "bb0308d200e1c66971ae937ccfa289f23c5b0ea2b2e2b9630c4c336ef836b50b",
"filesize": 442812,
"coverFilename": "cover.png"
},
"贝弗利山人": {
"identifier": "贝弗利山人",
"name": {
"zh-Hans": "贝弗利山人"
},
"executable": "hb",
"type": "AVG",
"sha256": "1cda0a9ed28434bee6c7956555781aa2508c53178b368c1629e1413425f75020",
"filesize": 2591651,
"coverFilename": "cover.png"
},
"被遗忘的世界": {
"identifier": "被遗忘的世界",
"name": {
"zh-Hans": "被遗忘的世界"
},
"executable": "runme.bat",
"type": "ACT",
"sha256": "a6426fab3ed888dbe1bff54f7ab5e1554f7b308b0a3c8cc9201efbe85d94af1b",
"filesize": 412742
},
"被遗忘之地": {
"identifier": "被遗忘之地",
"name": {
"zh-Hans": "被遗忘之地"
},
"executable": "start.bat",
"type": "RPG",
"sha256": "13d524433f49a6f0d9776bcd4623472e2fa582a08f622c250b554a1ac598cf23",
"filesize": 2695820,
"coverFilename": "cover.png"
},
"边境宝藏": {
"identifier": "边境宝藏",
"name": {
"zh-Hans": "边境宝藏"
},
"executable": "start.bat",
"type": "RPG",
"sha256": "3c703b547a169dc12813b96f82fd968acae88917832d6866caf4ce7a2823aad7",
"filesize": 1459192,
"coverFilename": "cover.png"
},
"蝙蝠侠电影版": {
"identifier": "蝙蝠侠电影版",
"name": {
"zh-Hans": "蝙蝠侠电影版"
},
"executable": "batman",
"type": "ACT",
"sha256": "5432144a7cce96709055d04958a04ea5d07dfdd459a3ea92b2f6c28e2b6dde3c",
"filesize": 389979
},
"蝙蝠侠归来": {
"identifier": "蝙蝠侠归来",
"name": {
"zh-Hans": "蝙蝠侠归来"
},
"executable": "BATMAN.EXE",
"type": "AVG",
"sha256": "5289c3fe5fe7d12f424c7d28ed94ae5972b9f8304666bf6dae4dd1345b6b39d5",
"filesize": 8368160,
"coverFilename": "cover.png"
},
"变态杀手": {
"identifier": "变态杀手",
"name": {
"zh-Hans": "变态杀手"
},
"executable": "phycho.bat",
"type": "AVG",
"sha256": "327e1ae234d20881ac1a00a9c70f9e80611156ba87c7842beaa6b80179f7cdbd",
"filesize": 57175477
},
"飚车小子": {
"identifier": "飚车小子",
"name": {
"zh-Hans": "飚车小子"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "45f307ac526d06b755c21cc116f899647715539816b24783346a6c35c5d9b666",
"filesize": 2409104,
"coverFilename": "cover.png"
},
"冰城传奇": {
"identifier": "冰城传奇",
"name": {
"zh-Hans": "冰城传奇"
},
"executable": "bard.exe",
"type": "RPG",
"sha256": "47e00d2024d26d01092ebab866fa9f96567af25c9bccfcadb50954d30710a8cc",
"filesize": 522256,
"coverFilename": "cover.png"
},
"冰城传奇2": {
"identifier": "冰城传奇2",
"name": {
"zh-Hans": "冰城传奇2"
},
"executable": "dk.exe",
"type": "RPG",
"sha256": "ee88fa83e11ffe4584c9f933e6e059959e3cf302c810f3525bcd51515cad686c",
"filesize": 510534,
"coverFilename": "cover.png"
},
"冰城传奇3": {
"identifier": "冰城传奇3",
"name": {
"zh-Hans": "冰城传奇3"
},
"executable": "thief.exe",
"type": "RPG",
"sha256": "e8d3fd0a1fd5e16672abbf45c92a0911c2b7c28519885f8d24749c54226c468b",
"filesize": 848063,
"coverFilename": "cover.png"
},
"冰冷之梦": {
"identifier": "冰冷之梦",
"name": {
"zh-Hans": "冰冷之梦"
},
"executable": "runme.bat",
"type": "ACT",
"sha256": "ccc1ce102e18b6b451f5d5c2c286e794323bb298e640f4e633a6a3de9322ae4a",
"img": "CDREAM1.ISO",
"filesize": 3206171
},
"冰球95": {
"identifier": "冰球95",
"name": {
"zh-Hans": "冰球95"
},
"executable": "hockey",
"type": "SIM",
"sha256": "0f3e89392c2cf95f73d96ec4b7b08ec606ebda21e2d2d34e1e1be532884e9154",
"filesize": 5190200,
"coverFilename": "cover.png"
},
"冰球联赛97": {
"identifier": "冰球联赛97",
"name": {
"zh-Hans": "冰球联赛97"
},
"executable": "hockey",
"type": "SIM",
"sha256": "718fa3113555d3cf5588c1c0dcb5c74d2f1572f07bfedebf26a5245df4b6159c",
"filesize": 59371134,
"coverFilename": "cover.png"
},
"冰与火": {
"identifier": "冰与火",
"name": {
"zh-Hans": "冰与火"
},
"executable": "FIRE.EXE",
"type": "ACT",
"sha256": "4e8dfc60bde09b1bd943e57c6cd6ae1ae0e5c133260811ae96f429c719efa6ef",
"filesize": 750714,
"coverFilename": "cover.png"
},
"波士顿守卫者": {
"identifier": "波士顿守卫者",
"name": {
"zh-Hans": "波士顿守卫者"
},
"executable": "dob",
"type": "RPG",
"sha256": "1ba19d717bdea01dd4167f0345e7648a3b55ae76bb9202c6e0b3ede7b9fd00ff",
"filesize": 714963
},
"波斯王子": {
"identifier": "波斯王子",
"name": {
"zh-Hans": "波斯王子"
},
"executable": "prince",
"type": "ACT",
"sha256": "3931da367e23da685ad4858a68cf1ddcf71ab4949834c0b6cffc02c129c89701",
"filesize": 1356322,
"coverFilename": "cover.png"
},
"波斯王子2": {
"identifier": "波斯王子2",
"name": {
"zh-Hans": "波斯王子2"
},
"executable": "prince",
"type": "ACT",
"sha256": "9957d5d4a4af7bbb95719dcf07460ffad8f0eb434fcfcde1959eabd99a4d40eb",
"filesize": 5084112,
"coverFilename": "cover.png"
},
"波斯王子民间改版": {
"identifier": "波斯王子民间改版",
"name": {
"zh-Hans": "波斯王子民间改版"
},
"executable": "4d_prin.exe",
"type": "ACT",
"sha256": "b53c32b67b8c5ae42774181936e27ff3544bd4b131c9a01a5e90125d376e294e",
"filesize": 634700,
"coverFilename": "cover.png"
},
"博比教你国际象棋": {
"identifier": "博比教你国际象棋",
"name": {
"zh-Hans": "博比教你国际象棋"
},
"executable": "bftc",
"type": "PUZ",
"sha256": "cfc63c1e57e2d3b0b4ca04e80faac060d090079adaa0843fc89cfb1f67819118",
"filesize": 2757178,
"coverFilename": "cover.png"
},
"博物馆惊魂夜": {
"identifier": "博物馆惊魂夜",
"name": {
"zh-Hans": "博物馆惊魂夜"
},
"executable": "museum",
"type": "AVG",
"sha256": "73dc9f24d8fb34d8f18df55c3d7b485e2b3b4cf0807bf8d9f9acf996cf4677f7",
"filesize": 8280785,
"coverFilename": "cover.png"
},
"捕猎行动": {
"identifier": "捕猎行动",
"name": {
"zh-Hans": "捕猎行动"
},
"executable": "shunt",
"type": "ACT",
"sha256": "1596a37a7052dbb78cc4b33681efd6df5a62295aef4e50af5d53a0786f76e34c",
"filesize": 10310935,
"coverFilename": "cover.png"
},
"不给糖就捣蛋": {
"identifier": "不给糖就捣蛋",
"name": {
"zh-Hans": "不给糖就捣蛋"
},
"executable": "tot.exe",
"type": "AVG",
"sha256": "adcd96ee7d69a502737aecd6f46bd2eb1b88c2020625c5c52b81f4132f916331",
"img": "cd/tot.cue",
"filesize": 26327660,
"coverFilename": "cover.png"
},
"不可思议的机器": {
"identifier": "不可思议的机器",
"name": {
"zh-Hans": "不可思议的机器"
},
"executable": "tim",
"type": "PUZ",
"sha256": "7bfec7dabbe965632d4c6882c6e0581450c7faedea17f80951ef7f680beb96d3",
"filesize": 456810,
"coverFilename": "cover.png"
},
"不可思议的机器2": {
"identifier": "不可思议的机器2",
"name": {
"zh-Hans": "不可思议的机器2"
},
"executable": "tim2",
"type": "PUZ",
"sha256": "f49ef07487786fcf94723d7a644c7ee08de4f4045be6dc7d2aa43ea2573f8375",
"filesize": 2561921,
"coverFilename": "cover.png"
},
"不可思议的机器拓展包": {
"identifier": "不可思议的机器拓展包",
"name": {
"zh-Hans": "不可思议的机器拓展包"
},
"executable": "TIM",
"type": "PUZ",
"sha256": "d6ae2ef8217d807da9f8275b287dc980bf3cee0f05bbf685a7b42f8fc04466af",
"filesize": 697228,
"coverFilename": "cover.png"
},
"不朽之人": {
"identifier": "不朽之人",
"name": {
"zh-Hans": "不朽之人"
},
"executable": "immortal.com",
"type": "RPG",
"sha256": "a6ce85e4c41f7893723881667679b4b523643b682ae1060e3f4ebbea03b647bd",
"filesize": 560834,
"coverFilename": "cover.png"
},
"布莱克之石异星黄金": {
"identifier": "布莱克之石异星黄金",
"name": {
"zh-Hans": "布莱克之石异星黄金"
},
"executable": "bstone.bat",
"type": "ACT",
"sha256": "60d55f003164fe5712a9041fb93c2471e43d50ac7fb726eae3410624174e6fc1",
"filesize": 5580473
},
"布莱克之石异星突击": {
"identifier": "布莱克之石异星突击",
"name": {
"zh-Hans": "布莱克之石异星突击"
},
"executable": "planet.bat",
"type": "ACT",
"sha256": "6757ec340f5b38e553755221edeb5e097f9efd10f3d0588e6db410d493906783",
"filesize": 2185414,
"coverFilename": "cover.png"
},
"部落": {
"identifier": "部落",
"name": {
"zh-Hans": "部落"
},
"executable": "horde.exe",
"type": "SIM",
"sha256": "7f3c3f4461be6af69bb8f15ccee3ad6a0ff5a540636b9dc79e213deddbecceca",
"filesize": 8697560,
"coverFilename": "cover.png"
},
"残酷世界": {
"identifier": "残酷世界",
"name": {
"zh-Hans": "残酷世界"
},
"executable": "cruel.bat",
"type": "ACT",
"sha256": "d69d60c82be9c10db337b7ab2450edadb1f75ec4328e3c116216c50ba4d6781b",
"filesize": 1022088,
"coverFilename": "cover.png"
},
"残杀行动": {
"identifier": "残杀行动",
"name": {
"zh-Hans": "残杀行动"
},
"executable": "carnage.exe",
"type": "ACT",
"sha256": "df54f98e42143b27a40301354343a322b044e840d33e3a2ffa90ad2c271240a5",
"filesize": 2970123,
"coverFilename": "cover.png"
},
"苍白之地": {
"identifier": "苍白之地",
"name": {
"zh-Hans": "苍白之地"
},
"executable": "lland.exe",
"type": "ACT",
"sha256": "96694ecd83b1bef7b69ccfa1a9059d3865a9921180ff80b49dc131a390a31b4a",
"cdrom": "no",
"filesize": 24295509,
"coverFilename": "cover.png"
},
"钞票强强滚": {
"identifier": "钞票强强滚",
"name": {
"zh-Hans": "钞票强强滚"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "1676d1b8df45baddf6e16d3b802950960ce68fac55b974ae4eb2df6c113d7c75",
"filesize": 10043551,
"coverFilename": "cover.png"
},
"超凡蜘蛛侠": {
"identifier": "超凡蜘蛛侠",
"name": {
"zh-Hans": "超凡蜘蛛侠"
},
"executable": "spidey",
"type": "ACT",
"sha256": "d89a2acd525b2041f84eb74988bf2a2a5d857bf707ba5d9f5325afef7cc02201",
"filesize": 186929
},
"超级超越竞速": {
"identifier": "超级超越竞速",
"name": {
"zh-Hans": "超级超越竞速"
},
"executable": "trout",
"type": "SIM",
"sha256": "e56819960039261c7f4893193d0a8b38077fcb12f0d73d39c7b11a9a35192e14",
"filesize": 885465,
"coverFilename": "cover.png"
},
"超级大富翁": {
"identifier": "超级大富翁",
"name": {
"zh-Hans": "超级大富翁"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "f7b6f09c418a257446a5436a292825988902dafeb1e4f9218f9e82cb06f16f7d",
"coverFilename": "cover.png",
"filesize": 5434838
},
"超级大战略": {
"identifier": "超级大战略",
"name": {
"zh-Hans": "超级大战略"
},
"executable": "super.exe",
"type": "SLG",
"sha256": "bbe44b236a49925b54809c238fc86dcf919eb0a3d58cf860b824624da23610c5",
"filesize": 336904,
"coverFilename": "cover.png"
},
"超级俄罗斯方块": {
"identifier": "超级俄罗斯方块",
"name": {
"zh-Hans": "超级俄罗斯方块"
},
"executable": "supertet",
"type": "PUZ",
"sha256": "8d4ccbe424e2f5162f2bff48121177a8b651fb1ce288f47e7d44af02f3d76392",
"filesize": 572852,
"coverFilename": "cover.png"
},
"超级国际象棋2": {
"identifier": "超级国际象棋2",
"name": {
"zh-Hans": "超级国际象棋2"
},
"executable": "chess",
"type": "PUZ",
"sha256": "ce660f75e1a79e31fcf45941980618f1aad8931b767602d7f0302bd038b26b19",
"filesize": 4171879,
"coverFilename": "cover.png"
},
"超级滑雪2": {
"identifier": "超级滑雪2",
"name": {
"zh-Hans": "超级滑雪2"
},
"executable": "SUPERSKI.BAT",
"type": "SIM",
"sha256": "776e4097ababa55e27e860e8a0603777d680d6c206a5b0675b7fcb4fb578d7f2",
"filesize": 1136035,
"coverFilename": "cover.png"
},
"超级滑雪3": {
"identifier": "超级滑雪3",
"name": {
"zh-Hans": "超级滑雪3"
},
"executable": "ski.bat",
"type": "SIM",
"sha256": "96498c6bdcc74dce123f5493c21ccf443da31ba0fc9515e9dffcdb80337aa0de",
"filesize": 4234785,
"coverFilename": "cover.png"
},
"超级滑雪专业版": {
"identifier": "超级滑雪专业版",
"name": {
"zh-Hans": "超级滑雪专业版"
},
"executable": "ski.exe",
"type": "SIM",
"sha256": "8a111a057ea0706a71d7519d5d26c27c5a606df8d62dcdbb91b38e5677c01e50",
"filesize": 11960265,
"coverFilename": "cover.png"
},
"超级机车赛": {
"identifier": "超级机车赛",
"name": {
"zh-Hans": "超级机车赛"
},
"executable": "sb",
"type": "SIM",
"sha256": "79f5ddd9c0c20f110850826f33dd9eae1002af5483a3d2c99dd564c57afedfa8",
"filesize": 56421,
"coverFilename": "cover.png"
},
"超级街霸2": {
"identifier": "超级街霸2",
"name": {
"zh-Hans": "超级街霸2"
},
"executable": "ssf2t.bat",
"type": "ACT",
"sha256": "9ab32e2ff9920a2f70fbbea3fe524eec22b0461f762d524ca7552a6cb7a92254",
"filesize": 9864724
},
"超级街霸新挑战者": {
"identifier": "超级街霸新挑战者",
"name": {
"zh-Hans": "超级街霸新挑战者"
},
"executable": "SF2.COM",
"type": "ACT",
"sha256": "53cace7f6bc61f65e817dd02aa5a2aecbd9be17c6b5c5810c1d0f96df04a7ddf",
"filesize": 3808621
},
"超级卡丁车": {
"identifier": "超级卡丁车",
"name": {
"zh-Hans": "超级卡丁车"
},
"executable": "kart.exe",
"type": "SIM",
"sha256": "38204c61d8c041896acf2f17b429bda10febd3b51aae15ee02704a9809c3409b",
"filesize": 1306246,
"coverFilename": "cover.png"
},
"超级科曼奇": {
"identifier": "超级科曼奇",
"name": {
"zh-Hans": "超级科曼奇"
},
"executable": "comanche.exe",
"type": "SIM",
"sha256": "d1d8089f7c14616b29d6715209135c2b4fff4ff612f791c7b4d7416869957dd8",
"filesize": 8050550,
"coverFilename": "cover.png"
},
"超级玛丽": {
"identifier": "超级玛丽",
"name": {
"zh-Hans": "超级玛丽"
},
"executable": "mario.exe",
"type": "ACT",
"sha256": "59af4af2ffe17699c213cf41e13ab47276cdce3e534b7b9ef8a3e024e0cec38c",
"filesize": 64867,
"coverFilename": "cover.png"
},
"超级三剑客": {
"identifier": "超级三剑客",
"name": {
"zh-Hans": "超级三剑客"
},
"executable": "st",
"type": "ACT",
"sha256": "597e800d1cad57567b91b2be98731cfa9e8f90d4de536ac760aa8af736bfaed9",
"filesize": 1145194
},
"超级蛙": {
"identifier": "超级蛙",
"name": {
"zh-Hans": "超级蛙"
},
"executable": "sf.exe",
"type": "ACT",
"sha256": "f38d1e43e4308a2a23c8d00bacd70a938f495833339719abf2dee32c27af974d",
"filesize": 2580131
},
"超级五子棋": {
"identifier": "超级五子棋",
"name": {
"zh-Hans": "超级五子棋"
},
"executable": "play.exe",
"type": "PUZ",
"sha256": "2c569ee5378d7a59c2a70ed2fa6df6c3303ea8955016f88db2e587960c399da6",
"cdrom": "no",
"filesize": 12004100,
"coverFilename": "cover.png"
},
"超级星尘": {
"identifier": "超级星尘",
"name": {
"zh-Hans": "超级星尘"
},
"executable": "go.exe",
"type": "ACT",
"sha256": "1b25d4d48387c8bd266c0c5a8f3cd0ce5cecbbe180001e10cbe626f9611f04c1",
"img": "Stardust.iso",
"filesize": 70585204,
"coverFilename": "cover.png"
},
"超级学园麻雀海外版": {
"identifier": "超级学园麻雀海外版",
"name": {
"zh-Hans": "超级学园麻雀海外版"
},
"executable": "scmc2",
"type": "PUZ",
"sha256": "8404f969ebd4b0d391804b42c90d7d9dc036732fec08aff0d697520222664138",
"filesize": 3001149,
"coverFilename": "cover.png"
},
"超级学院麻雀": {
"identifier": "超级学院麻雀",
"name": {
"zh-Hans": "超级学院麻雀"
},
"executable": "SCMC.EXE",
"type": "PUZ",
"sha256": "515b6babc88391935711a63ee8cd4d684d7326b08f7107f0181c23964002279f",
"filesize": 741799,
"coverFilename": "cover.png"
},
"超级英雄联盟": {
"identifier": "超级英雄联盟",
"name": {
"zh-Hans": "超级英雄联盟"
},
"executable": "LEGEND.BAT",
"type": "AVG",
"sha256": "59750802d9bbc4611a1814ba41c47f69d08cdc5d980ce5fcf02e89b3e7f9f5de",
"filesize": 6599096,
"coverFilename": "cover.png"
},
"超空霸传": {
"identifier": "超空霸传",
"name": {
"zh-Hans": "超空霸传"
},
"executable": "play.bat",
"type": "RTS",
"sha256": "21fce745ba262d92f9270540eb717acbe1d23ec76e9edcf4bc9a0f84e04ce797",
"filesize": 9449408,
"coverFilename": "cover.png"
},
"超人战记": {
"identifier": "超人战记",
"name": {
"zh-Hans": "超人战记"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "2e27334b117920680bfb615303ffe2dfac42d9784fff1577418d0c8871293ecf",
"filesize": 1455366,
"coverFilename": "cover.png"
},
"超时空G点": {
"identifier": "超时空G点",
"name": {
"zh-Hans": "超时空G点"
},
"executable": "qr",
"type": "HGA",
"sha256": "0641956042b20b60ab3338cc369daf65b26d46494f323740b0d88c7ec10a0751",
"filesize": 2400478,
"coverFilename": "cover.png"
},
"超时空要塞": {
"identifier": "超时空要塞",
"name": {
"zh-Hans": "超时空要塞"
},
"executable": "mac.com",
"type": "SPG",
"sha256": "0683842264afe1275a80539526954d6993021a75a67bceb9f416ca627ed22f9c",
"filesize": 2472255
},
"超时空英雄传说": {
"identifier": "超时空英雄传说",
"name": {
"zh-Hans": "超时空英雄传说"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "e49dbd3b2902d7007f89f08030c4656d7ab63c960f551ea6c48763a343a0fb32",
"img": "CD/SUPER.cue",
"filesize": 208736280
},
"超时空英雄传说2": {
"identifier": "超时空英雄传说2",
"name": {
"zh-Hans": "超时空英雄传说2"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "906b63af5e668f33eb7a0d0afe3ea3813518f0a6903128d966ea2ac7bd89f48d",
"img": "CD/SUPER2.cue",
"filesize": 182593186
},
"超时空英雄传说2SP": {
"identifier": "超时空英雄传说2SP",
"name": {
"zh-Hans": "超时空英雄传说2SP"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "7b7ec97986d3862b31d713c914f33c45325edfda84a8d4b88b1f3944e4a73b5e",
"filesize": 293818348
},
"超速驾驶": {
"identifier": "超速驾驶",
"name": {
"zh-Hans": "超速驾驶"
},
"executable": "go.bat",
"type": "SIM",
"sha256": "d9ac7ff4241aad8597ded2bc067e5093349a42a47ea77da25487d3d1ff8d9a7c",
"filesize": 2354701,
"coverFilename": "cover.png"
},
"超未来少女": {
"identifier": "超未来少女",
"name": {
"zh-Hans": "超未来少女"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "e732565818d51566b1753a2d4f2b18f29f768e1a13dfb4525587c5f639196c6a",
"filesize": 5032638,
"coverFilename": "cover.png"
},
"超越Void星": {
"identifier": "超越Void星",
"name": {
"zh-Hans": "超越Void星"
},
"executable": "radix",
"type": "SIM",
"sha256": "bd80043c06fc24da93230e4651faf6b0b53383ed530c5432ef1b116ea71af690",
"filesize": 8452515,
"coverFilename": "cover.png"
},
"超越竞速": {
"identifier": "超越竞速",
"name": {
"zh-Hans": "超越竞速"
},
"executable": "outrun",
"type": "SIM",
"sha256": "8d0c15dc13590da7fd8cbff266f18190ae2d889070fae84c32251519169fe8d9",
"filesize": 488369
},
"超越深渊": {
"identifier": "超越深渊",
"name": {
"zh-Hans": "超越深渊"
},
"executable": "abyss",
"type": "ACT",
"sha256": "75f97f287d3771e17767f4f25905bd95d38e24db95a689af79b123c720e09189",
"filesize": 296817
},
"沉默的舰队": {
"identifier": "沉默的舰队",
"name": {
"zh-Hans": "沉默的舰队"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "607cb047c75a22cb3ad2cdaa89c3842d8b75a8c7d42b550849f46fd1f6b9b307",
"filesize": 2931822,
"coverFilename": "cover.png"
},
"沉默潜航2": {
"identifier": "沉默潜航2",
"name": {
"zh-Hans": "沉默潜航2"
},
"executable": "SILENT",
"type": "SIM",
"sha256": "3769519f34e25b885c412983076b1034680b5a65867ae0717a007a26f2d8a302",
"filesize": 768919
},
"成吉思汗": {
"identifier": "成吉思汗",
"name": {
"zh-Hans": "成吉思汗"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "891c020a0eaecc922b197d3cb2e47e8db3d682cf9b9fab30cf548f53b7c6660b",
"filesize": 429336
},
"成吉思汗3": {
"identifier": "成吉思汗3",
"name": {
"zh-Hans": "成吉思汗3"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "9ba611cddea2149c98b7bc95fd5a7cf471fb5761c20bb16c22e74b9fed860bf1",
"filesize": 2146019,
"coverFilename": "cover.jpg"
},
"成吉思汗英版": {
"identifier": "成吉思汗英版",
"name": {
"zh-Hans": "成吉思汗英版"
},
"executable": "koei.com",
"type": "SLG",
"sha256": "295d20e792cecc706c1f70ce0cb4c37cc95b4e13a0908b513d4c021b95fe35c2",
"filesize": 2056398
},
"惩罚者": {
"identifier": "惩罚者",
"name": {
"zh-Hans": "惩罚者"
},
"executable": "punisher.com",
"type": "ACT",
"sha256": "392028c50746197744821f3bcf041f9677bd38f17b21d5746eb4fb298bbfb03c",
"filesize": 7314185
},
"吃豆夫人": {
"identifier": "吃豆夫人",
"name": {
"zh-Hans": "吃豆夫人"
},
"executable": "mspacem.bat",
"type": "ACT",
"sha256": "bfbfe541ca956d69a68c916fbd5ab8addb0d05108b4aa6b357b19b9db485d5b5",
"filesize": 709483
},
"吃豆人": {
"identifier": "吃豆人",
"name": {
"zh-Hans": "吃豆人"
},
"executable": "PACEM.BAT",
"type": "ACT",
"sha256": "bf5726fc174dc4989b9377288ceedd6e43331a5dbf957b7bdf05ae746bab8d96",
"filesize": 669622,
"coverFilename": "cover.png"
},
"吃豆人初代": {
"identifier": "吃豆人初代",
"name": {
"zh-Hans": "吃豆人初代"
},
"executable": "pacman",
"type": "ACT",
"sha256": "6679ba77f4de462e4bc72d2970f8cc9a9fa522f3574854a5a69240b0b10b7494",
"filesize": 10617,
"coverFilename": "cover.png"
},
"吃豆人山寨版": {
"identifier": "吃豆人山寨版",
"name": {
"zh-Hans": "吃豆人山寨版"
},
"executable": "cdman.exe",
"type": "PUZ",
"sha256": "8fa0ff21a82937e12941f96e315c5f0abfa7673563e0ae268b1df06112f8b290",
"filesize": 204479,
"coverFilename": "cover.png"
},
"吃豆人时空之旅": {
"identifier": "吃豆人时空之旅",
"name": {
"zh-Hans": "吃豆人时空之旅"
},
"executable": "PAC.EXE",
"type": "PUZ",
"sha256": "cad6b96013e7942f22ef1fe6cfff51bc82c3a1c32f941ec728b83c5a86d0d7c6",
"filesize": 1569723
},
"齿轮游戏": {
"identifier": "齿轮游戏",
"name": {
"zh-Hans": "齿轮游戏"
},
"executable": "gear.exe",
"type": "PUZ",
"sha256": "c53729bce8562d3cdcac6b4888d7683a3d4077a6b107728233fa2168c49bb0c2",
"filesize": 317303,
"coverFilename": "cover.png"
},
"赤壁之战": {
"identifier": "赤壁之战",
"name": {
"zh-Hans": "赤壁之战"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "caae919a41fcba0bb84cb7ed5a7559a51f786202a44f254e2a4970cd238962cf",
"filesize": 3824569,
"coverFilename": "cover.png"
},
"炽天之翼": {
"identifier": "炽天之翼",
"name": {
"zh-Hans": "炽天之翼"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "c9ac1c3b60b370f975877ee99dea998c5682f3d7fb5f3af4a737154fa7636731",
"cdrom": "no",
"filesize": 17513842,
"coverFilename": "cover.png"
},
"臭鼬赛车": {
"identifier": "臭鼬赛车",
"name": {
"zh-Hans": "臭鼬赛车"
},
"executable": "skunnyk",
"type": "SIM",
"sha256": "355da08a23c38a574cf5cccec447814491278b811fb8c2b36e4a663d8be00a64",
"filesize": 1432647
},
"出击飞龙": {
"identifier": "出击飞龙",
"name": {
"zh-Hans": "出击飞龙"
},
"executable": "g.com",
"type": "ACT",
"sha256": "f7fd75056fb1ef27e7cda0eed3c570e0cc9315f308ecf53b8b782ba6e8b077f7",
"filesize": 178350
},
"锄大地2": {
"identifier": "锄大地2",
"name": {
"zh-Hans": "锄大地2"
},
"executable": "big2.bat",
"type": "PUZ",
"sha256": "44db1d39a239b2952f59b821103bb512d83dea82b951947268c178a0a6c273ae",
"filesize": 793525,
"coverFilename": "cover.png"
},
"楚汉之争": {
"identifier": "楚汉之争",
"name": {
"zh-Hans": "楚汉之争"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "b1eec9909fab59bd2d5e86855e6e7f3c60a8536ec292902021daf16d474d943f",
"filesize": 195654
},
"楚汉之争2": {
"identifier": "楚汉之争2",
"name": {
"zh-Hans": "楚汉之争2"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "8f63f2a24654f26338b50b3a9b1564198b350042197fd95fbf7e7c36675cde2c",
"filesize": 1607669,
"coverFilename": "cover.png"
},
"楚留香传奇": {
"identifier": "楚留香传奇",
"name": {
"zh-Hans": "楚留香传奇"
},
"executable": "play.bat",
"type": "AVG",
"sha256": "1a65e9d6bc0489c7bfeba14c6fbf28fba02b1e451422eef810376edb895ba63c",
"filesize": 5200753,
"coverFilename": "cover.png"
},
"穿越之战": {
"identifier": "穿越之战",
"name": {
"zh-Hans": "穿越之战"
},
"executable": "bit.bat",
"type": "SLG",
"sha256": "6266050b6a8372916d7cd90b9270f1b8e14c302a7eab4aa8891c0ea2db670b4a",
"img": "cd.iso",
"filesize": 16684229,
"coverFilename": "cover.png"
},
"传说大陆帝王之子": {
"identifier": "传说大陆帝王之子",
"name": {
"zh-Hans": "传说大陆帝王之子"
},
"executable": "empire.bat",
"type": "RPG",
"sha256": "1be9e1b0a45b57131355277dfeadf523fa56a68469424e68117d52b1f1581b8d",
"filesize": 1952086
},
"传说纪元黑暗之屋": {
"identifier": "传说纪元黑暗之屋",
"name": {
"zh-Hans": "传说纪元黑暗之屋"
},
"executable": "dark.exe",
"type": "RPG",
"sha256": "3dd4c37cd99904f1255e0c80b2945a40bdf4f32d5ec2cb0b534f375a37005968",
"cdrom": "no",
"filesize": 4073617,
"coverFilename": "cover.png"
},
"传说恐惧之夜": {
"identifier": "传说恐惧之夜",
"name": {
"zh-Hans": "传说恐惧之夜"
},
"executable": "LEGACY.BAT",
"type": "RPG",
"sha256": "79fd7b44a54a74003588ffa2da82bbefc27008ca3c4d9dde78e24240292cffec",
"filesize": 10225335,
"coverFilename": "cover.png"
},
"传说时代": {
"identifier": "传说时代",
"name": {
"zh-Hans": "传说时代"
},
"executable": "lore.exe",
"type": "RPG",
"sha256": "2db9c381bbebb3266255fc355ab4b0a3927795740bdcdb0791ee535c2781c886",
"filesize": 272198
},
"传说勇士": {
"identifier": "传说勇士",
"name": {
"zh-Hans": "传说勇士"
},
"executable": "WOFL.EXE",
"type": "RPG",
"sha256": "ba496f8588d123ceafd5bbbc7f0ee88101548c261439a6a7e2b1c56b7ff45430",
"filesize": 3166925,
"coverFilename": "cover.png"
},
"创世弹珠台": {
"identifier": "创世弹珠台",
"name": {
"zh-Hans": "创世弹珠台"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "49b2e9c4c7466b85ae6c1d900dfed086ffa9bc60b34ba57ba3f5726bd82bb616",
"filesize": 2762591,
"coverFilename": "cover.png"
},
"创世封魔传": {
"identifier": "创世封魔传",
"name": {
"zh-Hans": "创世封魔传"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "406ca4721f6b65130d554dc269a119d9b4a82630b12c58c7aa22ea03af449815",
"filesize": 14295313
},
"创世机神": {
"identifier": "创世机神",
"name": {
"zh-Hans": "创世机神"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "359dc3dfde673cc3d9bec9295fbfe965d514496025594f1b45ec4e3d6deea7eb",
"cdrom": "no",
"filesize": 9000555,
"coverFilename": "cover.png"
},
"创世纪1(1987RM版)": {
"identifier": "创世纪1(1987RM版)",
"name": {
"zh-Hans": "创世纪1(1987RM版)"
},
"executable": "ultima.exe",
"type": "RPG",
"sha256": "4584842bd1857ea884da2d97f090f4074a9b3d90fd51eb00ad156fc62abba5e5",
"filesize": 145758,
"coverFilename": "cover.png"
},
"创世纪2": {
"identifier": "创世纪2",
"name": {
"zh-Hans": "创世纪2"
},
"executable": "ultimaII",
"type": "RPG",
"sha256": "1aa8e5c83f223b4300bbe7e30e2c22ab6ea34980f74be207aa94363cc117645a",
"filesize": 67994
},
"创世纪3": {
"identifier": "创世纪3",
"name": {
"zh-Hans": "创世纪3"
},
"executable": "ultima.com",
"type": "RPG",
"sha256": "b790cdb270632e6fb93833253bc417e47a947a4a925132679f7731651c29f26b",
"filesize": 66538,
"coverFilename": "cover.png"
},
"创世纪4": {
"identifier": "创世纪4",
"name": {
"zh-Hans": "创世纪4"
},
"executable": "ultima.com",
"type": "RPG",
"sha256": "1981946f9c4f24c21084e7a2e233b974cff5d2cf2038cb9221e78e4669e01033",
"filesize": 347478,
"coverFilename": "cover.png"
},
"创世纪5": {
"identifier": "创世纪5",
"name": {
"zh-Hans": "创世纪5"
},
"executable": "ultima.exe",
"type": "RPG",
"sha256": "e0e5cbc2d161c0bf395fa71ee9e98be03d05e6bc85e0cc4fcbd669715d7bccb1",
"filesize": 662373,
"coverFilename": "cover.png"
},
"创世纪6": {
"identifier": "创世纪6",
"name": {
"zh-Hans": "创世纪6"
},
"executable": "ultima6.exe",
"type": "RPG",
"sha256": "8ace85c202043142ea240a8cae6c82aafc30b26d3ebaa8cc07119f910b1c97a2",
"filesize": 1829013,
"coverFilename": "cover.png"
},
"创世纪7上黑月之门": {
"identifier": "创世纪7上黑月之门",
"name": {
"zh-Hans": "创世纪7上黑月之门"
},
"executable": "U7.BAT",
"type": "RPG",
"sha256": "000408c770a002b2a3aefa41549baec8e73db4058dd3c5177ec0cb029cae4877",
"filesize": 30403289
},
"创世纪7下巨蛇之岛": {
"identifier": "创世纪7下巨蛇之岛",
"name": {
"zh-Hans": "创世纪7下巨蛇之岛"
},
"executable": "serpent",
"type": "RPG",
"sha256": "dda92cc04f8db91dee62f00bd83253e54477c3ce9f261ca42ee0777415c513bb",
"filesize": 21571370
},
"创世纪8": {
"identifier": "创世纪8",
"name": {
"zh-Hans": "创世纪8"
},
"executable": "u8.exe",
"type": "RPG",
"sha256": "65d860e724384db01842973c42ec2b0de3bb94b84da1322bf030164894529040",
"filesize": 32951215,
"coverFilename": "cover.png"
},
"创世纪外传1荒芜帝国": {
"identifier": "创世纪外传1荒芜帝国",
"name": {
"zh-Hans": "创世纪外传1荒芜帝国"
},
"executable": "savage.exe",
"type": "RPG",
"sha256": "1b3536e036764e94565b65971bc926d67b580a819c690dabb0336660413e90d8",
"filesize": 5990483,
"coverFilename": "cover.png"
},
"创世纪外传2火星之旅": {
"identifier": "创世纪外传2火星之旅",
"name": {
"zh-Hans": "创世纪外传2火星之旅"
},
"executable": "game.exe",
"type": "RPG",
"sha256": "523b0c6f94da3f45f288e31ee11fcf69ff29b186729ec0fca0881d929288e74c",
"filesize": 2186164
},
"春秋争霸传": {
"identifier": "春秋争霸传",
"name": {
"zh-Hans": "春秋争霸传"
},
"executable": "play.exe",
"type": "SLG",
"sha256": "cbc7e54a223bf12356d1e722d5f73926d85bec2a723dcb78015f69a4f34badcc",
"filesize": 2332007,
"coverFilename": "cover.png"
},
"春秋争霸传2": {
"identifier": "春秋争霸传2",
"name": {
"zh-Hans": "春秋争霸传2"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "4013255fb41f07f3ea1183c5919e324728bab59ce8102f4fda0666fd91fc2907",
"filesize": 7252180
},
"从前有片林": {
"identifier": "从前有片林",
"name": {
"zh-Hans": "从前有片林"
},
"executable": "ouaf.bat",
"type": "AVG",
"sha256": "8140a5764c01326fa179ea5c392a30a27996df42fe25fe34cae27fb566b36ce8",
"filesize": 8761740,
"coverFilename": "cover.png"
},
"丛林大作战": {
"identifier": "丛林大作战",
"name": {
"zh-Hans": "丛林大作战"
},
"executable": "jungle.exe",
"type": "ACT",
"sha256": "11cf3cbb556aa07371a54c6ff44f883e4546cb006371710fab480314ba7ef73f",
"filesize": 2946269
},
"丛林历险记": {
"identifier": "丛林历险记",
"name": {
"zh-Hans": "丛林历险记"
},
"executable": "hugo",
"type": "ACT",
"sha256": "7975052722980239239f2f2ba87a19fc8a7b12a3935f98d010fdcf144670c704",
"filesize": 4055681
},
"丛林之书": {
"identifier": "丛林之书",
"name": {
"zh-Hans": "丛林之书"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "f5dd4df1a52fb63c82c741c6e5da01c2532ba132373fcd8196d20b70fc16a6f8",
"filesize": 5509952,
"coverFilename": "cover.png"
},
"达兰科出击": {
"identifier": "达兰科出击",
"name": {
"zh-Hans": "达兰科出击"
},
"executable": "drwho",
"type": "ACT",
"sha256": "c54c17e28d11c6cee34804a56f36c3919b38710b2f15684e45d7dbad9a61edfe",
"filesize": 1021879,
"coverFilename": "cover.png"
},
"打砖块": {
"identifier": "打砖块",
"name": {
"zh-Hans": "打砖块"
},
"executable": "start.bat",
"type": "ACT",
"sha256": "70285f78fd6e69fdccb16b073909d6ab82fcf15b13ba5f4004092118ac9564dc",
"filesize": 77303,
"coverFilename": "cover.png"
},
"打砖块2": {
"identifier": "打砖块2",
"name": {
"zh-Hans": "打砖块2"
},
"executable": "ark.com",
"type": "ACT",
"sha256": "014e69d01c6e56ac5ab1b7f4031bf8d5259445c475685b47f27dc3fbcd0d284a",
"filesize": 184920,
"coverFilename": "cover.png"
},
"大兵日记": {
"identifier": "大兵日记",
"name": {
"zh-Hans": "大兵日记"
},
"executable": "play",
"type": "SIM",
"sha256": "6093ebacbd3058a567ac321e7a3942f6ba64998174ef99f4383b8666f23017fe",
"filesize": 6654286,
"coverFilename": "cover.png"
},
"大地传说黑暗王座": {
"identifier": "大地传说黑暗王座",
"name": {
"zh-Hans": "大地传说黑暗王座"
},
"executable": "lands",
"type": "RPG",
"sha256": "1572cc449b47a64e6562d44816a2b121f08ad4cf8860d9ba488df1864f07da7e",
"filesize": 16045155,
"coverFilename": "cover.png"
},
"大地之怒": {
"identifier": "大地之怒",
"name": {
"zh-Hans": "大地之怒"
},
"executable": "WOE",
"type": "ACT",
"sha256": "69a7c896f0d66d80dab30a5a6152b4aa2de7c73449bd160849094191b44af281",
"filesize": 11383586
},
"大富翁1": {
"identifier": "大富翁1",
"name": {
"zh-Hans": "大富翁1"
},
"executable": "rich1.bat",
"type": "PUZ",
"sha256": "bd2a0bc9c9674316dcc4a8b3f629f1ccb6c241d2b9130cb7628b1b3887b1b1b1",
"floppy": "a",
"filesize": 7297587
},
"大富翁2": {
"identifier": "大富翁2",
"name": {
"zh-Hans": "大富翁2"
},
"executable": "ss.exe",
"type": "PUZ",
"sha256": "c573658ad32820b644a72b2f4e732486ca4f399eb4792714b4a6c61dbcd79d3f",
"filesize": 1518377,
"coverFilename": "cover.jpg"
},
"大富翁城市英雄": {
"identifier": "大富翁城市英雄",
"name": {
"zh-Hans": "大富翁城市英雄"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "6024c40d7d9c0f7ae4cd6d64e811f318e6a168b8d21e236b0f61ac46fe253e03",
"filesize": 16352987,
"coverFilename": "cover.png"
},
"大富翁环游世界": {
"identifier": "大富翁环游世界",
"name": {
"zh-Hans": "大富翁环游世界"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "8c10ee741a5e9ffccdcb478f95d7237f98e7b4c4e6d74233b9d71eee3868b192",
"filesize": 235624,
"coverFilename": "cover.png"
},
"大富翁总动员": {
"identifier": "大富翁总动员",
"name": {
"zh-Hans": "大富翁总动员"
},
"executable": "crazy.bat",
"type": "PUZ",
"sha256": "8d7a5ed1a98c77364c3ceb5750185d2cd6ff04f2e501fc8dfd1c8a550a5589ab",
"img": "CrazyWar_v1.02.cue",
"filesize": 167605949
},
"大海商": {
"identifier": "大海商",
"name": {
"zh-Hans": "大海商"
},
"executable": "HST.EXE",
"type": "SIM",
"sha256": "55f3993cfe04e44080f75c4d5e6fb00172a0a724175d84947b49312b9a653e2b",
"filesize": 14639660,
"coverFilename": "cover.png"
},
"大海战": {
"identifier": "大海战",
"name": {
"zh-Hans": "大海战"
},
"executable": "battlesh.exe",
"type": "PUZ",
"sha256": "01fa0828e041b17f1e521911353c37000def66f87c32d11972cf2c9b016f2ba1",
"filesize": 125572,
"coverFilename": "cover.png"
},
"大海战13": {
"identifier": "大海战13",
"name": {
"zh-Hans": "大海战13"
},
"executable": "OJB.EXE",
"type": "PUZ",
"sha256": "75e4ed5c0c8e13526112b0644e547d014946296cfb04b26f498b866f3cfa9543",
"filesize": 331128,
"coverFilename": "cover.png"
},
"大航海1": {
"identifier": "大航海1",
"name": {
"zh-Hans": "大航海1"
},
"executable": "koei.com",
"type": "RPG",
"sha256": "bc881d8a78d34988ec97fc9075e5842ceaf599849a13f0814690df938aceab23",
"filesize": 887589,
"coverFilename": "cover.png"
},
"大航海2": {
"identifier": "大航海2",
"name": {
"zh-Hans": "大航海2"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "4939a3e69df22e3564c919b421b6d05c56329b3371e1157287b97025fc1b03b8",
"filesize": 3045719
},
"大红大冒险": {
"identifier": "大红大冒险",
"name": {
"zh-Hans": "大红大冒险"
},
"executable": "tbra.bat",
"type": "AVG",
"sha256": "0e4158074ac2f8ae2fc030f9008cd91b26799bdefcfb44686567d81b3b00933d",
"filesize": 24078497,
"coverFilename": "cover.png"
},
"大金刚": {
"identifier": "大金刚",
"name": {
"zh-Hans": "大金刚"
},
"executable": "kong.exe",
"type": "ACT",
"sha256": "51dbac5f0af9ed93742527d93f0a3aafecd549d42a6b2e6566eb37b739026cde",
"filesize": 275846,
"coverFilename": "cover.png"
},
"大力水手2": {
"identifier": "大力水手2",
"name": {
"zh-Hans": "大力水手2"
},
"executable": "popeye",
"type": "ACT",
"sha256": "bf5a4819ac7bd2ba8a864f06fd08f6b2d1ad51e8ba35cddcfbc7d1887c207b6b",
"filesize": 156304,
"coverFilename": "cover.png"
},
"大麻农夫": {
"identifier": "大麻农夫",
"name": {
"zh-Hans": "大麻农夫"
},
"executable": "ganja.bat",
"type": "ACT",
"sha256": "f97ad41c1a08c5584f3b3c5d40bb66e50300864daf72fca57d336eea5f2eebd6",
"filesize": 1004967,
"coverFilename": "cover.png"
},
"大明英雄传": {
"identifier": "大明英雄传",
"name": {
"zh-Hans": "大明英雄传"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "9b057bb737566e4fd689f8cb463882e96a359fd05efbee1074bcd45e16d8b5e4",
"filesize": 2361432,
"coverFilename": "cover.png"
},
"大魔王物语": {
"identifier": "大魔王物语",
"name": {
"zh-Hans": "大魔王物语"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "c43146da0089e37c4ecae5313637874996bf8f899ee5d85535b657a6a200768b",
"filesize": 88508130
},
"大企业家": {
"identifier": "大企业家",
"name": {
"zh-Hans": "大企业家"
},
"executable": "bb.bat",
"type": "PUZ",
"sha256": "612d495db3a59fa7f0c9f1c95725117335cb155421af10bea7ef98b7b17b7fed",
"filesize": 854501,
"coverFilename": "cover.png"
},
"大时代的故事": {
"identifier": "大时代的故事",
"name": {
"zh-Hans": "大时代的故事"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "ae6e0de0b0d7085167480be29608c06a82941aebea7eeff5348004c83b30b1bf",
"filesize": 2392853,
"coverFilename": "cover.png"
},
"大宋英豪岳飞传": {
"identifier": "大宋英豪岳飞传",
"name": {
"zh-Hans": "大宋英豪岳飞传"
},
"executable": "play",
"type": "SPG",
"sha256": "78c978741ad03f7b81e561dacbd007fd62197360a546dde1c4f3c38dc2a216e8",
"img": "YFZ.cue",
"filesize": 490512036,
"coverFilename": "cover.png"
},
"大唐英雄传": {
"identifier": "大唐英雄传",
"name": {
"zh-Hans": "大唐英雄传"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "4e3fd381f8257ae30738df2ec8db1ec5a5a462a57d7188247fff254045850bfb",
"cdrom": "no",
"filesize": 9429597,
"coverFilename": "cover.png"
},
"大野风云": {
"identifier": "大野风云",
"name": {
"zh-Hans": "大野风云"
},
"executable": "virgin.exe",
"type": "RPG",
"sha256": "48c2cb94faccc0c209c313b2e7ac7199e87d025c0c02aa0a6a908df700ce177a",
"filesize": 2859014,
"coverFilename": "cover.png"
},
"大战略": {
"identifier": "大战略",
"name": {
"zh-Hans": "大战略"
},
"executable": "war.bat",
"type": "SLG",
"sha256": "985b3ed65b74c7b1311ec625debb43c9ed0ac790db25486604ad3268ce969c2b",
"filesize": 5335426
},
"大战略SP": {
"identifier": "大战略SP",
"name": {
"zh-Hans": "大战略SP"
},
"executable": "warsp.bat",
"type": "SLG",
"sha256": "6fdda7c72ad51edfac05e4b104c259d0a31c0580e177a4c80d522f3e669b7a6e",
"filesize": 5816334,
"coverFilename": "cover.png"
},
"大战略SP2": {
"identifier": "大战略SP2",
"name": {
"zh-Hans": "大战略SP2"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "832ed2582436b56f00b45635d6c798b140847828f0629c33b10027c46c7446fe",
"filesize": 4353484,
"coverFilename": "cover.png"
},
"大战役": {
"identifier": "大战役",
"name": {
"zh-Hans": "大战役"
},
"executable": "campaign",
"type": "SLG",
"sha256": "2dfcdcbd1d23d0ad0b054f0c8f64317bfd23b5d5881aedda03f0cef55ab85d43",
"filesize": 2676906
},
"大战役2": {
"identifier": "大战役2",
"name": {
"zh-Hans": "大战役2"
},
"executable": "camp2",
"type": "SLG",
"sha256": "4e38b029eed9a46a575c7f537bdf2d5b9289ac358597e77dbf839dc722ec60fc",
"filesize": 1058368,
"coverFilename": "cover.png"
},
"诞生": {
"identifier": "诞生",
"name": {
"zh-Hans": "诞生"
},
"executable": "debut.exe",
"type": "SIM",
"sha256": "0b408c3f40b8efa6428c2ecf0de7852854abd826bcf2d874d075d6ff2bc2ae23",
"filesize": 10523755,
"coverFilename": "cover.png"
},
"弹震坦克": {
"identifier": "弹震坦克",
"name": {
"zh-Hans": "弹震坦克"
},
"executable": "main",
"type": "SIM",
"sha256": "5c83621be5948193352b0444deb9443c7ba07dcbef055c1daa4cea7a6a7fe58c",
"filesize": 20616978,
"coverFilename": "cover.png"
},
"弹珠台世界": {
"identifier": "弹珠台世界",
"name": {
"zh-Hans": "弹珠台世界"
},
"executable": "pworld.exe",
"type": "PUZ",
"sha256": "1a7f3ebe1928793425f5dca9784c989e29b6b1251cf288372d25cfb97a924318",
"filesize": 6452876,
"coverFilename": "cover.png"
},
"荡寇雄狮": {
"identifier": "荡寇雄狮",
"name": {
"zh-Hans": "荡寇雄狮"
},
"executable": "flines.bat",
"type": "SPG",
"sha256": "ea37653d7453ed93d1fb2c2a8c245bd2cbd8796cad3a3c71f398ea0117ee0fab",
"filesize": 5058920,
"coverFilename": "cover.png"
},
"荡魔平妖志": {
"identifier": "荡魔平妖志",
"name": {
"zh-Hans": "荡魔平妖志"
},
"executable": "wrath.exe",
"type": "ACT",
"sha256": "0909b1d85286c620607c19ff75908cfa63b161c26fccb74cfb97d87dae338ce6",
"filesize": 2230465
},
"德川家康": {
"identifier": "德川家康",
"name": {
"zh-Hans": "德川家康"
},
"executable": "PLAY.BAT",
"type": "SPG",
"sha256": "70a00d7b0e567e2cd80e5e8848162f703f69f2e90e25fd879e4ce955ccbf7b8d",
"img": "DX5.cue",
"filesize": 214663274
},
"德军总部": {
"identifier": "德军总部",
"name": {
"zh-Hans": "德军总部"
},
"executable": "cw.exe",
"type": "ACT",
"sha256": "3e0159bc415d0ffab44568b63a8ee02c3a0d7579fb99dc05e6185e28e4737fbd",
"filesize": 70945,
"coverFilename": "cover.png"
},
"德军总部MOD-CARVEN": {
"identifier": "德军总部MOD-CARVEN",
"name": {
"zh-Hans": "德军总部MOD-CARVEN"
},
"executable": "PLAY.BAT",
"type": "ACT",
"sha256": "0742d5a66f210bae19f2c5314e42d0ee9711ef109b0f43b16d49d0e480f7571c",
"filesize": 1931018
},
"德军总部MOD-DOOM版": {
"identifier": "德军总部MOD-DOOM版",
"name": {
"zh-Hans": "德军总部MOD-DOOM版"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "3989aee0bf57827e013ac7e131b6e51635513236f695073fb7656d40915f9663",
"filesize": 5126371
},
"德军总部MOD-ROMAN": {
"identifier": "德军总部MOD-ROMAN",
"name": {
"zh-Hans": "德军总部MOD-ROMAN"
},
"executable": "GO.BAT",
"type": "ACT",
"sha256": "bb3017646883efe4817240144a6696c437ff4a0c7db78ead057350c74d16778d",
"filesize": 5212934
},
"德军总部MOD-黎明": {
"identifier": "德军总部MOD-黎明",
"name": {
"zh-Hans": "德军总部MOD-黎明"
},
"executable": "PLAY.BAT",
"type": "ACT",
"sha256": "8a3cc98a7a0b3933c974cd3829e8275ad47c8168bb61f4f533134c42b9bffd59",
"filesize": 1558982,
"coverFilename": "cover.png"
},
"德军总部命运之矛": {
"identifier": "德军总部命运之矛",
"name": {
"zh-Hans": "德军总部命运之矛"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "ec1e0fccd0278c4d48f1489e1df046880d8abb49528cefd21639244bfc10a687",
"filesize": 9096220
},
"德库拉传说": {
"identifier": "德库拉传说",
"name": {
"zh-Hans": "德库拉传说"
},
"executable": "drac",
"type": "ACT",
"sha256": "693725f358b1d1b5c3caa2a8f276eaefa52bbc80f94ab49e390cc5136539f2e8",
"filesize": 790335,
"coverFilename": "cover.png"
},
"德鲁伊恶魔之心": {
"identifier": "德鲁伊恶魔之心",
"name": {
"zh-Hans": "德鲁伊恶魔之心"
},
"executable": "druid",
"type": "RPG",
"sha256": "1a6798c41c15753509947e8164df1711dbd3b41ead197830f92a1e3f9e1e8d31",
"filesize": 41686122
},
"迪斯尼夺宝奇兵": {
"identifier": "迪斯尼夺宝奇兵",
"name": {
"zh-Hans": "迪斯尼夺宝奇兵"
},
"executable": "ducktale.exe",
"type": "ACT",
"sha256": "5d507808d9d39d098dfee218e2087c764f2aa502d140462194f4af8875ceca11",
"filesize": 675587
},
"底特律汽车大亨": {
"identifier": "底特律汽车大亨",
"name": {
"zh-Hans": "底特律汽车大亨"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "16c8e33e67f9730c0b27176d9699b864e5a0b85cd2038dcc52cfa5d4c04ce18d",
"filesize": 5354702,
"coverFilename": "cover.png"
},
"地动山摇": {
"identifier": "地动山摇",
"name": {
"zh-Hans": "地动山摇"
},
"executable": "quiver.bat",
"type": "ACT",
"sha256": "4aba848d413b41f6b925452225b54342bdcc07180b063185215772e620b0324f",
"filesize": 2143160,
"coverFilename": "cover.png"
},
"地球2140": {
"identifier": "地球2140",
"name": {
"zh-Hans": "地球2140"
},
"executable": "earth800.bat",
"type": "RTS",
"sha256": "1042ae6a44e61729af204d746c02d27b046117e89be5c29e35d28c4f9ba40f81",
"filesize": 51938331,
"coverFilename": "cover.png"
},
"地球围攻": {
"identifier": "地球围攻",
"name": {
"zh-Hans": "地球围攻"
},
"executable": "es",
"type": "SIM",
"sha256": "0b7710297043e44273e0d4a305379885cbdb47115b50110d88c4f92878b2b4b2",
"filesize": 21644318,
"coverFilename": "cover.png"
},
"地下创世纪": {
"identifier": "地下创世纪",
"name": {
"zh-Hans": "地下创世纪"
},
"executable": "uw.exe",
"type": "RPG",
"sha256": "1b2883a61187bd629f04664e96c58ad4acf06dada6f89b32d43b634f2dd90d58",
"filesize": 6246131,
"coverFilename": "cover.png"
},
"地下创世纪2": {
"identifier": "地下创世纪2",
"name": {
"zh-Hans": "地下创世纪2"
},
"executable": "uw2.exe",
"type": "RPG",
"sha256": "b2aa6694d06502bd83d8607ed748beefecc25d9883392a069b29fe2c8c16ca73",
"filesize": 7863986,
"coverFilename": "cover.png"
},
"地下克里姆林宫": {
"identifier": "地下克里姆林宫",
"name": {
"zh-Hans": "地下克里姆林宫"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "9768bcafca9942acf3a05ed37a3bc94c5ef8bf38513b2dd7d39e2b919b63c8d7",
"filesize": 464834960
},
"地狱付费之旅": {
"identifier": "地狱付费之旅",
"name": {
"zh-Hans": "地狱付费之旅"
},
"executable": "hell2pay.bat",
"type": "ACT",
"sha256": "8023f686df1edbdbeee5ff72e8cbbd37c7fb47c44e1ff053c108e7a42bf49f47",
"img": "HellToPay.iso",
"filesize": 48654536
},
"地狱火": {
"identifier": "地狱火",
"name": {
"zh-Hans": "地狱火"
},
"executable": "hellfire.com",
"type": "ACT",
"sha256": "68e65c2be0e5ed35ebccf7a4a0177ae9733e8ad68a7455385e38aa31aad8e0ec",
"filesize": 14754096
},
"地狱赛博朋克": {
"identifier": "地狱赛博朋克",
"name": {
"zh-Hans": "地狱赛博朋克"
},
"executable": "heck.bat",
"type": "AVG",
"sha256": "4b4e527482c195ef6cfdea9691b3622c0bddd31ce647f87098663a711dfcf84c",
"img": "cd.iso",
"filesize": 390748242
},
"地狱也疯狂": {
"identifier": "地狱也疯狂",
"name": {
"zh-Hans": "地狱也疯狂"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "db4fcd568c03856ab5d0239d03454da5bfbe5ff40ad8adc0460b947632c56f88",
"filesize": 11050130,
"coverFilename": "cover.png"
},
"帝国2": {
"identifier": "帝国2",
"name": {
"zh-Hans": "帝国2"
},
"executable": "e2",
"type": "SLG",
"sha256": "e33bdde4d925cf3a7a374897e9ef3897dc1eaab28d26c790a1c59158729f9d06",
"filesize": 5653100,
"coverFilename": "cover.png"
},
"帝国的光荣": {
"identifier": "帝国的光荣",
"name": {
"zh-Hans": "帝国的光荣"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "004890b652dee94e3a042ec31c86eb6945875394d033cf85e3cb7358aecdfe57",
"filesize": 969152,
"coverFilename": "cover.png"
},
"帝国豪华版": {
"identifier": "帝国豪华版",
"name": {
"zh-Hans": "帝国豪华版"
},
"executable": "empire",
"type": "SLG",
"sha256": "71d99167f45a8ef8d8b7d7818b04642c3cfa4fa06dcf75f02f436c23793e80e0",
"filesize": 3676993,
"coverFilename": "cover.png"
},
"第13楼": {
"identifier": "第13楼",
"name": {
"zh-Hans": "第13楼"
},
"executable": "FLOOR13.EXE",
"type": "SIM",
"sha256": "c7fb10ff3bb903dc421f7ea5d34b8cdbbdfc7124f7680e2ecad1c662fc6ac16e",
"filesize": 1767727,
"coverFilename": "cover.png"
},
"第13支局": {
"identifier": "第13支局",
"name": {
"zh-Hans": "第13支局"
},
"executable": "b13.com",
"type": "AVG",
"sha256": "d5b1cd0c695318d8077ee9587a80a41569eee57b0762cbe019f62521665cf131",
"filesize": 7335230,
"coverFilename": "cover.png"
},
"第3日龙之力量": {
"identifier": "第3日龙之力量",
"name": {
"zh-Hans": "第3日龙之力量"
},
"executable": "drf",
"type": "ACT",
"sha256": "0a00a5c20a0f85d62b874129d111a6b027333bd02a0af4b9a276e0e16605bcdc",
"filesize": 2067194,
"coverFilename": "cover.png"
},
"第4日伊卡洛斯": {
"identifier": "第4日伊卡洛斯",
"name": {
"zh-Hans": "第4日伊卡洛斯"
},
"executable": "Icarus",
"type": "ACT",
"sha256": "f20222fdc9d251bab54bbc07f39e354654a9f9fa182e60b6a1e00f0476be1646",
"filesize": 5257527,
"coverFilename": "cover.png"
},
"第5舰队": {
"identifier": "第5舰队",
"name": {
"zh-Hans": "第5舰队"
},
"executable": "fleet",
"type": "SLG",
"sha256": "361ae2839214f42cbd1101404bd753606dd9b603010c66145e67b6ee6028bad0",
"filesize": 5991858
},
"第5日龙机突击": {
"identifier": "第5日龙机突击",
"name": {
"zh-Hans": "第5日龙机突击"
},
"executable": "dragon",
"type": "ACT",
"sha256": "6ba21e7d63e31956f6e720759449ac746cad2070656dd4c3f77c8bc20a0a2240",
"filesize": 5751585,
"coverFilename": "cover.png"
},
"第十瓶-保龄": {
"identifier": "第十瓶-保龄",
"name": {
"zh-Hans": "第十瓶-保龄"
},
"executable": "bowl",
"type": "SIM",
"sha256": "c758ee4f12d6e9f2883bab7cd54ef3de5a55e3c7c6632ee15aab7123760e95ff",
"filesize": 27901,
"coverFilename": "cover.png"
},
"第五个火枪手": {
"identifier": "第五个火枪手",
"name": {
"zh-Hans": "第五个火枪手"
},
"executable": "touche.bat",
"type": "AVG",
"sha256": "18d61b6df67713cc6d06004d6b20a72b21085bbd2eff962a15db5884c8b8ab39",
"filesize": 16681233
},
"第一武士": {
"identifier": "第一武士",
"name": {
"zh-Hans": "第一武士"
},
"executable": "samvga4",
"type": "ACT",
"sha256": "a6107078bd61e4badf32a9795a08d6bec929803eef54662b467df546ad6b64de",
"filesize": 527373,
"coverFilename": "cover.png"
},
"蒂斯蛋蛋黄王子": {
"identifier": "蒂斯蛋蛋黄王子",
"name": {
"zh-Hans": "蒂斯蛋蛋黄王子"
},
"executable": "yolk.exe",
"type": "ACT",
"sha256": "ea063c9c350bcaa04cb3a83bae366f6d2a8d407607499474437a07f238ca9f69",
"filesize": 164111
},
"蒂斯蛋快餐世界": {
"identifier": "蒂斯蛋快餐世界",
"name": {
"zh-Hans": "蒂斯蛋快餐世界"
},
"executable": "fastfood",
"type": "ACT",
"sha256": "0a4f89692a7be6472524c444c584030db0df43e3a3d5e568daa777c7d11b07d1",
"filesize": 178579
},
"蒂斯蛋梦幻世界": {
"identifier": "蒂斯蛋梦幻世界",
"name": {
"zh-Hans": "蒂斯蛋梦幻世界"
},
"executable": "dizzy",
"type": "ACT",
"sha256": "0f05e031681a95b3d1f48954bfb2e83dba9309839994c22d98b766a64ff5a2cb",
"filesize": 186524
},
"蒂斯蛋梦幻之旅": {
"identifier": "蒂斯蛋梦幻之旅",
"name": {
"zh-Hans": "蒂斯蛋梦幻之旅"
},
"executable": "dizzy",
"type": "ACT",
"sha256": "7c062bc9a6dc409a38bdc998429e4012df445dbabdbb30953e411c9b7cf587f4",
"filesize": 834159,
"coverFilename": "cover.png"
},
"蒂斯蛋泡泡冒险": {
"identifier": "蒂斯蛋泡泡冒险",
"name": {
"zh-Hans": "蒂斯蛋泡泡冒险"
},
"executable": "bubble.exe",
"type": "ACT",
"sha256": "9b2ff9b1cd0d3252622c1ad4a400850ffc0bf47363c3c87685df1ff6c243742c",
"filesize": 201933
},
"电脑魔域": {
"identifier": "电脑魔域",
"name": {
"zh-Hans": "电脑魔域"
},
"executable": "a_.exe",
"type": "RPG",
"sha256": "a9f94d084f369e3819dafea888218eb964930c0852149e6666a1ce6c33b5b49b",
"filesize": 1275022,
"coverFilename": "cover.png"
},
"电影工坊": {
"identifier": "电影工坊",
"name": {
"zh-Hans": "电影工坊"
},
"executable": "camman.bat",
"type": "HGA",
"sha256": "8fab77b4f1819cca7a9bddc040d9c7ef21321f7c60e2938c1fbf9512606ab863",
"filesize": 623803,
"coverFilename": "cover.png"
},
"电子波动": {
"identifier": "电子波动",
"name": {
"zh-Hans": "电子波动"
},
"executable": "popple",
"type": "ACT",
"sha256": "ce943d1acb238f0b1ce12fe020a532f1ec9ac0bd602af97984035e9314b5c1a5",
"cdrom": "no",
"filesize": 28385759,
"coverFilename": "cover.png"
},
"电子侠": {
"identifier": "电子侠",
"name": {
"zh-Hans": "电子侠"
},
"executable": "em",
"type": "ACT",
"sha256": "10e8a74d74dbd4d74b9d1a309edfd0ff3780ae5f83071811a4a81668dba03e73",
"filesize": 956943,
"coverFilename": "cover.png"
},
"喋血赛车": {
"identifier": "喋血赛车",
"name": {
"zh-Hans": "喋血赛车"
},
"executable": "splat.exe",
"type": "SIM",
"sha256": "259de2c973f233c2a089ac9f6dd37fdafd0967007c77cee3a2cafb3921ad28c0",
"filesize": 46440453,
"coverFilename": "cover.png"
},
"碟形世界": {
"identifier": "碟形世界",
"name": {
"zh-Hans": "碟形世界"
},
"executable": "start.bat",
"type": "AVG",
"sha256": "42b74906e1ea700cfe60d5251340ab9e68b42034a22c3be8c7b28f5b3ef37f29",
"filesize": 20804230
},
"碟形世界2": {
"identifier": "碟形世界2",
"name": {
"zh-Hans": "碟形世界2"
},
"executable": "dw2.bat",
"type": "AVG",
"sha256": "57caefa27fdecc636668e4f21c61f084397abf10d2cd5f79163cf8da916c3c5f",
"filesize": 67395245,
"coverFilename": "cover.png"
},
"丁丁历险记太阳之罪": {
"identifier": "丁丁历险记太阳之罪",
"name": {
"zh-Hans": "丁丁历险记太阳之罪"
},
"executable": "tintin",
"type": "ACT",
"sha256": "883bd4839e63122b8ac69b6e5db68ea53cb25f74109af0237214e50fb6a82918",
"filesize": 5061914,
"coverFilename": "cover.png"
},
"丁丁在西藏": {
"identifier": "丁丁在西藏",
"name": {
"zh-Hans": "丁丁在西藏"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "7691723c277cc790281cc338b423a085960298aec24d76adab902e979907dac1",
"filesize": 3717483,
"coverFilename": "cover.png"
},
"动作足球": {
"identifier": "动作足球",
"name": {
"zh-Hans": "动作足球"
},
"executable": "play.bat",
"type": "SIM",
"sha256": "48460ec6b9d61161099d485a095e4d9f7d98392a25249e8a523d37fad3f548a2",
"filesize": 8541491,
"coverFilename": "cover.png"
},
"洞穴战争": {
"identifier": "洞穴战争",
"name": {
"zh-Hans": "洞穴战争"
},
"executable": "cave.bat",
"type": "RTS",
"sha256": "c173faaef1d09e225615ee2ab933c55a428f8cd2cd680eb7acc53b86b6501ae5",
"filesize": 12262675,
"coverFilename": "cover.png"
},
"都市飞鸭": {
"identifier": "都市飞鸭",
"name": {
"zh-Hans": "都市飞鸭"
},
"executable": "duck.exe",
"type": "ACT",
"sha256": "153ecbd6bab5bae09df5402e5cab04d315bf568ba1b06dfe1a0358635faf09f9",
"filesize": 2520914
},
"斗神传": {
"identifier": "斗神传",
"name": {
"zh-Hans": "斗神传"
},
"executable": "tsd",
"type": "ACT",
"sha256": "683e88d73db8e2259027a9eba2d0f9c1a0345f21ba528bc91e7e7745463cfe6c",
"filesize": 11859050,
"coverFilename": "cover.png"
},
"毒品战争": {
"identifier": "毒品战争",
"name": {
"zh-Hans": "毒品战争"
},
"executable": "dwsb8.exe",
"type": "ACT",
"sha256": "7664883ad6ae2cc8c1c3fb1c311d9dc03ae925e1796b0e29d8eecb03f5784645",
"filesize": 17295532
},
"毒兔崽子": {
"identifier": "毒兔崽子",
"name": {
"zh-Hans": "毒兔崽子"
},
"executable": "bunny.exe",
"type": "ACT",
"sha256": "2f384fd9200b077e955dfc0efd6ba23a349b69b11c7d46deabfa2f712cc566da",
"filesize": 6276109
},
"独立车赛": {
"identifier": "独立车赛",
"name": {
"zh-Hans": "独立车赛"
},
"executable": "indycar",
"type": "SIM",
"sha256": "2e7cde5ee47fd7da4a5bb120fb81f0f776c7615dc845e64351c46df2f3a7d67b",
"filesize": 3556149,
"coverFilename": "cover.png"
},
"独立赛车2": {
"identifier": "独立赛车2",
"name": {
"zh-Hans": "独立赛车2"
},
"executable": "indycar",
"type": "SIM",
"sha256": "b9ab1efac337b0e39bff09c6d59eeb508f4ac8d318d9e7c45f05d94a57be6af5",
"filesize": 17989882
},
"独立战争": {
"identifier": "独立战争",
"name": {
"zh-Hans": "独立战争"
},
"executable": "liberty",
"type": "SLG",
"sha256": "0476f66b9386758afcbd60b199953ae260d35cfb09c0781d5432bb0a00623667",
"filesize": 1694943
},
"赌神至尊之战": {
"identifier": "赌神至尊之战",
"name": {
"zh-Hans": "赌神至尊之战"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "d0aecf5194d3c396a5e9e2d3234db79686fe639909e263b9cd3e34d1eeac7091",
"filesize": 48933842,
"coverFilename": "cover.png"
},
"对抗战争": {
"identifier": "对抗战争",
"name": {
"zh-Hans": "对抗战争"
},
"executable": "play",
"type": "SLG",
"sha256": "8feb3b89a934ac0b8b1f20780bb707841e36620b8aa928092b52a5b231703ded",
"filesize": 1966171,
"coverFilename": "cover.png"
},
"对手": {
"identifier": "对手",
"name": {
"zh-Hans": "对手"
},
"executable": "antagony.exe",
"type": "ACT",
"sha256": "bef8db5bd4b4a5b79e4c50406fffd40212f06503ec9a2dbf46eda8e807afd526",
"filesize": 11628196,
"coverFilename": "cover.png"
},
"遁入黑暗": {
"identifier": "遁入黑暗",
"name": {
"zh-Hans": "遁入黑暗"
},
"executable": "f2b.bat",
"type": "ACT",
"sha256": "9d692d3fd5aa3ba1c1f399ac1de8126b84f27083d434fcedba757b04fa9f7ab9",
"filesize": 30845831,
"coverFilename": "cover.png"
},
"夺旗大战": {
"identifier": "夺旗大战",
"name": {
"zh-Hans": "夺旗大战"
},
"executable": "capflag2",
"type": "SLG",
"sha256": "6c8681d8174aa00ef0ca8d18812b69c0d3608f6b5fbb4a1741e7592346cad224",
"filesize": 556648,
"coverFilename": "cover.png"
},
"俄勒冈小道": {
"identifier": "俄勒冈小道",
"name": {
"zh-Hans": "俄勒冈小道"
},
"executable": "oregon",
"type": "SIM",
"sha256": "11309b74b49a61ca99d388ab677d0bc4ac85ce6b13015413e2849620771d0fc3",
"filesize": 1912045,
"coverFilename": "cover.png"
},
"俄罗斯方块": {
"identifier": "俄罗斯方块",
"name": {
"zh-Hans": "俄罗斯方块"
},
"executable": "ctetris",
"type": "PUZ",
"sha256": "29c189b1965b9c4017e73807b8de4f2569e6f479a557718c40a43055e6193740",
"filesize": 76694
},
"俄罗斯方块经典版": {
"identifier": "俄罗斯方块经典版",
"name": {
"zh-Hans": "俄罗斯方块经典版"
},
"executable": "tetrisc",
"type": "PUZ",
"sha256": "6f8b65bfb0a5309453fdf1327d4959e29ec5b72938d63805826b022af0bb3888",
"filesize": 1311149
},
"俄罗斯拼盘": {
"identifier": "俄罗斯拼盘",
"name": {
"zh-Hans": "俄罗斯拼盘"
},
"executable": "menu.exe",
"type": "PUZ",
"sha256": "61bc274c8f265fbdd4ee55420eabff04c857ccead50326c9426a65b501a1a132",
"filesize": 1581308,
"coverFilename": "cover.png"
},
"恶魔城": {
"identifier": "恶魔城",
"name": {
"zh-Hans": "恶魔城"
},
"executable": "CASTLE.EXE",
"type": "ACT",
"sha256": "c045e1631e6c3c8526b1a535f64df1d28c64bd38dd425dc24ae24b88cb280de0",
"filesize": 369200,
"coverFilename": "cover.png"
},
"恶魔禁地": {
"identifier": "恶魔禁地",
"name": {
"zh-Hans": "恶魔禁地"
},
"executable": "veil",
"type": "AVG",
"sha256": "17f88ee3f6a0b1c26cfdd165dc5dd9cbd335b20a1c3eb1433750b6fd3c8800a4",
"filesize": 4354950,
"coverFilename": "cover.png"
},
"恶魔禁地英文版": {
"identifier": "恶魔禁地英文版",
"name": {
"zh-Hans": "恶魔禁地英文版"
},
"executable": "veil",
"type": "AVG",
"sha256": "5f7b438400257c963b3b639af414cf79795db27868db9f615ca38d61927c5561",
"filesize": 8388045,
"coverFilename": "cover.png"
},
"恶魔之门": {
"identifier": "恶魔之门",
"name": {
"zh-Hans": "恶魔之门"
},
"executable": "d-gate",
"type": "RPG",
"sha256": "10b60de18dd6c5652107fc1a26450f308467b002cd85ee4f84c6b14fec06b61b",
"filesize": 3611499
},
"噩梦3D": {
"identifier": "噩梦3D",
"name": {
"zh-Hans": "噩梦3D"
},
"executable": "N3D",
"type": "ACT",
"sha256": "cba2daed9b08881ea00c6f3eaea307f55646fdffbe70db3504bafb0406234bfb",
"filesize": 1926123,
"coverFilename": "cover.png"
},
"法兰克疯狂复仇": {
"identifier": "法兰克疯狂复仇",
"name": {
"zh-Hans": "法兰克疯狂复仇"
},
"executable": "franko.bat",
"type": "ACT",
"sha256": "c8aaf3ade418ed4db7c789493883237773a37647eb2276fdaf3e787128b35db9",
"filesize": 2410001,
"coverFilename": "cover.png"
},
"犯罪浪潮": {
"identifier": "犯罪浪潮",
"name": {
"zh-Hans": "犯罪浪潮"
},
"executable": "cw.exe",
"type": "ACT",
"sha256": "f62c26d3901811fea148a2e53bdd080791141efafef30d7632fb3e82eec4b2ac",
"filesize": 2675221
},
"方程式赛车": {
"identifier": "方程式赛车",
"name": {
"zh-Hans": "方程式赛车"
},
"executable": "gpc.bat",
"type": "SIM",
"sha256": "a94fc9be9bf363333bd58842c2dd5c95f610f4bb8a8ad7c21b6c56e98184ae88",
"filesize": 341392,
"coverFilename": "cover.png"
},
"放射博士的城堡": {
"identifier": "放射博士的城堡",
"name": {
"zh-Hans": "放射博士的城堡"
},
"executable": "radiaki.exe",
"type": "ACT",
"sha256": "82502ebfc4463249cb6f77890c686a2e462134143338fb7db59baa77672773fb",
"img": "RADIAKI.cue",
"filesize": 42541556,
"coverFilename": "cover.png"
},
"飞碟任务": {
"identifier": "飞碟任务",
"name": {
"zh-Hans": "飞碟任务"
},
"executable": "UFO",
"type": "PUZ",
"sha256": "076c9b812ad211473243b72744ee035cfd497cff01a805df6b443527cc99d990",
"filesize": 863377,
"coverFilename": "cover.png"
},
"飞虎队": {
"identifier": "飞虎队",
"name": {
"zh-Hans": "飞虎队"
},
"executable": "start",
"type": "ACT",
"sha256": "a553281ff63410f5bdb6aeb8c6874c44dd0b8c1f399382ae41a974f2f5cc6b72",
"filesize": 1441478
},
"飞虎队2": {
"identifier": "飞虎队2",
"name": {
"zh-Hans": "飞虎队2"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "5bc3bf9a4952b0ae4c9a8163632c1e0bdb82b02cf1b5de42f3571cbc464d25f4",
"filesize": 1560704
},
"飞空艇": {
"identifier": "飞空艇",
"name": {
"zh-Hans": "飞空艇"
},
"executable": "zeppelin.exe",
"type": "SIM",
"sha256": "dce9339a33fcc9190341170af5b6f23de18a6ce78a5d570f2554f5c18752b041",
"filesize": 3422711,
"coverFilename": "cover.png"
},
"飞狼突击队": {
"identifier": "飞狼突击队",
"name": {
"zh-Hans": "飞狼突击队"
},
"executable": "aa.exe",
"type": "ACT",
"sha256": "b9ba5581745f945ad8749db13f1767b4023745f6575ff3ea7cf64ca3b0d354e4",
"filesize": 341456,
"coverFilename": "cover.png"
},
"飞龙传奇": {
"identifier": "飞龙传奇",
"name": {
"zh-Hans": "飞龙传奇"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "ef2c964ce108a0e45a722a3ad56918c58fafd112b9b248724de8ede7d2118347",
"filesize": 599127
},
"飞龙骑士": {
"identifier": "飞龙骑士",
"name": {
"zh-Hans": "飞龙骑士"
},
"executable": "dstrike.exe",
"type": "SIM",
"sha256": "12127e1703f79cc29de996b4bbf88674956096553f43e82ed9993c0771c2852c",
"filesize": 1010188
},
"飞轮勇士": {
"identifier": "飞轮勇士",
"name": {
"zh-Hans": "飞轮勇士"
},
"executable": "autoduel.exe",
"type": "RPG",
"sha256": "b235e8bb1e87033c983a9c1dedd4b0bf0d25913d58959d9cce4583eb90ca667f",
"filesize": 226412,
"coverFilename": "cover.png"
},
"飞鹰骑士": {
"identifier": "飞鹰骑士",
"name": {
"zh-Hans": "飞鹰骑士"
},
"executable": "abc.exe",
"type": "SPG",
"sha256": "eb2c24d0ffa79baaf0e56ddded53de4bb59ca5db9f95a6dd932bc04730bd82f5",
"filesize": 3444256,
"coverFilename": "cover.png"
},
"飞跃疯人院": {
"identifier": "飞跃疯人院",
"name": {
"zh-Hans": "飞跃疯人院"
},
"executable": "count",
"type": "AVG",
"sha256": "81586fb3364865b00ab6aed83491b5b7ae515ddb37107b4076bc8e0f0867d829",
"filesize": 2653171
},
"非洲探险": {
"identifier": "非洲探险",
"name": {
"zh-Hans": "非洲探险"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "338b9b4d719f3ace2ef6b22589e3902eef86d54bff8aa2bfa082905018096585",
"filesize": 2461247,
"coverFilename": "cover.png"
},
"绯王传2": {
"identifier": "绯王传2",
"name": {
"zh-Hans": "绯王传2"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "48e61ac36b0668fc1fc982e408ec4a92c94e4ae91d5848e745e32b44fd1c97db",
"filesize": 3823523,
"coverFilename": "cover.png"
},
"废土": {
"identifier": "废土",
"name": {
"zh-Hans": "废土"
},
"executable": "wl.exe",
"type": "RPG",
"sha256": "a6897bc758866685ff7dc229838a4f3bef830ed94641907e1cd17290e53620e1",
"filesize": 694544,
"coverFilename": "cover.png"
},
"分歧:裂痕": {
"identifier": "分歧:裂痕",
"name": {
"zh-Hans": "分歧:裂痕"
},
"executable": "chasm.bat",
"type": "ACT",
"sha256": "edc8a1ab9d8406c993c97325370aacde45432ee5b7d0a37025cf4be9d1a6fbeb",
"cdrom": "no",
"filesize": 19692660,
"coverFilename": "cover.png"
},
"风暴领主": {
"identifier": "风暴领主",
"name": {
"zh-Hans": "风暴领主"
},
"executable": "storm.exe",
"type": "SLG",
"sha256": "2d7bf314d1a0e5ff25a081419eeb041cd1167d924e4850d784edcfe00836ef5f",
"filesize": 582267
},
"风暴之眼": {
"identifier": "风暴之眼",
"name": {
"zh-Hans": "风暴之眼"
},
"executable": "eos.bat",
"type": "SIM",
"sha256": "e69228f11de189ab9f06028303740d8e9365df5d19e755c40840fd9789b8184c",
"filesize": 1572846,
"coverFilename": "cover.png"
},
"风尘三侠之金剑使者": {
"identifier": "风尘三侠之金剑使者",
"name": {
"zh-Hans": "风尘三侠之金剑使者"
},
"executable": "fs.exe",
"type": "RPG",
"sha256": "ed001184085d712f8609ce4c5d50e3586524c9ee53b89aede73397a5113c9768",
"filesize": 1074418,
"coverFilename": "cover.png"
},
"风驰电掣": {
"identifier": "风驰电掣",
"name": {
"zh-Hans": "风驰电掣"
},
"executable": "adlib.bat",
"type": "SIM",
"sha256": "c3447c1543112524bf2a2dba451cd1b4142cf360925263a46c5274387ce4d632",
"filesize": 519988,
"coverFilename": "cover.png"
},
"风行者": {
"identifier": "风行者",
"name": {
"zh-Hans": "风行者"
},
"executable": "wind.exe",
"type": "RPG",
"sha256": "835c6ec00328bb735eb27406fc22b6eff4f1ca0959a5b3c6c33f1c1d2d3b9e91",
"filesize": 541701,
"coverFilename": "cover.png"
},
"风神传承": {
"identifier": "风神传承",
"name": {
"zh-Hans": "风神传承"
},
"executable": "stormlrd",
"type": "ACT",
"sha256": "49ceb123c9e19654147d7156e73a33c33ca6e7fd5e078e1880d6c6f3e4bec584",
"filesize": 185884,
"coverFilename": "cover.png"
},
"风速小子": {
"identifier": "风速小子",
"name": {
"zh-Hans": "风速小子"
},
"executable": "gp",
"type": "SIM",
"sha256": "eda38e4716add0be1b123a827db34fda346ab770173c0f211799e28f66d60f66",
"filesize": 706355
},
"风雪江山": {
"identifier": "风雪江山",
"name": {
"zh-Hans": "风雪江山"
},
"executable": "game.exe",
"type": "RTS",
"sha256": "7df35ed42447dd04fab0cce3c061a9b35a9e9a002405842a0d0fbbee251c4456",
"filesize": 12211484,
"coverFilename": "cover.png"
},
"风语河岸柳": {
"identifier": "风语河岸柳",
"name": {
"zh-Hans": "风语河岸柳"
},
"executable": "willows.com",
"type": "AVG",
"sha256": "8fc9b9e8e7b8e737394d959fc5d8f48bafe6f85ee89ac4413f605ddd4b3881a8",
"filesize": 314211
},
"风云霸主": {
"identifier": "风云霸主",
"name": {
"zh-Hans": "风云霸主"
},
"executable": "pm.bat",
"type": "SLG",
"sha256": "8196577f095fa656a8e73a2e0a451512c0745a234eafd0ce5b84118569d3d3de",
"filesize": 1885449,
"coverFilename": "cover.png"
},
"风云天下三国篇": {
"identifier": "风云天下三国篇",
"name": {
"zh-Hans": "风云天下三国篇"
},
"executable": "game",
"type": "ACT",
"sha256": "6705ac4f1fd7d0237f56fccee0a449fd4014a9617963959b7f3c9f52b919b9ad",
"filesize": 3356938
},
"封神榜格斗": {
"identifier": "封神榜格斗",
"name": {
"zh-Hans": "封神榜格斗"
},
"executable": "game.bat",
"type": "ACT",
"sha256": "adee45e4fcfbe9496bb69e0c57780e1ac1cffe9bb2a6c81785aead92af83afb2",
"filesize": 2245924
},
"封神演义": {
"identifier": "封神演义",
"name": {
"zh-Hans": "封神演义"
},
"executable": "gs.exe",
"type": "SPG",
"sha256": "a7f483f31c8233efe7d4b8e53dfdeac2f21148122ea75d2058ddde450709b40f",
"filesize": 2130794,
"coverFilename": "cover.png"
},
"疯狗": {
"identifier": "疯狗",
"name": {
"zh-Hans": "疯狗"
},
"executable": "MADDOG.bat",
"type": "ACT",
"sha256": "5d7285d031f51944ed67728b9a4d8c07e4fe53e4e8abe919fd5e1dba0e6006ec",
"filesize": 80638779
},
"疯狗威廉的地下城之旅": {
"identifier": "疯狗威廉的地下城之旅",
"name": {
"zh-Hans": "疯狗威廉的地下城之旅"
},
"executable": "MDWVGA.EXE",
"type": "AVG",
"sha256": "b0b9f64cf82eec03c0963b014c1f7de55e326ddb63c5ec58f43d1632d76f87d6",
"filesize": 2363163
},
"疯狂大毁灭": {
"identifier": "疯狂大毁灭",
"name": {
"zh-Hans": "疯狂大毁灭"
},
"executable": "rampage",
"type": "ACT",
"sha256": "916946488876b4617b0ffe78693be047f4ce9de94d932574a3dc95a7f5857426",
"filesize": 126939
},
"疯狂大陆": {
"identifier": "疯狂大陆",
"name": {
"zh-Hans": "疯狂大陆"
},
"executable": "mega.exe",
"type": "RTS",
"sha256": "a18eae0d6c9f1681cb2ff62322c36b30acf038e43d913e4d66d2ed6929c70495",
"filesize": 1112459
},
"疯狂电视台": {
"identifier": "疯狂电视台",
"name": {
"zh-Hans": "疯狂电视台"
},
"executable": "mtv.exe",
"type": "SIM",
"sha256": "7b3d0a6e8f4cdd25ea064ead71a53a4e6d574b3b740f6b6203756f7127fed392",
"filesize": 813629
},
"疯狂橄榄球": {
"identifier": "疯狂橄榄球",
"name": {
"zh-Hans": "疯狂橄榄球"
},
"executable": "crazy.bat",
"type": "SIM",
"sha256": "05d6bffe793d607742e03f77f6b11d8b5d2f9fac7e32cf0f13cfa58113ee358d",
"filesize": 439012
},
"疯狂科学机器": {
"identifier": "疯狂科学机器",
"name": {
"zh-Hans": "疯狂科学机器"
},
"executable": "MAIN",
"type": "PUZ",
"sha256": "b38f61bcfa9910b86a50db4444d7a1852c687b2478b1705734a1e6f0703f14b9",
"filesize": 2270276,
"coverFilename": "cover.png"
},
"疯狂赛车2": {
"identifier": "疯狂赛车2",
"name": {
"zh-Hans": "疯狂赛车2"
},
"executable": "cc2ega.exe",
"type": "SIM",
"sha256": "59bdfa23c0ee9cb0f7acb72a947ca8dc2891eb98b6a6e9cc09081bc471c1dae5",
"filesize": 154454,
"coverFilename": "cover.png"
},
"疯狂赛车3": {
"identifier": "疯狂赛车3",
"name": {
"zh-Hans": "疯狂赛车3"
},
"executable": "cc3.com",
"type": "SIM",
"sha256": "b32c3bbe7d712bc23b5c6f564bacea78fdbc904965c548c2874cce626c68ae02",
"filesize": 753355
},
"疯狂时代": {
"identifier": "疯狂时代",
"name": {
"zh-Hans": "疯狂时代"
},
"executable": "dott.exe",
"type": "AVG",
"sha256": "26dbb343f35a74f546d345477eddb2d5fb78e881e424260e78430ec05c395954",
"filesize": 8207725
},
"疯狂双响炮": {
"identifier": "疯狂双响炮",
"name": {
"zh-Hans": "疯狂双响炮"
},
"executable": "crazy.exe",
"type": "PUZ",
"sha256": "314216b0a2e02f90f6c3b386d843610efbbdb480bd42b81c468ff81f1ce03b9a",
"filesize": 3230821
},
"疯狂小旅鼠": {
"identifier": "疯狂小旅鼠",
"name": {
"zh-Hans": "疯狂小旅鼠"
},
"executable": "l3cd.exe",
"type": "PUZ",
"sha256": "7823f4d34487f4d443015dcabaa7e2fc5e0c1e4175ae1b3f479aeecafef8412a",
"filesize": 8224227,
"coverFilename": "cover.png"
},
"疯狂小旅鼠2": {
"identifier": "疯狂小旅鼠2",
"name": {
"zh-Hans": "疯狂小旅鼠2"
},
"executable": "l2.exe",
"type": "PUZ",
"sha256": "670146b17f20a4588000d99eb4e51d31b6a26be84d50f66b87ccbdd08de0f1a5",
"filesize": 4392027,
"coverFilename": "cover.png"
},
"疯狂小旅鼠3": {
"identifier": "疯狂小旅鼠3",
"name": {
"zh-Hans": "疯狂小旅鼠3"
},
"executable": "L3.BAT",
"type": "PUZ",
"sha256": "a2508424a13b90c05d2dc4192eb6affb4d515e688db1d2f472f3a389bbcc2491",
"filesize": 4308987,
"coverFilename": "cover.png"
},
"疯狂小鸭": {
"identifier": "疯狂小鸭",
"name": {
"zh-Hans": "疯狂小鸭"
},
"executable": "ducks",
"type": "PUZ",
"sha256": "30a01281ef5034267bfc2ad45db3a22b78f9e24e4a61315ffd8a3f2af16f92b7",
"filesize": 1398597
},
"疯狂医院2": {
"identifier": "疯狂医院2",
"name": {
"zh-Hans": "疯狂医院2"
},
"executable": "dr2.EXE",
"type": "SIM",
"sha256": "3fa64e0fc1a21dc85e18f951ee038725ff977272e71e2de312b0c5beb5949d75",
"filesize": 7288173,
"coverFilename": "cover.png"
},
"疯子": {
"identifier": "疯子",
"name": {
"zh-Hans": "疯子"
},
"executable": "madman",
"type": "RPG",
"sha256": "0077e7f900f507429f67b0a7534bb37529200eeed3facb4feb42942aa64f0f5d",
"filesize": 1230414,
"coverFilename": "cover.png"
},
"蜂箱赌坊": {
"identifier": "蜂箱赌坊",
"name": {
"zh-Hans": "蜂箱赌坊"
},
"executable": "runme.bat",
"type": "HGA",
"sha256": "f8d41e8978d62356bdbeeb19dfaf5283ef094fb0ecc6707ad5e2bac5e3d1c728",
"filesize": 1979580
},
"拂晓攻击": {
"identifier": "拂晓攻击",
"name": {
"zh-Hans": "拂晓攻击"
},
"executable": "dr.exe",
"type": "ACT",
"sha256": "8e1d2b805383deab3f9af340618002f4d422515c0b83cb35d75d17a76342a5b8",
"filesize": 401021,
"coverFilename": "cover.png"
},
"福尔摩莎": {
"identifier": "福尔摩莎",
"name": {
"zh-Hans": "福尔摩莎"
},
"executable": "china.exe",
"type": "AVG",
"sha256": "b72770580e083d75619d2b1b8fff23ae8a9b25fa7701e02f95e2a8a22862e60c",
"filesize": 3569209
},
"福尔摩斯2玫瑰纹身": {
"identifier": "福尔摩斯2玫瑰纹身",
"name": {
"zh-Hans": "福尔摩斯2玫瑰纹身"
},
"executable": "holmes2.bat",
"type": "AVG",
"sha256": "1fb02db23c5f001b747c863714d8f5fe967dea65edd1dbb2e8c47571d87aaeb4",
"cdrom": "no",
"filesize": 275097716
},
"福尔摩斯失落的文件": {
"identifier": "福尔摩斯失落的文件",
"name": {
"zh-Hans": "福尔摩斯失落的文件"
},
"executable": "game",
"type": "AVG",
"sha256": "1cf49c72c69ba3b8457550d28e1c8dcfb0d49aa61ed03a441529fa050ff5fc09",
"filesize": 9168777,
"coverFilename": "cover.png"
},
"福禄双霸天": {
"identifier": "福禄双霸天",
"name": {
"zh-Hans": "福禄双霸天"
},
"executable": "1.EXE",
"type": "ACT",
"sha256": "8d94f2a5b2284661d55cbd94edbc49c695d3cadc2d6752569f3ed5b2165bdebe",
"filesize": 471286,
"coverFilename": "cover.png"
},
"福禄双霸天2": {
"identifier": "福禄双霸天2",
"name": {
"zh-Hans": "福禄双霸天2"
},
"executable": "blues.bat",
"type": "ACT",
"sha256": "497cf22d7394412cef6077a476363d95904efea1943016e2dd50736dd438da12",
"filesize": 513073,
"coverFilename": "cover.png"
},
"福特模拟驾驶": {
"identifier": "福特模拟驾驶",
"name": {
"zh-Hans": "福特模拟驾驶"
},
"executable": "FORD.EXE",
"type": "SIM",
"sha256": "4bbcf5fdc67222982cc095138c8bb684a17dc21a891265ce8347a5552e293499",
"filesize": 1433424,
"coverFilename": "cover.png"
},
"富贵列车": {
"identifier": "富贵列车",
"name": {
"zh-Hans": "富贵列车"
},
"executable": "play.bat",
"type": "AVG",
"sha256": "9a90956457c1fe7e1f1a2c9f4147ace5d5caed7b09e28fe4da3c3cb52c5acadc",
"filesize": 14724034,
"coverFilename": "cover.png"
},
"富甲天下": {
"identifier": "富甲天下",
"name": {
"zh-Hans": "富甲天下"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "4242cb0f7b55a192444474195efbedd5033feed57751d3bffb4cf55c106e0e1e",
"coverFilename": "cover.png",
"filesize": 1771484
},
"富甲天下2": {
"identifier": "富甲天下2",
"name": {
"zh-Hans": "富甲天下2"
},
"executable": "play.bat",
"type": "PUZ",
"sha256": "b54ed7814aa8c62384c4ef8b5b939cd3e412a82c0d7816a65bdea11ec0397371",
"cdrom": "no",
"coverFilename": "cover.png",
"filesize": 16534770
},
"盖世龙王": {
"identifier": "盖世龙王",
"name": {
"zh-Hans": "盖世龙王"
},
"executable": "dlord.exe",
"type": "SLG",
"sha256": "b3ba4d24b2c5e3572bf4528681f9cd4b6c6e741d08a3d34786117f1c2818fe46",
"filesize": 1023531,
"coverFilename": "cover.png"
},
"感官足球": {
"identifier": "感官足球",
"name": {
"zh-Hans": "感官足球"
},
"executable": "SOC_K",
"type": "SIM",
"sha256": "f72e961abdd461fbb2d5eb7a4b9daadae4851b726520120d03a2ad3fa616f990",
"filesize": 666017,
"coverFilename": "cover.png"
},
"感官足球95": {
"identifier": "感官足球95",
"name": {
"zh-Hans": "感官足球95"
},
"executable": "swos.bat",
"type": "SIM",
"sha256": "aeefe2417a218044194e07dbeed9a1bad43c2b508bde7ecb67662d3c22e41bf6",
"filesize": 20606225,
"coverFilename": "cover.png"
},
"橄榄球世界杯95": {
"identifier": "橄榄球世界杯95",
"name": {
"zh-Hans": "橄榄球世界杯95"
},
"executable": "go.bat",
"type": "SIM",
"sha256": "849a4b512ddcca45b0bd3f2dec5f7a23d386e2919689496a5938f82cd35f4b73",
"filesize": 11893739,
"coverFilename": "cover.png"
},
"橄榄球小联盟": {
"identifier": "橄榄球小联盟",
"name": {
"zh-Hans": "橄榄球小联盟"
},
"executable": "MLF2.EXE",
"type": "SIM",
"sha256": "6515d540b5ab0140849dbd288cf8c5f153405a56aa600689a0390b5afdbbb014",
"filesize": 1207023,
"coverFilename": "cover.png"
},
"钢铁冲突": {
"identifier": "钢铁冲突",
"name": {
"zh-Hans": "钢铁冲突"
},
"executable": "cos.bat",
"type": "SLG",
"sha256": "3d656120821a0b17ce37beac93a1a576b050ec6d61b5f5bb8c795060ad986a1d",
"filesize": 1021446,
"coverFilename": "cover.png"
},
"钢铁冲突未来版": {
"identifier": "钢铁冲突未来版",
"name": {
"zh-Hans": "钢铁冲突未来版"
},
"executable": "future",
"type": "SLG",
"sha256": "0c2b8c142309ff7150f70e9e2695704525a2ab7e7e4bb8a5404ec5abe0a081c2",
"filesize": 2679391,
"coverFilename": "cover.png"
},
"钢铁领主": {
"identifier": "钢铁领主",
"name": {
"zh-Hans": "钢铁领主"
},
"executable": "ironlord.exe",
"type": "SLG",
"sha256": "139d038f92d91a661567ee3d0f8c49e110c615449ece6028745dee5397c44b12",
"filesize": 728322,
"coverFilename": "cover.png"
},
"钢铁骑士团": {
"identifier": "钢铁骑士团",
"name": {
"zh-Hans": "钢铁骑士团"
},
"executable": "play",
"type": "SLG",
"sha256": "b7e289a9214f01cf95b45f458fc46c8b9a99c35433a6801991d7f94e9f83795b",
"filesize": 8658786
},
"钢铁十字": {
"identifier": "钢铁十字",
"name": {
"zh-Hans": "钢铁十字"
},
"executable": "ic",
"type": "SLG",
"sha256": "e7cd29e0042d2e09bc698c97d378bf0daa3eca1e25beaebf861c4745b5c3a0d0",
"filesize": 8184031,
"coverFilename": "cover.png"
},
"钢铁信条": {
"identifier": "钢铁信条",
"name": {
"zh-Hans": "钢铁信条"
},
"executable": "start.bat",
"type": "RPG",
"sha256": "1ee8681765927115d4ff622954b9cf840aff865e1662b4ac9465c6889fba729c",
"filesize": 5081514,
"coverFilename": "cover.png"
},
"钢铁意志": {
"identifier": "钢铁意志",
"name": {
"zh-Hans": "钢铁意志"
},
"executable": "NOS.BAT",
"type": "ACT",
"sha256": "2115083e65e59c05dd0325c8d7b0ef71f6ffab4a7bffec986db96fd536393a5d",
"filesize": 3562927
},
"钢铁之路1": {
"identifier": "钢铁之路1",
"name": {
"zh-Hans": "钢铁之路1"
},
"executable": "start",
"type": "SLG",
"sha256": "fe7c2b1ce194b41b94f084657b91ce3bf47bc01cab036299bc06a5b1aab621e2",
"filesize": 14729532,
"coverFilename": "cover.png"
},
"钢铁之路2": {
"identifier": "钢铁之路2",
"name": {
"zh-Hans": "钢铁之路2"
},
"executable": "steel2",
"type": "SLG",
"sha256": "7d6f5c1b756b6312f58362f0c95e9a5a0e1106980e787bc330be33e2db3c4f37",
"cdrom": "no",
"filesize": 54140263,
"coverFilename": "cover.png"
},
"钢铁之路3": {
"identifier": "钢铁之路3",
"name": {
"zh-Hans": "钢铁之路3"
},
"executable": "steel3",
"type": "SLG",
"sha256": "89d2ee7290e602ab850b590775db37751c48efd1c70da70b6ab65a910900bf84",
"filesize": 27011192,
"coverFilename": "cover.png"
},
"钢铁之拳": {
"identifier": "钢铁之拳",
"name": {
"zh-Hans": "钢铁之拳"
},
"executable": "f.bat",
"type": "SIM",
"sha256": "6eed0f162d4c52c0c9eed5c4162ea6ef3cdd3070aeddfa6ed8821d2939039427",
"filesize": 6008574,
"coverFilename": "cover.png"
},
"钢铁之心": {
"identifier": "钢铁之心",
"name": {
"zh-Hans": "钢铁之心"
},
"executable": "play.bat",
"type": "SLG",
"sha256": "47b4d6a2c599ab8ebb4f77eff137eb4b2a0b8d5c02b37382d1697213010c18cb",
"filesize": 4170573
},
"钢铁之血": {
"identifier": "钢铁之血",
"name": {
"zh-Hans": "钢铁之血"
},
"executable": "iron.exe",
"type": "ACT",
"sha256": "57a27c645e8180b3ff77f2653d20527d7c1f52b5d5b3976907f596f8e639e92a",
"img": "IRONBLOOD.ISO",
"filesize": 46276520,
"coverFilename": "cover.png"
},
"高报酬战将": {
"identifier": "高报酬战将",
"name": {
"zh-Hans": "高报酬战将"
},
"executable": "main",
"type": "SLG",
"sha256": "bcddffab2157335093f4cbc9beb57868f7479976ab9444dccc10f30523a83850",
"filesize": 2565317,
"coverFilename": "cover.png"
},
"高尔夫训练": {
"identifier": "高尔夫训练",
"name": {
"zh-Hans": "高尔夫训练"
},
"executable": "LINKS.BAT",
"type": "SIM",
"sha256": "9b4574b4227f9fb1248c2a42420fd70144d0f1975b2d3e4b7fc2f6d950949ed0",
"filesize": 1402678,
"coverFilename": "cover.png"
},
"高尔夫训练386": {
"identifier": "高尔夫训练386",
"name": {
"zh-Hans": "高尔夫训练386"
},
"executable": "GOLF.BAT",
"type": "SIM",
"sha256": "661675a698c6b765b73a3b9a09f411176c53b3dddb8cbce30cf9583353b6ee46",
"filesize": 4423034,
"coverFilename": "cover.png"
},
"高级文明": {
"identifier": "高级文明",
"name": {
"zh-Hans": "高级文明"
},
"executable": "ac_main",
"type": "SLG",
"sha256": "777290ee06f7fcacf410578a4f4abf1244e723693192df43db4c2e488370cdda",
"filesize": 14039565,
"coverFilename": "cover.png"
},
"高级银河帝国": {
"identifier": "高级银河帝国",
"name": {
"zh-Hans": "高级银河帝国"
},
"executable": "go.bat",
"type": "SIM",
"sha256": "f707305d4f2f11c796c81474f7ded1e3c0cf0637abd0c9bbfb1d61bb983def22",
"filesize": 8584704
},
"高卢英雄传": {
"identifier": "高卢英雄传",
"name": {
"zh-Hans": "高卢英雄传"
},
"executable": "obelix.exe",
"type": "ACT",
"sha256": "2e29c88bb6fdfc09231906adac9f8b0906ad563dee19c261d2b093144744458b",
"filesize": 3786046,
"coverFilename": "cover.png"
},
"高速猎人": {
"identifier": "高速猎人",
"name": {
"zh-Hans": "高速猎人"
},
"executable": "start.exe",
"type": "ACT",
"sha256": "df11591eabbaae086acd8c0c6670036d24ca76fb43b55902e10eb8f04a053db9",
"filesize": 1253530,
"coverFilename": "cover.png"
},
"高校魔影": {
"identifier": "高校魔影",
"name": {
"zh-Hans": "高校魔影"
},
"executable": "g_map",
"type": "SPG",
"sha256": "33e5c5c25e00df6cabc251479d097c3af003a13ccfff083d0d933492b5c13d4a",
"filesize": 4018632,
"coverFilename": "cover.png"
},
"哥伦布发现之旅": {
"identifier": "哥伦布发现之旅",
"name": {
"zh-Hans": "哥伦布发现之旅"
},
"executable": "discover",
"type": "SLG",
"sha256": "c5fa785e6eabbd0c2edf6328827082107f17bedffa27649aeaa1a8ea1ebdf237",
"filesize": 356794
},
"革命力量": {
"identifier": "革命力量",
"name": {
"zh-Hans": "革命力量"
},
"executable": "eardis",
"type": "ACT",
"sha256": "ad5f71a259ce802b0adbb6b420ac151779852976072958c2ae1bb35aa1a24646",
"filesize": 9956919
},
"格斗:过度杀戮": {
"identifier": "格斗:过度杀戮",
"name": {
"zh-Hans": "格斗:过度杀戮"
},
"executable": "overkill",
"type": "ACT",
"sha256": "2b4a257e757677dd36eba7594cb2ef3e47c6f2935a59845e4d9242f6e73c0d8d",
"filesize": 18760689,
"coverFilename": "cover.png"
},
"格斗悍将": {
"identifier": "格斗悍将",
"name": {
"zh-Hans": "格斗悍将"
},
"executable": "tough.exe",
"type": "ACT",
"sha256": "589ebbe654a2c4b54fafbd3a0ccf9fba97ebafba8a9fffc8a047d3df2a05b3e6",
"filesize": 7683894,
"coverFilename": "cover.png"
},
"格斗拳王": {
"identifier": "格斗拳王",
"name": {
"zh-Hans": "格斗拳王"
},
"executable": "act.com",
"type": "ACT",
"sha256": "d07197f44ae468f4a918723f2248e379a1101238583046d679577af2ba01fdb8",
"filesize": 1814084
},
"格杀令": {
"identifier": "格杀令",
"name": {
"zh-Hans": "格杀令"
},
"executable": "play.bat",
"type": "RTS",
"sha256": "973104160afa85af0f3bfc1103441806d445ee1e0b01e965d2e5e18c5a441b5b",
"filesize": 38544713,
"coverFilename": "cover.png"
},
"隔离区1": {
"identifier": "隔离区1",
"name": {
"zh-Hans": "隔离区1"
},
"executable": "q.exe",
"type": "SIM",
"sha256": "3a37baf5f71dcbfb9d5e6d794da87c15d594ef4eaec565a5cd5ff01af5e89287",
"filesize": 6220891,
"coverFilename": "cover.png"
},
"隔离区2马路英雄": {
"identifier": "隔离区2马路英雄",
"name": {
"zh-Hans": "隔离区2马路英雄"
},
"executable": "rw.exe",
"type": "SIM",
"sha256": "9e77adb087470427ce4f51f8ed24b94f0c801518c22dd82d3822e71d6ae6fa86",
"filesize": 24188020,
"coverFilename": "cover.png"
},
"工人物语": {
"identifier": "工人物语",
"name": {
"zh-Hans": "工人物语"
},
"executable": "serfcity",
"type": "RTS",
"sha256": "fae03cf91d1821b307da66487939db93d15a4d2ab06b4af7b223b90b43ed25a6",
"filesize": 1297909,
"coverFilename": "cover.png"
},
"工人物语2": {
"identifier": "工人物语2",
"name": {
"zh-Hans": "工人物语2"
},
"executable": "s2.exe",
"type": "RTS",
"sha256": "b60ede17c2f4786fce321e926d04b9cc678882291b09774e88740e3026e0a2b4",
"filesize": 13973573,
"coverFilename": "cover.png"
},
"公路狂飙": {
"identifier": "公路狂飙",
"name": {
"zh-Hans": "公路狂飙"
},
"executable": "carnage.exe",
"type": "SIM",
"sha256": "39e047446005f39de5398da381fd915ed58c5403bc700fa17a98e2e73f8ffa68",
"filesize": 254039
},
"公元前车赛": {
"identifier": "公元前车赛",
"name": {
"zh-Hans": "公元前车赛"
},
"executable": "go.bat",
"type": "SIM",
"sha256": "285d860c4016623d2c6aaaa329448a344c419d7f5009a0b4b89cc5a7c9db6c48",
"filesize": 2167633,
"coverFilename": "cover.png"
},
"孤胆枪手": {
"identifier": "孤胆枪手",
"name": {
"zh-Hans": "孤胆枪手"
},
"executable": "mdk",
"type": "ACT",
"sha256": "249e0694113b9bdce0d8a5f2c50e45b67848ed215c8631951e5edcc67000e435",
"cdrom": "mdk",
"filesize": 114189148
},
"古堡之宴": {
"identifier": "古堡之宴",
"name": {
"zh-Hans": "古堡之宴"
},
"executable": "play.bat",
"type": "AVG",
"sha256": "016c0fed48930c1ec89454477f212cc05f0cd0e648ab006f5ffd81d25ac90c71",
"filesize": 5962636,
"coverFilename": "cover.png"
},
"古大陆物语": {
"identifier": "古大陆物语",
"name": {
"zh-Hans": "古大陆物语"
},
"executable": "fs.bat",
"type": "SPG",
"sha256": "be434f80dd522a4be3032e218fd951c10e701fcfac83c160c47071e9126e03b9",
"filesize": 3574824
},
"古大陆物语2": {
"identifier": "古大陆物语2",
"name": {
"zh-Hans": "古大陆物语2"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "e0f2ef5fadb900b35cd9dc8d87bdf2e5c05507a8ca9cd7621cf46d331bda8a99",
"filesize": 3876198,
"coverFilename": "cover.png"
},
"古大陆物语4": {
"identifier": "古大陆物语4",
"name": {
"zh-Hans": "古大陆物语4"
},
"executable": "fsw.bat",
"type": "SPG",
"sha256": "08e91ac75472c28934303dff705e5426ffd5ee8fffec8ee169e46cf809195e91",
"img": "CD/FS4.cue",
"filesize": 41474770
},
"古大陆物语5光盘版": {
"identifier": "古大陆物语5光盘版",
"name": {
"zh-Hans": "古大陆物语5光盘版"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "607a0305b21e813af5c68fdec70511f92ecd8514bd7307a35366afdfbfa276c2",
"filesize": 344915596
},
"古怪小搭档": {
"identifier": "古怪小搭档",
"name": {
"zh-Hans": "古怪小搭档"
},
"executable": "doofus.exe",
"type": "ACT",
"sha256": "bafd1982d26a3199e2cc798bcee15d7ffb113f1cc13a1b8e8bfc7637a47f3d09",
"filesize": 704382,
"coverFilename": "cover.png"
},
"古怪星球伊特兰": {
"identifier": "古怪星球伊特兰",
"name": {
"zh-Hans": "古怪星球伊特兰"
},
"executable": "etercrk.exe",
"type": "AVG",
"sha256": "d68eef1d77cefe2c39d3eae3557c4c1678d2b044eddaf699f3ddb2852349b60f",
"filesize": 5679884
},
"古怪之梦": {
"identifier": "古怪之梦",
"name": {
"zh-Hans": "古怪之梦"
},
"executable": "wicked",
"type": "ACT",
"sha256": "0e1c3880f4041a94b558eae4a5dc7fadf223805e4042848ab9ea9cb6a580f42f",
"filesize": 3372301,
"coverFilename": "cover.png"
},
"古墓丽影": {
"identifier": "古墓丽影",
"name": {
"zh-Hans": "古墓丽影"
},
"executable": "tomb",
"type": "ACT",
"sha256": "08da92845d80bd3262751c1c9aee8163ee742872fd78b29e1b8bb0aebe4b0f4a",
"cdrom": "no",
"filesize": 34422403,
"coverFilename": "cover.png"
},
"古事记外传(日文)": {
"identifier": "古事记外传(日文)",
"name": {
"zh-Hans": "古事记外传(日文)"
},
"executable": "play.bat",
"type": "RPG",
"sha256": "15e927717873d7a292219eafe8d4fd1d7ff6e640f72333de89f866009f1c8f2b",
"filesize": 2457542,
"coverFilename": "cover.png"
},
"古文明霸王传": {
"identifier": "古文明霸王传",
"name": {
"zh-Hans": "古文明霸王传"
},
"executable": "play.bat",
"type": "SPG",
"sha256": "f1e1909e199661664649021ca12f4c7b096a23fab5505258d1f034b043feb4bb",
"filesize": 371279888
},
"雇佣之枪": {
"identifier": "雇佣之枪",
"name": {
"zh-Hans": "雇佣之枪"
},
"executable": "hg.bat",
"type": "RPG",
"sha256": "85301bfbe5fd8764dc282212f531f804fb264f3e72cd8b87d56d586d54a82c07",
"filesize": 2231674,
"coverFilename": "cover.png"
},
"关键任务": {
"identifier": "关键任务",
"name": {
"zh-Hans": "关键任务"
},
"executable": "mission",
"type": "AVG",
"sha256": "3d6cb5f53c49ef86b1299d2ed1c8fea1b5f1eada1b6119ca03e57257682705a4",
"filesize": 353362510
},
"官能习教": {
"identifier": "官能习教",
"name": {
"zh-Hans": "官能习教"
},
"executable": "PLAY.BAT",
"type": "HGA",
"sha256": "b9943f5997545768ed4549c02638c29c1e228e718ad60964f0145c205b01cd79",
"coverFilename": "cover.png",
"filesize": 8323064
},
"管状世界": {
"identifier": "管状世界",
"name": {
"zh-Hans": "管状世界"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "72fa4e31f3fe1a5519c3de5a3b1ea0733a095ba74f9e18b79ba2c43f23846488",
"filesize": 1120295,
"coverFilename": "cover.png"
},
"冠军拉力赛": {
"identifier": "冠军拉力赛",
"name": {
"zh-Hans": "冠军拉力赛"
},
"executable": "race.exe",
"type": "SIM",
"sha256": "bf4827c52e17b732e54acb6fd7ed86970db87784139d6fccb9278708c86ca7cb",
"filesize": 3003962,
"coverFilename": "cover.png"
},
"冠军足球经理2": {
"identifier": "冠军足球经理2",
"name": {
"zh-Hans": "冠军足球经理2"
},
"executable": "go.bat",
"type": "SIM",
"sha256": "154a5d67771e081cd03efcd61cc6d61aa9bd2279405740ab487377c70aa8506f",
"filesize": 13677287,
"coverFilename": "cover.png"
},
"灌篮96": {
"identifier": "灌篮96",
"name": {
"zh-Hans": "灌篮96"
},
"executable": "slam.exe",
"type": "SIM",
"sha256": "75f9dbfba952261f5009d5bac2a75e0cb0c85af03b2f4fcb022e4213ee7fa829",
"filesize": 10725254,
"coverFilename": "cover.png"
},
"灌篮金刚": {
"identifier": "灌篮金刚",
"name": {
"zh-Hans": "灌篮金刚"
},
"executable": "play.bat",
"type": "ACT",
"sha256": "6d666513c2ba144e21878cd2e3a49b39972ff237e843f6bcdc88c955a2566909",
"filesize": 25338847,
"coverFilename": "cover.png"
},
"光明圣使团": {
"identifier": "光明圣使团",
"name": {
"zh-Hans": "光明圣使团"
},
"executable": "play.bat",
"type": "HGA",
"sha256": "fae08b7c74546b6e2c063688d24688a69f79e2a79c6eb507e71049b7a3e95d32",
"filesize": 5641018,
"coverFilename": "cover.png"
},
gitextract_ru5up3ro/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── game-request.md │ ├── workflows/ │ │ ├── s3-sync.yml │ │ └── wiki.yml │ └── workflows_scripts/ │ └── generate_home.py ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── download_data.py └── games.json
SYMBOL INDEX (4 symbols across 2 files) FILE: .github/workflows_scripts/generate_home.py function sizeof_fmt (line 26) | def sizeof_fmt(num, suffix='B'): FILE: download_data.py function generate_sha256 (line 22) | def generate_sha256(file): function download (line 33) | def download(identifier, url, file): function main (line 38) | def main(prefix=PREFIX, destination=DESTINATION):
Condensed preview — 13 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (683K chars).
[
{
"path": ".github/FUNDING.yml",
"chars": 751,
"preview": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [u"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 189,
"preview": "---\nname: Bug report\nabout: \"\\U0001F41B Create a report to help us improve bug 报告\"\n\n---\n\n**bug 描述**\nbug 的描述\n\n**如何重现**\n如何"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 138,
"preview": "---\nname: Feature request\nabout: \"\\U0001F31F Suggest an idea for this project 功能要求\"\n\n---\n\n**要求的功能**\n描述功能\n\n**优先度**\n* [ ] "
},
{
"path": ".github/ISSUE_TEMPLATE/game-request.md",
"chars": 185,
"preview": "---\nname: Game request\nabout: \"\\U0001F3AE Requesting new game. 新游戏请求。\"\n\n---\n\n**游戏简体中文名:** \n**游戏繁体中文名:**\n**游戏英文名:**\n**游戏发"
},
{
"path": ".github/workflows/s3-sync.yml",
"chars": 690,
"preview": "name: Sync images to S3\n\non:\n workflow_dispatch:\n push:\n branches: \n - master\n\njobs:\n sync:\n runs-on: u"
},
{
"path": ".github/workflows/wiki.yml",
"chars": 522,
"preview": "name: Update Wiki\n\non:\n push:\n paths:\n - 'games.json'\n branches:\n - master\n workflow_dispatch:\n\n\njobs:"
},
{
"path": ".github/workflows_scripts/generate_home.py",
"chars": 1780,
"preview": "import json\n\nimport os\nimport json\n\nroot = os.path.abspath('.')\n\nEXIST_TEXT = '✔️'\nNONEXIST_TEXT = '❌'\n\nwith open(os.pat"
},
{
"path": ".gitignore",
"chars": 1246,
"preview": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packagi"
},
{
"path": "CONTRIBUTING.md",
"chars": 1326,
"preview": "## 修改现有游戏信息\n\n修改 `games.json` 文件,目前已有的键值为\n\n* `identifier`: 游戏标识符\n* `name`: 游戏名称\n* `releaseYear`: 游戏发行年份\n* `keymaps`: 游戏操作"
},
{
"path": "LICENSE",
"chars": 35147,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "README.md",
"chars": 1153,
"preview": "# 🎮 中文 DOS 游戏\n\n网址: https://dos.lol\n\n\n中文 DOS 游戏合集,目前共有 1898 款游戏。\n\n## 下载游戏文件\n\n在根目录下运行 Python 3 脚本\n\n``` python\npython downl"
},
{
"path": "download_data.py",
"chars": 1647,
"preview": "import hashlib\nimport inspect\nimport os\nimport json\nimport urllib.request\n\nfrom concurrent.futures import ThreadPoolExec"
},
{
"path": "games.json",
"chars": 560244,
"preview": "{\n \"games\": {\n \"仙剑奇侠传\": {\n \"identifier\": \"仙剑奇侠传\",\n \"name\": {\n \"zh-Hans\": \"仙剑奇侠传\",\n \"zh-Hant\""
}
]
About this extraction
This page contains the full source code of the rwv/chinese-dos-games GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 13 files (590.8 KB), approximately 238.6k tokens, and a symbol index with 4 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.