-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.js
More file actions
1879 lines (1878 loc) · 148 KB
/
Copy pathgames.js
File metadata and controls
1879 lines (1878 loc) · 148 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Apple IIgs Game Database
* Generated: 2025/12/24 11:12:25
* Total titles: 130
*
**/
window.games = [
{
"id": "https://www.brutaldeluxe.fr/products/apple2gs/loderunner/",
"emu": "apple2gs",
"file": "https://www.brutaldeluxe.fr/products/apple2gs/loderunner/disks/loderunneriigs.zip/lr_system.po",
"file2": "https://www.brutaldeluxe.fr/products/apple2gs/loderunner/disks/loderunneriigs.zip/lr_program.po",
"name": "Lode Runner 2024",
"year": "2024",
"type": "game",
"desc": "Lode Runner is a puzzle-platform game developed by Doug Smith and published by Broderbund in 1983. Its gameplay mechanics are similar to Space Panic from 1980. The player controls a character who must collect all the gold pieces in a level and reach the end while being chased by a number of enemies. This version was developed by Antoine Vignau and Olivier Zardini for Apple IIgs in 2024 and produced by Tozai Games.",
"descCh": "超級運動員 (Lode Runner)是一款於1983年由Doug Smith開發、Broderbund發行的經典平台解謎動作遊戲。玩家操作主角在多個關卡中收集所有金塊,再到達出口過關,途中要利用挖洞策略避開敵人追擊。此遊戲是最早具有關卡編輯器功能的作品之一。本作為Antoine Vignau 與 Olivier Zardini 於2024年為Apple IIgs開發,並由 Tozai Games 製作。",
"developer": "Tozai Games",
"publisher": "Brutal Deluxe Software",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.brutaldeluxe.fr%2Fproducts%2Fapple2gs%2Floderunner%2Fimages%2Flr_title.jpg",
"nameCh": "超級運動員"
},
{
"id": "wozaday_4th_and_Inches_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "4th & Inches",
"year": "1988",
"type": "game",
"desc": "4th & Inches is a detailed American football simulation that emphasizes strategic play-calling. Players act as both coach and athlete, choosing formations and plays from a comprehensive playbook before executing them on the field. The gameplay features a side-scrolling view where you control key players to pass, run, or tackle, aiming to outmaneuver the defense and score touchdowns.",
"developer": "Tony Manso & Sculptured Software",
"publisher": "Accolade",
"screenshot": "00playable_screenshot.png",
"nameCh": "美式足球:第四碼",
"descCh": "4th & Inches 是一款詳細的美式足球模擬遊戲,強調策略性的比賽指揮。球員既充當教練又充當運動員,從全面的戰術手冊中選擇陣型和比賽,然後在場上執行。遊戲採用橫向捲軸視圖,您可以控制關鍵球員傳球、跑動或攔截,旨在突破防守並達陣得分。"
},
{
"id": "a2gs_Aaargh_1988_Arcadia_Software",
"emu": "apple2gs",
"file": "Aaargh_1988_Arcadia_Software.2mg",
"name": "Aaargh!",
"year": "1988",
"type": "game",
"desc": "In this monster-themed action game, you control an ogre or a lizard searching for golden eggs across various cities. Players must 'smash buildings' and defeat human defenses like catapults while scavenging for food to maintain health. The gameplay features a mix of 'top-down exploration' and 'side-view combat' as you duel rival monsters to become the ultimate titan.",
"developer": "Synergistic Software",
"publisher": "Arcadia Software",
"screenshot": "00_coverscreenshot.png",
"nameCh": "怪獸大暴走",
"descCh": "在這款以怪物為主題的動作遊戲中,您控制食人魔或蜥蜴在各個城市尋找金蛋。玩家必須“摧毀建築物”並擊敗彈射器等人類防禦設施,同時尋找食物以維持健康。遊戲玩法融合了“自上而下的探索”和“側視戰鬥”,您將與對手怪物決鬥,成為終極泰坦。"
},
{
"id": "a2gs_Airball_1989_MicroDeal",
"emu": "apple2gs",
"file": "Airball_1989_MicroDeal.2mg",
"name": "Airball",
"year": "1989",
"type": "game",
"desc": "In this isometric puzzle-platformer, you control a human transformed into a fragile, 'inflated ball'. Players must navigate a massive 150-room castle to find a spellbook for the Great Wizard. The gameplay focuses on 'precision movement' to avoid spikes while constantly searching for 'air pumps' to prevent the ball from deflating and bursting before time runs out.",
"developer": "Jason Harper",
"publisher": "MicroDeal",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Airball_IIgs%2F00playable_screenshot.png",
"nameCh": "氣球歷險",
"descCh": "在這款等距解謎平台遊戲中,您控制一個變成脆弱“充氣球”的人類。玩家必須穿越一座擁有 150 個房間的巨大城堡,找到大巫師的魔法書。遊戲玩法側重於“精確移動”以避免尖刺,同時不斷尋找“氣泵”以防止球在時間耗盡之前洩氣和爆裂。"
},
{
"id": "wozaday_Alien_Mind",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Alien Mind",
"year": "1988",
"type": "game",
"desc": "Alien Mind is a fast-paced top-down shooter where you play a scientist navigating a space station overrun by hostile experiments. Players must find keycards to unlock doors while managing limited ammunition for various futuristic weapons. The gameplay emphasizes intense 'bullet-dodging' action and strategic exploration through complex levels to stop a rogue biological threat.",
"developer": "Rob Karr & Matt Crysdale",
"publisher": "PBI Software",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "異形之心",
"descCh": "Alien Mind 是一款快節奏的自上而下射擊遊戲,您將扮演一名科學家,在充滿敵意實驗的空間站中航行。玩家必須找到鑰匙卡來解鎖門,同時管理各種未來武器的有限彈藥。遊戲玩法強調激烈的“躲避子彈”行動和通過複雜關卡進行的戰略探索,以阻止流氓生物威脅。"
},
{
"id": "wozaday_Ancient_Glory_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Ancient Glory",
"year": "1993",
"type": "game",
"desc": "Ancient Glory is a 'top-down' tactical wargame set in the classical era. Players command ancient armies, managing units like 'phalanxes, cavalry, and archers' on grid-based battlefields. The gameplay emphasizes 'troop positioning' and utilizing terrain advantages to defeat enemy forces. You must balance offensive maneuvers with defensive formations to secure victory in various historical and fictional scenarios.",
"developer": "Logical Design Works, Westwood Associates",
"publisher": "Big Red Computer Club",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "遠古榮耀",
"descCh": "《Ancient Glory》是一款以古典時代為背景的“自上而下”戰術戰爭遊戲。玩家指揮古代軍隊,在基於網格的戰場上管理“方陣、騎兵和弓箭手”等單位。遊戲玩法強調“排兵布陣”,利用地形優勢擊敗敵軍。你必須平衡進攻機動與防禦陣型,以確保在各種歷史和虛構場景中取得勝利。"
},
{
"id": "e2gs_0487_Ancient_Land_of_Ys_Disk_1",
"emu": "apple2gs",
"file": "0487_Ancient_Land_of_Ys_Disk_1.po",
"file2": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fe2gs_0488_Ancient_Land_of_Ys_Disk_2%2F0488_Ancient_Land_of_Ys_Disk_2.po",
"name": "Ancient Land of Ys",
"year": "1989",
"type": "game",
"desc": "As the adventurer Adol Christin, you explore the island of Esteria to find the legendary 'Books of Ys'. This action-RPG features a unique 'bump' combat system where players attack enemies by running into them slightly off-center to avoid taking damage. The gameplay emphasizes fast-paced exploration, leveling up through monster battles, and navigating dangerous dungeons to defeat powerful bosses.",
"developer": "Designer Software",
"publisher": "Kyodai",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.video-games-museum.com%2Fen%2Fscreenshots%2FApple%2520II%2520GS%2F1%2F55909-title-Ancient-Land-of-Ys.jpg",
"nameCh": "伊蘇:失落的古國",
"descCh": "作為冒險家阿道爾·克里斯汀,你探索埃斯特里亞島,尋找傳說中的“伊蘇之書”。這款動作角色扮演遊戲具有獨特的“碰撞”戰鬥系統,玩家可以通過稍微偏離中心的方式衝撞敵人來攻擊敵人,以避免受到傷害。遊戲玩法強調快節奏的探索,通過怪物戰鬥升級,並穿越危險的地牢來擊敗強大的頭目。"
},
{
"id": "a2gs_Arkanoid_1988_Taito_US",
"emu": "apple2gs",
"file": "Arkanoid_1988_Taito_US.2mg",
"name": "Arkanoid",
"year": "1988",
"type": "game",
"desc": "In this definitive 'paddle-and-ball' arcade game, players control the 'Vaus' craft to bounce a ball and destroy all bricks on screen. The gameplay features diverse 'power-up capsules' that grant abilities like 'lasers, multiple balls, or an extended paddle'. Players must clear 33 stages, ending in a final confrontation with the dimension-warping entity, 'Doh'",
"developer": "Ryan Ridges & John Lund",
"publisher": "Taito America",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "快打磚塊",
"descCh": "在這款終極“槳球”街機遊戲中,玩家控制“Vaus”飛船彈起球並摧毀屏幕上的所有磚塊。遊戲玩法具有多種“能量膠囊”,可賦予“激光、多個球或延長槳”等能力。玩家必須通過 33 個關卡,最終與維度扭曲實體“Doh”進行最終對抗"
},
{
"id": "wozaday_Arkanoid_II_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Arkanoid II: Revenge of Doh",
"year": "1989",
"type": "game",
"desc": "In this classic 'paddle-and-ball' arcade sequel, players control the 'Vaus' craft to destroy layers of bricks. The gameplay introduces new power-ups, branching level paths, and 'silver' reinforced bricks that require multiple hits. Success depends on quick reflexes to catch falling capsules and strategic ball placement to defeat the recurring boss, 'Doh', at the final stage.",
"developer": "Ryan Ridges & John Lund",
"publisher": "Taito America",
"screenshot": "00playable_screenshot.png",
"nameCh": "快打磚塊2",
"descCh": "在這款經典的“槳球”街機續作中,玩家控制“Vaus”飛船摧毀多層磚塊。遊戲玩法引入了新的能力提升、分支關卡路徑以及需要多次擊中的“銀色”強化磚塊。成功取決於快速反應來接住掉落的膠囊,以及在最後階段擊敗反復出現的 Boss“Doh”的戰略球位置。"
},
{
"id": "a2gs_As_the_Link_Turns_1988_Rogue_Systems_SW",
"emu": "apple2gs",
"file": "As_the_Link_Turns_1988_Rogue_Systems_SW.2mg",
"name": "As the Link Turns",
"year": "1988",
"type": "game",
"desc": "'As the Link Turns' is a logic-based puzzle game where players must complete 'action-reaction' chains. You are presented with a series of mechanical and physical components that must be linked together to achieve a specific goal, such as moving an object. The gameplay emphasizes 'deductive reasoning' and understanding 'cause-and-effect' relationships to solve increasingly complex spatial puzzles.",
"developer": "Parik Rao & Scott Pease (Rogue Systems)",
"publisher": "",
"screenshot": "/proxy/url/https%3A%2F%2Fcdn.mobygames.com%2Fscreenshots%2F16854153-as-the-link-turns-operation-bug-apple-iigs-shooting-creatures.png",
"nameCh": "因果連結",
"descCh": "“As the Link Turns”是一款基於邏輯的益智遊戲,玩家必須完成“動作-反應”鏈。您會看到一系列機械和物理組件,必須將它們連接在一起才能實現特定目標,例如移動物體。遊戲玩法強調“演繹推理”和理解“因果”關係,以解決日益複雜的空間謎題。"
},
{
"id": "wozaday_Balance_of_Power_1990_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Balance of Power: The 1990 Edition",
"year": "1989",
"type": "game",
"desc": "Balance of Power: The 1990 Edition is a geopolitical simulation where players control either the USA or the Soviet Union during the Cold War. The goal is to maximize your country's prestige without triggering a 'global thermonuclear war'. The turn-based gameplay involves 'diplomacy', 'military intervention', and 'economic aid' decisions, with actions in 'hot spots' increasing the Defcon level and risking nuclear conflict.",
"developer": "Chris Crawford",
"publisher": "Mindscape",
"screenshot": "00playable_screenshot.png",
"nameCh": "權力平衡: 1990版",
"descCh": "Balance of Power: The 1990 Edition 是一款地緣政治模擬遊戲,玩家在冷戰期間控制美國或蘇聯。目標是在不引發“全球熱核戰爭”的情況下最大化您國家的威望。回合製遊戲涉及“外交”、“軍事干預”和“經濟援助”決策,“熱點”的行動會提高防禦等級並冒著核衝突的風險。"
},
{
"id": "wozaday_The_Bards_Tale_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Bard's Tale, The",
"year": "1988",
"type": "game",
"desc": "The Bard's Tale is a fantasy role-playing video game franchise created by Michael Cranford and developed by Brian Fargo's Interplay Productions and inXile Entertainment . The initial title of the series was Tales of the Unknown. The Bard's Tale II: The Destiny Knight dropped the Tales of the Unknown series title, as did all ports of the original game after 1988.",
"descCh": "The Bard's Tale 是由邁克爾·克蘭福德(Michael Cranford)創作,布萊恩·法戈(Brian Fargo)的Interplay Productions和inXile Entertainment共同開發的奇幻角色扮演遊戲系列。系列最初的名稱是《未知傳說》(Tales of the Unknown)。 《冰城傳奇2:命運騎士》(The Bard's Tale II: The Destiny Knight)放棄了《未知傳說》這個系列名稱,1988年後所有移植的初代作品也都沿用了這個名稱。",
"developer": "Rebecca Heineman",
"publisher": "Electronic Arts",
"screenshot": "00playable_screenshot.png",
"nameCh": "冰城傳奇"
},
{
"id": "a2gs_Battle_Chess_1989_Interplay",
"emu": "apple2gs",
"file": "Battle_Chess_1989_Interplay.2mg",
"name": "Battle Chess",
"year": "1989",
"type": "game",
"desc": "Battle Chess is a 'traditional chess game' with a unique visual twist. When one piece captures another, the game shifts to an 'animated combat sequence' where the pieces physically fight on the board based on their type (e.g., a knight beheads a pawn). The core gameplay remains 'standard chess strategy', but the addition of 'humorous and dynamic animations' adds an entertaining layer to the classic game.",
"developer": "Rebecca Heineman",
"publisher": "Interplay Productions",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "戰鬥西洋棋",
"descCh": "Battle Chess 是一款具有獨特視覺效果的“傳統國際象棋遊戲”。當一個棋子捕獲另一個棋子時,遊戲會切換到“動畫戰鬥序列”,棋子根據其類型在棋盤上進行物理戰鬥(例如,騎士斬首棋子)。核心玩法仍然是“標準的國際象棋策略”,但添加“幽默和動感的動畫”為經典遊戲增添了娛樂性。"
},
{
"id": "a2gs_Beyond_Zork_1988_Infocom",
"emu": "apple2gs",
"file": "Beyond_Zork_1988_Infocom.2mg",
"name": "Beyond Zork",
"year": "1988",
"type": "game",
"desc": "Beyond Zork is a text-heavy RPG that blends interactive fiction with character development. Players customize stats like 'Strength' and 'Intelligence' to survive a non-linear quest for the 'Coconut of Quendor'. The gameplay features a text parser for commands, 'randomized encounters', and a persistent 'on-screen map' to aid navigation through the monster-filled Great Underground Empire.",
"developer": "Brian Moriarty",
"publisher": "Infocom",
"screenshot": "/proxy/url/https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fen%2F0%2F0a%2FBeyond_Zork_game_box_cover.jpg",
"nameCh": "魔域之外",
"descCh": "Beyond Zork 是一款文字豐富的角色扮演遊戲,將互動小說與角色發展融為一體。玩家可以自定義“力量”和“智力”等統計數據,以在“昆多椰子”的非線性任務中生存下來。遊戲玩法具有命令文本解析器、“隨機遭遇”和持久的“屏幕地圖”,以幫助在充滿怪物的地下帝國中導航。"
},
{
"id": "wozaday_The_Black_Cauldron_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Black Cauldron, The",
"year": "1987",
"type": "game",
"desc": "Based on the Disney film, you play as Taran to stop the Horned King. This beginner-friendly adventure replaces the text parser with a simple 'function key' interface for 'Look', 'Do', and 'Use'. The gameplay focuses on 'exploration and choice', featuring multiple endings based on how you handle encounters and whether you rescue your friends or the magical pig, Hen Wen.",
"developer": "Al Lowe",
"publisher": "Sierra",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "黑神鍋",
"descCh": "根據迪士尼電影改編,您將扮演塔蘭來阻止有角之王。這個適合初學者的冒險遊戲用簡單的“功能鍵”介面取代了文本解析器,用於“查看”、“執行”和“使用”。遊戲玩法側重於“探索和選擇”,根據你如何處理遭遇以及是拯救你的朋友還是神奇的小豬亨文而有多種結局。"
},
{
"id": "wozaday_Blackjack_Academy_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Blackjack Academy",
"year": "1988",
"type": "game",
"desc": "Blackjack Academy is a comprehensive simulation designed to teach professional 'betting and card-counting' strategies. Using a mouse-driven interface, players compete against the house while the 'tutorial system' provides real-time feedback on their decisions. The gameplay focuses on 'mastering odds', managing a bankroll, and learning when to 'hit, stand, or double down' to maximize winning potential.",
"developer": "Westwood",
"publisher": "Micro Illusions",
"screenshot": "00playable_screenshot.png",
"nameCh": "21點學院",
"descCh": "Blackjack Academy 是一個綜合模擬遊戲,旨在教授專業的“投注和算牌”策略。使用滑鼠驅動的介面,玩家與莊家競爭,而“教程系統”則提供有關他們決策的實時反饋。遊戲玩法的重點是“掌握賠率”、管理資金以及學習何時“擊牌、停牌或加倍下注”以最大限度地提高獲勝潛力。"
},
{
"id": "wozaday_Blockout_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Block Out",
"year": "1989",
"type": "game",
"desc": "Block Out is a '3D version' of Tetris where players look down into a rectangular pit. Using the keyboard, you must 'rotate blocks along three axes'—X, Y, and Z—to fit them into complete layers at the bottom. The gameplay emphasizes 'spatial awareness' and quick thinking as the pit fills up, requiring players to visualize how complex 3D shapes intersect to clear levels.",
"developer": "Logical Design Works",
"publisher": "California Dreams",
"screenshot": "00playable_screenshot.png",
"nameCh": "立體俄羅斯方塊",
"descCh": "Block Out 是俄羅斯方塊的“3D 版本”,玩家可以俯視一個矩形坑。使用鍵盤,您必須“沿三個軸旋轉塊”(X、Y 和 Z),以將它們放入底部的完整層中。遊戲玩法強調“空間意識”和坑填滿時的快速思維,要求玩家想像複雜的 3D 形狀如何相交以達到清晰的水平。"
},
{
"id": "wozaday_Bridge_6_0_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Bridge 6.0",
"year": "1989",
"type": "game",
"desc": "Bridge 6.0 is a comprehensive simulation of the classic four-player card game. Players use the mouse to 'bid' and play hands following standard 'contract bridge' rules. The gameplay features a 'tutorial mode' for beginners and adjustable skill levels for the AI, allowing players to practice their 'bidding systems' and 'card-play techniques' against a challenging computer opponent.",
"developer": "Arthur Walsh & Roger Harnish",
"publisher": "Artworx",
"screenshot": "00playable_screenshot.png",
"nameCh": "橋牌6.0",
"descCh": "Bridge 6.0 是一款全面模擬經典的四人紙牌遊戲。玩家使用滑鼠“出價”並按照標準“合約橋”規則玩牌。遊戲玩法為初學者提供了“教程模式”,並為人工智能提供了可調整的技能水平,讓玩家可以練習“叫牌系統”和“打牌技巧”,對抗具有挑戰性的電腦對手。"
},
{
"id": "a2gs_Bubble_Ghost_1988_Accolade",
"emu": "apple2gs",
"file": "Bubble_Ghost_1988_Accolade.2mg",
"name": "Bubble Ghost",
"year": "1988",
"type": "game",
"desc": "In this unique physics-based puzzle game, you control a small ghost who must blow a 'fragile bubble' through a haunted mansion. Players use the mouse to rotate the ghost and 'puff' air to move the bubble, avoiding spikes, fans, and candles. The gameplay demands 'extreme precision' to navigate 35 rooms filled with traps without popping the bubble.",
"developer": "ERE Informatique",
"publisher": "Accolade",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Bubble_Ghost_IIgs%2F00playable_screenshot.png",
"nameCh": "泡泡幽靈",
"descCh": "在這款獨特的基於物理的益智遊戲中,您控制一個小幽靈,它必須吹出一個“脆弱的泡泡”穿過一座鬧鬼的宅邸。玩家使用滑鼠旋轉幽靈並“吹”空氣來移動氣泡,避開尖刺、風扇和蠟燭。遊戲玩法需要“極高的精確度”,才能在 35 個佈滿陷阱的房間中穿行而不戳破泡泡。"
},
{
"id": "wozaday_California_Games_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "California Games",
"year": "1988",
"type": "game",
"desc": "California Games is an 'action sports' compilation featuring diverse events like 'skateboarding half-pipe', 'surfing', 'roller skating', and 'BMX trick racing'. Players compete for high scores representing a California county in a 'multi-event' tournament. The gameplay relies on 'timing and precise joystick or mouse movements' to execute tricks, catch waves, and navigate courses to achieve the best results in each sun-drenched discipline.",
"developer": "Designer Software (Jimmy Huey)",
"publisher": "Epyx",
"screenshot": "00playable_screenshot.png",
"nameCh": "加州運動會",
"descCh": "加州運動會是一個“極限運動”合集,包括“U型管滑板”、“衝浪”、“輪滑”和“BMX特技賽車”等多種項目。選手們代表加利福尼亞州的一個縣參加“多賽事”錦標賽,爭奪高分。遊戲玩法依靠“時機和精確的操縱桿或滑鼠移動”來執行技巧、捕捉波浪和導航路線,以在每個陽光普照的項目中取得最佳成績。"
},
{
"id": "a2gs_Captain_Blood_1989_Mindscape",
"emu": "apple2gs",
"file": "Captain_Blood_1989_Mindscape.2mg",
"name": "Captain Blood",
"year": "1989",
"type": "game",
"desc": "As Captain Blood, you pilot the 'Ark' spaceship through a fractal galaxy to find five clones. The gameplay centers on a complex 'icon-based interface' (UPCOM) to communicate with diverse alien species. You must negotiate for 'star coordinates', manage planetary resources, and 'teleport' aliens to exchange information, all while your character's health slowly deteriorates from a terminal curse.",
"developer": "ERE Informatique (Alexis Martial & Jean-Michel Jarre)",
"publisher": "Mindscape",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "鐵血隊長",
"descCh": "作為鐵血隊長,你駕駛“方舟”宇宙飛船穿過分形星系,尋找五個克隆人。遊戲玩法以復雜的“基於圖標的介面”(UPCOM)為中心,用於與不同的外星物種進行交流。你必須協商“恆星坐標”,管理行星資源,並“傳送”外星人以交換信息,而你的角色的健康狀況卻因絕症詛咒而慢慢惡化。"
},
{
"id": "a2gs_Carte_Primus_1989_Manthey_d_SW",
"emu": "apple2gs",
"file": "Carte_Primus_1989_Manthey_d_SW.2mg",
"name": "Carte Primus",
"year": "1989",
"type": "game",
"desc": "Carte Primus is a collection of five popular card games: 'Cribbage', 'Gin Rummy', 'Hearts', 'Pinochle', and 'Pitch'. Players use a 'mouse-driven interface' to interact with cards and game menus. The gameplay focuses on 'digital adaptations' of these traditional rulesets, allowing single players to compete against a 'computer AI' opponent in a straightforward format.",
"developer": "David Manthey",
"publisher": "David Manthey",
"screenshot": "/proxy/url/https%3A%2F%2Fimages.igdb.com%2Figdb%2Fimage%2Fupload%2Ft_720p%2Fscdrts.jpg",
"nameCh": "撲克牌合輯",
"descCh": "Carte Primus 是五種流行紙牌遊戲的集合:“Cribbage”、“Gin Rummy”、“Hearts”、“Pinochle”和“Pitch”。玩家使用“滑鼠驅動的介面”與紙牌和遊戲菜單進行交互。遊戲玩法側重於這些傳統規則集的“數字改編”,允許單人玩家以簡單的形式與“電腦人工智慧”對手競爭。"
},
{
"id": "wozaday_Cavern_Cobra_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Cavern Cobra",
"year": "1987",
"type": "game",
"desc": "Cavern Cobra is a fast-paced 'side-scrolling' action game where players pilot a high-tech combat helicopter. You must navigate through narrow, twisting 'subterranean caverns' to destroy enemy bases and 'rescue hostages'. The gameplay emphasizes 'precision flying' and rapid shooting, requiring you to manage fuel levels while dodging 'stalactites' and intense anti-aircraft fire from ground turrets and robotic guardians.",
"developer": "Greg Hale",
"publisher": "PBI Software",
"screenshot": "00playable_screenshot.png",
"nameCh": "洞窟眼鏡蛇",
"descCh": "《Cavern Cobra》是一款快節奏的“橫向捲軸”動作遊戲,玩家可以駕駛高科技戰鬥直升機。你必須穿過狹窄、扭曲的“地下洞穴”,摧毀敵人的基地並“營救人質”。遊戲玩法強調“精確飛行”和快速射擊,要求你管理燃油水平,同時躲避“鐘乳石”以及來自地面砲塔和機器人守衛的猛烈防空火力。"
},
{
"id": "wozaday_Club_Backgammon_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Club Backgammon",
"year": "1988",
"type": "game",
"desc": "Club Backgammon provides a digital rendition of the classic board game with three difficulty levels. Players use a 'mouse-driven interface' to roll dice and move checkers across 24 points. The gameplay includes an 'automatic scorekeeper', a doubling cube for high stakes, and a log to review previous moves during matches.",
"developer": "Logical Design Works",
"publisher": "California Dreams",
"screenshot": "00playable_screenshot.png",
"nameCh": "西洋雙陸棋俱樂部",
"descCh": "Club Backgammon 提供了經典棋盤遊戲的數字版本,具有三個難度級別。玩家使用“滑鼠驅動的介面”來擲骰子並在 24 個點上移動棋子。遊戲玩法包括“自動記分員”、高賭注的加倍立方體以及用於在比賽期間回顧之前動作的日誌。"
},
{
"id": "a2gs_Cogito_1992_Brutal_Deluxe_FW",
"emu": "apple2gs",
"file": "SystemDisk.2mg",
"name": "Cogito",
"year": "1993",
"type": "game",
"desc": "'Cogito' is a grid-based logic puzzle where players must rearrange tiles to match a target pattern. Using a mouse, you slide entire rows or columns horizontally and vertically. The gameplay emphasizes 'spatial reasoning and strategy', as each move shifts multiple pieces simultaneously, requiring careful planning to solve 100 increasingly difficult levels within a limited number of moves.",
"developer": "Antoine Vignau & Olivier Zardini (Brutal Deluxe)",
"publisher": "Brutal Deluxe",
"file2": "Cogito_1992_Brutal_Deluxe_FW.2mg",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.brutaldeluxe.fr%2Fimages%2Fcoglog12.gif",
"nameCh": "我思",
"descCh": "“Cogito”是一款基於網格的邏輯謎題,玩家必須重新排列圖塊以匹配目標模式。使用滑鼠,您可以水平和垂直滑動整行或整列。遊戲玩法強調“空間推理和策略”,因為每次移動都會同時移動多個棋子,需要仔細規劃才能在有限的移動次數內解決 100 個難度不斷增加的關卡。"
},
{
"id": "wozaday_Columns_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Columns GS",
"year": "1991",
"type": "game",
"desc": "In this falling-block puzzle game, players arrange 'vertical columns' of three colored gems. You can 'cycle the order' of the colors as they fall to create horizontal, vertical, or diagonal matches of three or more identical gems. The gameplay challenges your 'reflexes and foresight' as the speed increases, requiring strategic placement to trigger 'chain reactions' and clear the board.",
"developer": "Kenrick Mock (Sound Barrier Systems)",
"publisher": "",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "寶石方塊GS",
"descCh": "在這款落塊益智遊戲中,玩家排列三顆彩色寶石的“垂直柱”。您可以在顏色下降時“循環順序”,以創建三個或更多相同寶石的水平、垂直或對角線匹配。隨著速度的增加,遊戲玩法會挑戰你的“反應力和遠見”,需要戰略佈局來觸發“連鎖反應”並清除棋盤。"
},
{
"id": "a2gs_Crystal_Quest_1989_Cassidy_Greene",
"emu": "apple2gs",
"file": "Crystal_Quest_1989_Cassidy__Greene.2mg",
"name": "Crystal Quest",
"year": "1989",
"type": "game",
"desc": "In this frantic arcade-style shooter, players use the mouse to navigate a ship through 'high-speed' levels. You must collect all 'crystals' on screen to open the exit portal while avoiding mines and diverse alien enemies. The gameplay emphasizes 'fast-paced' movement and 'rapid firing', featuring unique sound effects and increasingly chaotic waves across hundreds of levels.",
"developer": "Rebecca Heineman",
"publisher": "Cassidy & Greene",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "水晶任務",
"descCh": "在這款瘋狂的街機風格射擊遊戲中,玩家使用滑鼠在“高速”關卡中駕駛船隻。您必須收集屏幕上的所有“水晶”才能打開出口,同時避開地雷和各種外星敵人。遊戲玩法強調“快節奏”移動和“快速射擊”,具有獨特的音效和數百個關卡中日益混亂的波浪。"
},
{
"id": "wozaday_Dark_Castle_1989_09_22_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Dark Castle 1989-09-22",
"year": "1989",
"type": "game",
"desc": "In this challenging platformer, you guide Prince Duncan through 14 dangerous rooms to defeat the Black Knight. The gameplay features a unique control scheme using keys for movement and the mouse for aiming stones or fireballs. You must navigate traps, climb ropes, and battle enemies like bats, rats, and wizards while managing limited supplies.",
"developer": "Lane Roath",
"publisher": "Three Sixty",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "黑暗城堡 1989-09-22",
"descCh": "在這款具有挑戰性的平台遊戲中,您將引導鄧肯王子穿過 14 個危險的房間,擊敗黑騎士。遊戲玩法採用獨特的控制方案,使用按鍵進行移動,使用滑鼠瞄準石頭或火球。你必須在管理有限的物資的同時,穿過陷阱、攀爬繩索、與蝙蝠、老鼠和巫師等敵人作戰。"
},
{
"id": "wozaday_Deja_Vu_II_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Déjà Vu II: Lost in Las Vegas",
"year": "1989",
"type": "game",
"desc": "As detective Theodore 'Ace' Harding, you are kidnapped and forced to recover $100,000 for a mob boss. This first-person graphic adventure utilizes a 'point-and-click' interface where players manage an 'inventory' and select 'verbs' to interact with objects. The gameplay emphasizes 'logic-based puzzles' and careful investigation across diverse Las Vegas locations to avoid multiple 'dead-end' scenarios and certain death.",
"developer": "ICOM Simulations",
"publisher": "Mindscape",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "似曾相識2:迷失拉斯維加斯",
"descCh": "作為偵探西奧多·“艾斯”·哈丁,你被綁架並被迫為黑幫老大追回 10 萬美元。這款第一人稱圖形冒險遊戲採用“點擊”介面,玩家可以管理“庫存”並選擇“動詞”與對象進行交互。遊戲玩法強調“基於邏輯的謎題”和對拉斯維加斯不同地點的仔細調查,以避免多個“死胡同”場景和必然的死亡。"
},
{
"id": "wozaday_Destroyer_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Destroyer",
"year": "1987",
"type": "game",
"desc": "In this naval combat simulator, you command a Fletcher-class destroyer during WWII. Players manage multiple stations, including the 'Bridge, Radar, Anti-Aircraft guns, and Depth Charge racks'. The gameplay focuses on 'strategic multitasking', requiring you to hunt enemy submarines and defend against air raids while navigating through various historical missions in the Pacific.",
"developer": "Michael Kosaka & Chuck Sommerville",
"publisher": "Epyx",
"screenshot": "00playable_screenshot.png",
"nameCh": "驅逐艦",
"descCh": "在這款海戰模擬器中,您將在二戰期間指揮一艘弗萊徹級驅逐艦。玩家管理多個站點,包括“艦橋、雷達、高射砲和深水炸彈架”。遊戲玩法側重於“戰略多任務”,要求你在太平洋上執行各種歷史任務的同時,獵殺敵方潛艇並防禦空襲。"
},
{
"id": "wozaday_Downhill_Challenge_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Downhill Challenge",
"year": "1989",
"type": "game",
"desc": "Downhill Challenge is an action-oriented sports simulation featuring four skiing disciplines: 'Downhill, Slalom, Giant Slalom, and Ski Jumping'. Players select their equipment and compete against a 'time limit' or computer opponents across three difficulty levels. The gameplay emphasizes 'reflexes and rhythm', using a first-person or third-person perspective to navigate gates and avoid obstacles while maintaining maximum speed to reach the finish line.",
"developer": "Microids",
"publisher": "Broderbund",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "極速高山滑雪",
"descCh": "Downhill Challenge 是一款以動作為導向的運動模擬遊戲,具有四個滑雪項目:“速降、迴轉、大迴轉和跳台滑雪”。玩家選擇他們的裝備,並在三個難度級別上與“時間限制”或電腦對手競爭。遊戲玩法強調“反應和節奏”,使用第一人稱或第三人稱視角來導航大門並避開障礙物,同時保持最大速度到達終點線。"
},
{
"id": "wozaday_Dragon_Wars_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Dragon Wars",
"year": "1990",
"type": "game",
"desc": "Dragon Wars is a successor to The Bard's Tale. The game features a party of four adventurers in the city of Dilmun. Gameplay focuses on turn-based combat and first-person exploration through complex dungeons. It emphasizes a deep skill-based progression system and paragraph-based storytelling. Players must solve puzzles and use specific character abilities to interact with the environment.",
"developer": "Rebecca Heineman",
"publisher": "Interplay Productions",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "龍之戰爭",
"descCh": "《龍之戰爭》是《冰城傳奇》的續作。遊戲的主角是迪爾蒙市的四名冒險家。遊戲玩法側重於回合製戰鬥和復雜地下城的第一人稱探索。它強調基於深度技能的進展系統和基於段落的故事講述。玩家必須解決謎題並使用特定的角色能力與環境互動。"
},
{
"id": "wozaday_Dream_Zone_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Dream Zone",
"year": "1988",
"type": "game",
"desc": "In this surreal graphic adventure, players are trapped inside their own 'distorted dream' and must find a way to wake up. Using a 'point-and-click' interface combined with text input, you explore bizarre locations like a department store in the clouds or a high-tech fortress. The gameplay focuses on 'solving inventory-based puzzles' and interacting with strange characters, requiring creative logic to avoid 'dream-logic traps' and survive the nightmare.",
"developer": "Naughty Dog (Andy Gavin & Jason Rubin)",
"publisher": "Baudville",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "夢幻地帶",
"descCh": "在這場超現實的圖形冒險中,玩家被困在自己的“扭曲的夢境”中,必須找到醒來的方法。使用“點擊”介面與文本輸入相結合,您可以探索奇異的地點,例如雲中的百貨商店或高科技堡壘。遊戲玩法的重點是“解決基於庫存的謎題”並與奇怪的角色互動,需要創造性的邏輯來避免“夢想邏輯陷阱”並在噩夢中生存。"
},
{
"id": "a2gs_Dueltris_1992_DreamWorld_FW_a_non_boot",
"emu": "apple2gs",
"file": "SystemDisk.2mg",
"name": "DuelTris",
"year": "1992",
"type": "game",
"desc": "DuelTris is a competitive 'head-to-head' version of the classic falling-block puzzle. Two players compete simultaneously on a split-screen, aiming to clear lines to send 'garbage rows' to the opponent's side. The gameplay emphasizes 'speed and aggressive strategy', featuring power-ups and special blocks that can hinder the other player's progress or clear large sections of your own board to win the match.",
"developer": "Steven Chiang, Dave Seah & James Brookes",
"publisher": "DreamWorld",
"file2": "Dueltris_1992_DreamWorld_FW_a_non_boot.2mg",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.whatisthe2gs.apple2.org.za%2Ffiles%2FDuelTris%2FScreenGrab_2%2Fduel_tris_shot2.gif",
"nameCh": "對戰俄羅斯方塊",
"descCh": "DuelTris 是經典落塊拼圖的競爭性“面對面”版本。兩名玩家在分屏上同時進行比賽,目標是清除線路,將“垃圾行”發送到對手一側。遊戲玩法強調“速度和侵略性策略”,具有能力提升和特殊方塊,可以阻礙其他玩家的進度或清除自己棋盤的大部分以贏得比賽。"
},
{
"id": "a2gs_Dungeon_Master_1989_FTL",
"emu": "apple2gs",
"file": "Dungeon_Master_1989_FTL.2mg",
"name": "Dungeon Master",
"year": "1989",
"type": "game",
"desc": "Dungeon Master is a pioneering 'real-time' first-person dungeon crawler where players lead a party of four champions to defeat the evil Lord Chaos. Using a 'mouse-driven interface', you navigate a multi-level labyrinth, solving environmental puzzles and engaging in tactical combat. Characters improve their skills in four disciplines—'Fighter, Ninja, Priest, and Wizard'—simply by performing related actions rather than earning traditional experience points. The gameplay emphasizes 'resource management', requiring players to monitor the party's hunger, thirst, and light sources while discovering powerful 'spell runes' to cast magic in real-time.",
"developer": "Don Jordan",
"publisher": "FTL",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.whatisthe2gs.apple2.org.za%2Ffiles%2FDungeonMaster%2FScreenGrab_1%2Fdungeonshot1.gif",
"nameCh": "地下城主",
"descCh": "《地下城主》是一款開創性的“實時”第一人稱地下城探索遊戲,玩家將帶領四名冠軍組成的隊伍擊敗邪惡的混沌領主。使用“滑鼠驅動的介面”,您可以在多層迷宮中導航,解決環境難題並參與戰術戰鬥。角色只需執行相關動作即可提高“戰士、忍者、牧師和巫師”四個領域的技能,而不是賺取傳統的經驗值。遊戲玩法強調“資源管理”,要求玩家監控隊伍的飢餓、口渴和光源,同時發現強大的“法術符文”來實時施展魔法。"
},
{
"id": "wozaday_Fast_Break_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Fast Break",
"year": "1989",
"type": "game",
"desc": "Fast Break is a three-on-three basketball simulation that emphasizes both arcade action and strategic coaching. Players can choose from a variety of 'pre-set plays' or design their own using a built-in 'play editor'. The gameplay features a side-scrolling court where you control individual players to 'dribble, pass, and shoot', while managing your team's stamina and fouls to win matches or compete in a full tournament mode.",
"developer": "Greg Hospelhorn & George Wong",
"publisher": "Accolade",
"screenshot": "00playable_screenshot.png",
"nameCh": "3對3鬥牛",
"descCh": "Fast Break 是一款三對三的籃球模擬遊戲,強調街機動作和策略指導。玩家可以從各種“預設遊戲”中進行選擇,也可以使用內置的“遊戲編輯器”設計自己的遊戲。遊戲玩法採用橫向捲軸球場,您可以控制各個球員“運球、傳球和射門”,同時管理球隊的體力和犯規,以贏得比賽或在完整的錦標賽模式中競爭。"
},
{
"id": "wozaday_Final_Assault_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Final Assault",
"year": "1988",
"type": "game",
"desc": "Final Assault is a realistic 'mountain climbing' simulator set in the treacherous Alps. Players must choose a trail, manage essential gear like 'ropes and ice axes', and monitor their 'stamina and body temperature'. The gameplay focuses on 'precision timing' across first-person 3D landscapes, requiring you to carefully place your hands and feet while navigating 'crevasses, rock falls, and sudden blizzards' to reach the summit before sunset.",
"developer": "Infogrames",
"publisher": "Epyx",
"screenshot": "00playable_screenshot.png",
"nameCh": "終極登山",
"descCh": "Final Assault 是一款真實的“登山”模擬器,背景設定在危險的阿爾卑斯山。玩家必須選擇一條路線,管理“繩索和冰斧”等基本裝備,並監控他們的“耐力和體溫”。遊戲玩法側重於第一人稱 3D 景觀中的“精確計時”,要求你小心地放置手腳,同時穿越“裂縫、岩石墜落和突然的暴風雪”,以便在日落之前到達山頂。"
},
{
"id": "a2gs_Firepower_1989_MicroIllusions",
"emu": "apple2gs",
"file": "Firepower_1989_MicroIllusions.2mg",
"name": "Firepower",
"year": "1989",
"type": "game",
"desc": "Firepower is a top-down tank combat game where players navigate expansive landscapes to destroy enemy bases and capture flags. The gameplay features a 'split-screen' mode for two players on one computer or a pioneering 'modem connection' for real-time remote play and chatting. Players must manage an 'unlimited supply of tanks' to demolish buildings, run over enemy soldiers, and strategically place 'mines' that can damage both friend and foe. The objective in a two-player match is to 'capture the enemy flag' and safely return it to your home base to secure victory.",
"developer": "Stephen Lepisto",
"publisher": "MicroIllusions",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "火網大戰",
"descCh": "《Firepower》是一款自上而下的坦克戰鬥遊戲,玩家可以在廣闊的地形中航行,摧毀敵人的基地並奪取旗幟。該遊戲的特點是“分屏”模式,可供兩名玩家在一台電腦上進行,或採用開創性的“調製解調器連接”模式,用於實時遠程遊戲和聊天。玩家必須管理“無限供應的坦克”來摧毀建築物,碾壓敵方士兵,並有策略地放置可以傷害朋友和敵人的“地雷”。兩人比賽的目標是“奪取敵方旗幟”並將其安全帶回自己的基地以確保勝利。"
},
{
"id": "wozaday_Full_Metal_Planete_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Full Metal Planète",
"year": "1993",
"type": "game",
"desc": "Full Metal Planète is a turn-based strategy game where players compete to mine valuable ore on a remote planet. Each player commands a 'drop ship' and a fleet of specialized vehicles like 'tanks, crabs, and weather-craft'. The gameplay is unique for its 'real-time clock', which limits the duration of each player's turn, and its 'rising and falling tides' that can trap or destroy land units. You must balance ore collection with tactical combat to protect your harvest and secure victory before the planet becomes too unstable to remain.",
"developer": "Brainstorm Software (Francois Uhrich & Nicolas Bergeret)",
"publisher": "Infogrames",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "烈火金剛",
"descCh": "《烈火金剛》是一款回合製策略遊戲,玩家可以在偏遠星球上競爭開採寶貴的礦石。每個玩家都指揮一艘“運輸船”和一支由“坦克、螃蟹和氣象船”等特種車輛組成的車隊。該遊戲的獨特之處在於它的“實時時鐘”,它限制了每個玩家回合的持續時間,以及它的“漲潮和落潮”,可以困住或摧毀陸地單位。你必須平衡礦石收集和戰術戰鬥,以保護你的收穫並在星球變得太不穩定而無法留下之前確保勝利。"
},
{
"id": "wozaday_GATE_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "GATE",
"year": "1991",
"type": "game",
"desc": "GATE is a top-down action-adventure where players explore a series of dangerous levels to retrieve artifacts and defeat enemies. The gameplay features smooth, multi-directional scrolling and emphasizes 'fast-paced combat' using various weapons. Players must navigate maze-like environments, find 'keycards' to unlock passages, and manage their 'health and oxygen' while battling robotic guardians. The game is well-known on the IIGS for its 'high-speed performance' and impressive 16-color graphics.",
"developer": "Bright Software (Joerg Kienzle, Yann Le Tensorer & Henrik Gudat)",
"publisher": "Toolbox & Seven Hills",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "時空之門",
"descCh": "《GATE》是一款自上而下的動作冒險遊戲,玩家可以探索一系列危險的關卡,取回文物並擊敗敵人。遊戲玩法具有流暢、多向滾動的特點,並強調使用各種武器的“快節奏戰鬥”。玩家必須在迷宮般的環境中導航,找到“鑰匙卡”來解鎖通道,並在與機器人守護者戰鬥時管理自己的“健康和氧氣”。該遊戲因其“高速性能”和令人印象深刻的 16 色圖形而在 IIGS 上廣為人知。"
},
{
"id": "wozaday_Gauntlet_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Gauntlet",
"year": "1988",
"type": "game",
"desc": "Gauntlet is a classic 'hack-and-slash' dungeon crawler where players choose from four heroes: 'Warrior, Valkyrie, Wizard, or Elf'. The gameplay involves navigating endless top-down labyrinths, destroying 'monster generators', and collecting treasure. You must maintain your 'health', which doubles as a timer that depletes over time, by finding food while fighting through overwhelming hordes of ghosts and demons.",
"developer": "Atari Games",
"publisher": "Mindscape",
"screenshot": "00playable_screenshot.png",
"nameCh": "聖鎧傳說",
"descCh": "Gauntlet 是一款經典的“砍殺”地下城探索遊戲,玩家可以從四種英雄中進行選擇:“戰士、瓦爾基里、巫師或精靈”。遊戲玩法包括穿越無盡的自上而下的迷宮、摧毀“怪物生成器”和收集寶藏。你必須通過在與壓倒性的鬼魂和惡魔的戰鬥中尋找食物來維持你的“健康”,它同時也是一個隨著時間的推移而耗盡的計時器。"
},
{
"id": "a2gs_GBA_Championship_Basketball_Two-On-Two_1987_Gamestar_Activision",
"emu": "apple2gs",
"file": "GBA_Championship_Basketball_Two-On-Two_1987_Gamestar_Activision.2mg",
"name": "GBA Championship Basketball: Two on Two",
"year": "1987",
"type": "game",
"desc": "GBA Championship Basketball: Two on Two is an arcade-style basketball simulation featuring fast-paced action. Players control two team members using a 'side-scrolling perspective' of the court. The gameplay emphasizes 'speed and aggressive play', including features like the ability to 'call picks', 'steal the ball', and execute dramatic 'dunk shots'. You can play against the computer AI or challenge a friend in 'head-to-head' mode, aiming to win the championship title.",
"developer": "Gamestar (Paul Terry & Jack Thornton)",
"publisher": "Activision",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "GBA 冠軍籃球:2對2鬥牛",
"descCh": "GBA 冠軍籃球:2對2鬥牛是一款街機風格的籃球模擬遊戲,具有快節奏的動作。玩家使用球場的“橫向滾動視角”控制兩名隊員。遊戲玩法強調“速度和侵略性遊戲”,包括“呼叫選秀”、“搶斷球”和執行戲劇性“扣籃”等功能。你可以與電腦AI對戰,也可以在“面對面”模式中挑戰朋友,力爭贏得冠軍頭銜。"
},
{
"id": "a2gs_Cribbage_Gin_King_1990_The_Software_Toolworks",
"emu": "apple2gs",
"file": "SystemDisk.2mg",
"name": "Cribbage King / Gin King",
"year": "1990",
"type": "game",
"desc": "'Cribbage King / Gin King' is a software compilation featuring two popular card games. Players can compete against a computer AI opponent or a friend. The 'mouse-driven interface' allows for easy card management and score tracking. The gameplay requires understanding the specific rules and strategies of 'Cribbage' (a points-based game involving 'pegging' and 'hands') and 'Gin Rummy' (a melding game where players try to form sets and runs to 'go gin').",
"developer": "Mark Manyen",
"publisher": "Software Toolworks",
"file2": "Cribbage__Gin_King_1990_The_Software_Toolworks.2mg",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Gin_King_Cribbage_King_IIgs%2F00playable_screenshot.png",
"nameCh": "篋牌/金剛撲克",
"descCh": "“Cribbage King / Gin King”是一款包含兩種流行紙牌遊戲的軟體彙編。玩家可以與電腦人工智慧對手或朋友競爭。 “滑鼠驅動的介面”可以輕鬆進行卡片管理和分數跟踪。遊戲玩法需要了解“Cribbage”(一種涉及“pegging”和“hands”的基於積分的遊戲)和“Gin Rummy”(一種融合遊戲,玩家嘗試組成集合併運行“go gin”)的具體規則和策略。"
},
{
"id": "wozaday_Gnarly_Golf_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Gnarly Golf",
"year": "1989",
"type": "game",
"desc": "Gnarly Golf is a classic, quirky mini-golf video game released in 1989 for the Apple IIGS computer, known for its wild, physics-based holes that defy real-world golf rules, offering a fun, arcade-style challenge with absurd obstacles and unique gameplay for its time.",
"developer": "Visual Concepts (Jim Coliz Jnr & Darren Bartlett)",
"publisher": "Britannica / Fanfare",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "狂野高爾夫",
"descCh": "《Gnarly Golf》是一款經典、古怪的迷你高爾夫影片遊戲,於 1989 年在 Apple IIGS 電腦上發布,以其狂野、基於物理的球洞而聞名,這些球洞違背了現實世界的高爾夫規則,提供了有趣的街機風格挑戰、荒謬的障礙和當時獨特的遊戲玩法。"
},
{
"id": "wozaday_Grand_Prix_Circuit_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Grand Prix Circuit",
"year": "1989",
"type": "game",
"desc": "Grand Prix Circuit is a Formula One racing simulation game that offers a cockpit view experience with various difficulty levels and race modes. ",
"developer": "Distinctive Software",
"publisher": "Accolade",
"screenshot": "00playable_screenshot.png",
"nameCh": "一級方程式賽車",
"descCh": "Grand Prix Circuit 是一款一級方程式賽車模擬遊戲,提供各種難度級別和比賽模式的駕駛艙視圖體驗。"
},
{
"id": "a2gs_Hacker_II_1987_Activision",
"emu": "apple2gs",
"file": "Hacker_II_1987_Activision.2mg",
"name": "Hacker II",
"year": "1987",
"type": "game",
"desc": "Recruited by the CIA, you must remotely infiltrate a high-security facility to steal the 'Doomsday Papers'. The gameplay features a 'four-way monitor system' where you coordinate three 'Mobile Remote Units' (robots). You must 'tap into surveillance cameras', record empty room footage to 'loop as false input', and bypass guards and sensors in 'real-time' while managing the complex terminal interface.",
"developer": "Steve Cartwright",
"publisher": "Activision",
"screenshot": "/proxy/url/https%3A%2F%2Fwww.whatisthe2gs.apple2.org.za%2Ffiles%2FHackerII%2FScreenGrab_2%2Fhacker2shot2.gif",
"nameCh": "駭客任務 2:末日文件",
"descCh": "你被中央情報局招募,必須遠程滲透一個高度安全的設施來竊取“末日文件”。遊戲玩法具有“四向監控系統”,您可以在其中協調三個“移動遠程單元”(機器人)。您必須“利用監控攝像頭”,記錄空房間鏡頭以“作為錯誤輸入循環播放”,並“實時”繞過警衛和傳感器,同時管理複雜的終端介面。"
},
{
"id": "wozaday_Halls_of_Montezuma_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Halls of Montezuma",
"year": "1990",
"type": "game",
"desc": "Halls of Montezuma is a classic turn-based strategy game that chronicles the historical battles of the United States Marine Corps. The game utilizes the robust 'Battlefront' engine developed by SSG.",
"developer": "Roger Keating & Ian Trout",
"publisher": "Strategic Studies Group",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "美墨之戰:蒙特祖馬之殿",
"descCh": "Halls of Montezuma 是一款經典的回合製策略遊戲,記錄了美國海軍陸戰隊的歷史戰役。該遊戲採用了 SSG 開發的強大的“Battlefront”引擎。"
},
{
"id": "wozaday_Hardball_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Hardball!",
"year": "1987",
"type": "game",
"desc": "HardBall! is a pioneer in baseball simulations. It was the only baseball simulation available for the IIGS platform at the time.",
"developer": "Distinctive Software (Dan Thompson)",
"publisher": "Accolade",
"screenshot": "00playable_screenshot.png",
"nameCh": "硬式棒球!",
"descCh": "硬式棒球!是棒球模擬領域的先驅。這是當時 IIGS 平台上唯一可用的棒球模擬。"
},
{
"id": "a2gs_Hostage_1990_Mindscape",
"emu": "apple2gs",
"file": "Hostage_1990_Mindscape.2mg",
"name": "Hostage",
"year": "1990",
"type": "game",
"desc": "In Hostage: Rescue Mission, players command a specialized anti-terrorist squad tasked with infiltrating a foreign embassy overrun by terrorists. The mission is divided into three tactical phases: positioning snipers around the building, rappelling teams to breach the windows, and engaging enemies in room-to-room combat to secure the hostages. Combining stealth, strategy, and first-person action, the game offers a high-stakes simulation of a counter-terrorism operation.",
"developer": "Infogrames",
"publisher": "Mindscape",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Hostage_Rescue_Mission_IIgs%2F00playable_screenshot.png",
"nameCh": "人質:救援任務",
"descCh": "在《人質:救援任務》中,玩家指揮一支專門的反恐小隊,其任務是滲透到被恐怖分子佔領的外國大使館。該任務分為三個戰術階段:在建築物周圍部署狙擊手、用繩索下降團隊突破窗戶,以及與敵人進行逐室戰鬥以保護人質。該遊戲結合了潛行、策略和第一人稱動作,提供了高風險的反恐行動模擬。"
},
{
"id": "wozaday_Hover_Blade_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"file2": "https://archive.org/download/wozaday_Hover_Blade_IIgs/Hover%20Blade%20IIgs%20%28woz-a-day%20collection%29.zip/Hover%20Blade%20IIgs%20%28woz-a-day%20collection%29%2FHover%20Blade%20IIgs%20-%20Disk%202.woz",
"name": "Hover Blade",
"year": "1991",
"type": "game",
"desc": "Hover Blade is a fast-paced 3D shooter and racing game where players pilot a high-tech hovercraft. You must navigate through futuristic corridors, skillfully dodging obstacles while blasting enemy drones and turrets. The gameplay emphasizes high-speed reflexes, precise maneuvering, and tactical shooting to clear increasingly difficult levels within a sleek graphical environment.",
"developer": "Shiraz Akmal & Eric Boden",
"publisher": "MCX",
"screenshot": "00playable_screenshot.png",
"nameCh": "懸浮之刃",
"descCh": "Hover Blade 是一款快節奏的 3D 射擊和賽車遊戲,玩家可以駕駛高科技氣墊船。你必須穿過未來派的走廊,巧妙地躲避障礙物,同時轟炸敵人的無人機和砲塔。遊戲玩法強調高速反應、精確機動和戰術射擊,以在時尚的圖形環境中清除越來越困難的關卡。"
},
{
"id": "wozaday_The_Hunt_for_Red_October_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Hunt for Red October, The",
"year": "1989",
"type": "game",
"desc": "As Captain Ramius, you navigate the Red October toward U.S. waters to defect. This mouse-driven simulation combines strategy and navigation. Players must manage sonar, engines, and weapons while using the silent 'caterpillar drive' to evade the Soviet Navy through obstacle-filled channels, ultimately attempting a successful rendezvous with American forces.",
"developer": "John Brooks, Todd Daugherty & Alex Villagran",
"publisher": "Software Toolworks",
"screenshot": "00playable_screenshot.png",
"nameCh": "獵殺紅色十月",
"descCh": "作為拉米斯船長,你駕駛紅色十月號前往美國水域叛逃。這種滑鼠驅動的模擬結合了策略和導航。玩家必須管理聲納、發動機和武器,同時使用無聲的“毛毛蟲驅動器”通過充滿障礙的通道躲避蘇聯海軍,最終嘗試與美軍成功會合。"
},
{
"id": "a2gs_Impossible_Mission_II_1989_Epyx",
"emu": "apple2gs",
"file": "Impossible_Mission_II_1989_Epyx.2mg",
"name": "Impossible Mission 2",
"year": "1989",
"type": "game",
"desc": "In this action-platformer, you infiltrate Elvin Atombender's fortress consisting of eight towers. Players must dodge diverse security robots, search furniture for passcodes, and solve musical puzzles within an eight-hour limit. The gameplay focuses on precision jumping, strategic lift management, and collecting melody fragments to access the final control room.",
"developer": "Novotrade",
"publisher": "Epyx",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Impossible_Mission_II_IIgs%2F00playable_screenshot.png",
"nameCh": "不可能的任務2",
"descCh": "在這款動作平台遊戲中,您將潛入 Elvin Atombender 的由八座塔樓組成的堡壘。玩家必須在八小時內躲避各種安全機器人、搜索家具尋找密碼並解決音樂謎題。遊戲玩法側重於精確跳躍、戰略升降機管理以及收集旋律片段以進入最終控制室。"
},
{
"id": "wozaday_Invisible_Bugs_800K",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Invisible Bugs",
"year": "2021",
"type": "game",
"desc": "In this logic-based puzzle game, players must identify 'invisible' creatures by observing their reactions to various items. Using deductive reasoning, you place objects like fans or lights to see how the bugs interact with them. The goal is to map out the bugs' hidden locations and movement patterns within a grid-based environment to clear each level.",
"developer": "Jeremy Rand",
"publisher": "",
"screenshot": "00playable_screenshot.png",
"nameCh": "隱形蟲",
"descCh": "在這款基於邏輯的益智遊戲中,玩家必須通過觀察“隱形”生物對各種物品的反應來識別它們。使用演繹推理,您可以放置風扇或燈等物體來觀察蟲子如何與它們相互作用。目標是在基於網格的環境中繪製出蟲子的隱藏位置和移動模式,以清除每個級別。"
},
{
"id": "a2gs_Kaleidokubes_1989_Artworx",
"emu": "apple2gs",
"file": "Kaleidokubes_1989_Artworx.2mg",
"name": "Kaleidokubes",
"year": "1989",
"type": "game",
"desc": "In this mouse-driven puzzle game: Kaleidokubes, players arrange cubes divided into four multi-colored triangles. You must match the colors on adjacent sides to place a cube on the grid, earning more points for multiple successful connections. Players can rotate cubes strategically to fit or compete against the clock and computer opponents.",
"developer": "Bob & Betsy Couch",
"publisher": "Artworx",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "萬花筒方塊",
"descCh": "在這款滑鼠驅動的益智遊戲:Kaleidokubes 中,玩家將立方體排列成四個彩色三角形。您必須匹配相鄰邊的顏色才能將立方體放置在網格上,多次成功連接即可獲得更多積分。玩家可以策略性地旋轉立方體以適應或與時鐘和電腦對手競爭。"
},
{
"id": "wozaday_Keef_the_Thief_IIgs",
"emu": "apple2gs",
"file": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fe2gs_0907_Keef_the_Thief_Disk_1%2F0907_Keef_the_Thief_Disk_1.po",
"file2": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fe2gs_0908_Keef_the_Thief_Disk_2%2F0908_Keef_the_Thief_Disk_2.po",
"name": "Keef the Thief",
"year": "1989",
"type": "game",
"desc": "In this humorous first-person RPG, you control Keef, an exiled orphan. Players explore cities and dungeons using a mouse-driven interface to 'Steal,' 'Look,' or 'Cast' spells. The gameplay blends thievery—like disarming traps and looting houses—with real-time combat and a unique alchemy system for crafting magic.",
"developer": "Naughty Dog (Andy Gavin & Jason Rubin)",
"publisher": "Electronic Arts",
"screenshot": "00playable_screenshot.png",
"nameCh": "神偷傳奇",
"descCh": "在這款幽默的第一人稱角色扮演遊戲中,您控制的是被流放的孤兒 Keef。玩家使用滑鼠驅動的介面來探索城市和地下城,以“偷”、“看”或“施展”咒語。遊戲玩法將盜竊(如解除陷阱和搶劫房屋)與實時戰鬥和用於製作魔法的獨特煉金術系統融為一體。"
},
{
"id": "wozaday_The_King_of_Chicago_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "King of Chicago, The",
"year": "1989",
"type": "game",
"desc": "Set in the 1930s, players aim to become the new crime boss of Chicago. This mouse-driven game features diverse segments including decision-making via thought bubbles, strategic gang management, and action sequences like drive-by shootings. You must balance mob activities—bribing, bombing, and gambling—while keeping your girlfriend happy to avoid multiple 'game over' scenarios.",
"developer": "Doug Sharp",
"publisher": "Cinemaware",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "芝加哥之王",
"descCh": "以 1930 年代為背景,玩家的目標是成為芝加哥新的犯罪頭目。這款滑鼠驅動的遊戲具有多種功能,包括通過思想泡泡做出決策、戰略幫派管理以及駕車射擊等動作序列。你必須平衡暴民活動——賄賂、爆炸和賭博——同時讓你的女朋友開心,以避免多次“遊戲結束”的情況。"
},
{
"id": "wozaday_The_Last_Ninja_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Last Ninja, The",
"year": "1988",
"type": "game",
"desc": "In this classic action-adventure, you control Armakuni through isometric screens to avenge your clan. Gameplay blends martial arts combat, weapon mastery (like the katana and nunchaku), and environmental puzzles. You must navigate treacherous terrain with precision jumps and collect key items to infiltrate the evil Shogun’s palace.",
"developer": "System 3",
"publisher": "Activision",
"screenshot": "00playable_screenshot.png",
"nameCh": "最後的忍者",
"descCh": "在這款經典動作冒險遊戲中,您通過等距屏幕控制阿瑪庫尼,為您的部落復仇。遊戲玩法融合了武術戰鬥、武器掌握(如武士刀和雙節棍)和環境謎題。你必須通過精確的跳躍穿越危險的地形並收集關鍵物品以滲透邪惡幕府將軍的宮殿。"
},
{
"id": "wozaday_Leisure_Suit_Larry_IIgs",
"emu": "apple2gs",
"file": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fe2gs_0283_Leisure_Suit_Larry_Disk_1%2F0283_Leisure_Suit_Larry_Disk_1.po",
"file2": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fe2gs_0284_Leisure_Suit_Larry_Disk_2%2F0284_Leisure_Suit_Larry_Disk_2.po",
"name": "Leisure Suit Larry in the Land of the Lounge Lizards",
"year": "1987",
"type": "game",
"desc": "As 38-year-old virgin Larry Laffer, you explore the city of 'Lost Wages' to find love. This graphic adventure uses a text parser for commands and mouse/keys for movement. You must solve inventory-based puzzles, manage money by gambling at casinos, and successfully woo various women before a two-hour real-time limit expires.",
"developer": "Al Lowe",
"publisher": "Sierra",
"screenshot": "00playable_screenshot.png",
"nameCh": "幻想空間",
"descCh": "扮演 38 歲的處男Larry Laffer,你將探索“失去工資”的城市尋找愛情。這個圖形冒險使用文本解析器來執行命令,並使用滑鼠/鍵來進行移動。你必須解決基於庫存的謎題,通過在賭場賭博來管理資金,並在兩小時的實時限製到期之前成功吸引各種女性。"
},
{
"id": "wozaday_Life_and_Death_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Life and Death",
"year": "1989",
"type": "game",
"desc": "As a resident surgeon, you diagnose patients through physical exams and X-rays before performing complex surgeries. Using a mouse-driven interface, you must maintain a sterile environment, administer anesthesia, and use surgical tools like scalpels and sutures with precision. One mistake, such as failing to control bleeding, leads to the patient's death.",
"developer": "Mark Manyen & Jacob P. Smith",
"publisher": "Software Toolworks",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "生與死",
"descCh": "作為一名住院外科醫生,您在進行複雜的手術之前通過體檢和 X 射線對患者進行診斷。使用滑鼠驅動的介面,您必須保持無菌環境,進行麻醉,並精確使用手術刀和縫合線等手術工具。一個錯誤,例如未能控制出血,就會導致患者死亡。"
},
{
"id": "wozaday_The_Lost_Tribe_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Lost Tribe, The",
"year": "1992",
"type": "game",
"desc": "In this prehistoric survival strategy game, you lead your tribe across a hazardous landscape after a volcanic eruption. Players must manage limited resources, make critical leadership decisions, and allocate time for hunting, gathering, and scouting. The goal is to safely reach a legendary new home while surviving predators and harsh environmental events.",
"developer": "Steve Vance, Frank Andrews & Todd Harris",
"publisher": "Lawrence Productions",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "失落的部落",
"descCh": "在這款史前生存策略遊戲中,您帶領部落穿越火山噴發後的危險地帶。玩家必須管理有限的資源,做出關鍵的領導決策,並分配時間進行狩獵、採集和偵察。我們的目標是安全到達傳奇的新家,同時在掠食者和惡劣的環境事件中倖存下來。"
},
{
"id": "a2gs_Mad_Match_1989_Baudville",
"emu": "apple2gs",
"file": "Mad_Match_1989_Baudville.2mg",
"name": "Mad Match",
"year": "1989",
"type": "game",
"desc": "In this colorful puzzle game, players must clear a grid by matching groups of identical shapes or icons. Using the mouse, you select and swap adjacent pieces to create horizontal or vertical lines. The game challenges your speed and pattern recognition as levels become increasingly complex with obstacles and time limits, requiring strategic thinking to achieve high scores.",
"developer": "Paul Gauthier",
"publisher": "Baudville",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "瘋狂配對",
"descCh": "在這款色彩繽紛的益智遊戲中,玩家必須通過匹配相同形狀或圖標的組來清除網格。使用滑鼠,您可以選擇並交換相鄰的部分以創建水平或垂直線。該遊戲挑戰你的速度和模式識別能力,因為關卡變得越來越複雜,有障礙和時間限制,需要戰略思維才能獲得高分。"
},
{
"id": "a2gs_Mancala_1988_California_Dreams",
"emu": "apple2gs",
"file": "Mancala_1988_California_Dreams.2mg",
"name": "Mancala",
"year": "1988",
"type": "game",
"desc": "In this classic 'count and capture' strategy game, players aim to collect the most seeds in their personal store (Mancala). On your turn, you pick up all seeds from one of your pits and 'sow' them one by one counter-clockwise into subsequent pits. Strategic rules allow for extra turns if the last seed lands in your store, or capturing opponent's seeds if it lands in an empty pit on your side.",
"developer": "Logical Design Works",
"publisher": "California Dreams",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Mancala_IIgs%2F00playable_screenshot.png",
"nameCh": "非洲寶石棋",
"descCh": "在這款經典的“計數和捕獲”策略遊戲中,玩家的目標是在自己的個人商店(Mancala)中收集最多的種子。輪到你時,你從一個坑中拾起所有種子,然後將它們一粒一粒地逆時針“播種”到後續的坑中。如果最後一顆種子落在你的商店中,戰略規則允許額外回合,或者如果對手的種子落在你這邊的空坑中,則捕獲對手的種子。"
},
{
"id": "wozaday_Marble_Madness_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Marble Madness",
"year": "1988",
"type": "game",
"desc": "Using a mouse or joystick, players guide a marble through six isometric, gravity-defying obstacle courses. You must reach the finish line within a strict time limit while avoiding pits, enemies, and environmental hazards. The physics-based gameplay rewards momentum control and precision movement across increasingly treacherous platforms and narrow pathways.",
"developer": "Will Harvey",
"publisher": "Electronic Arts",
"screenshot": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fwozaday_Marble_Madness%2F00playable_screenshot.png",
"nameCh": "瘋狂彈珠",
"descCh": "玩家使用滑鼠或操縱桿引導彈珠穿過六個等距的、反重力的障礙物。你必須在嚴格的時間限制內到達終點線,同時避開坑、敵人和環境危害。基於物理的遊戲玩法獎勵在日益危險的平台和狹窄路徑上的動量控制和精確移動。"
},
{
"id": "wozaday_Mazer_II_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Mazer II",
"year": "1992",
"type": "game",
"desc": "In this top-down maze-crawler, players navigate through complex corridors filled with traps and mechanical enemies. Using the mouse or keyboard, you must collect colored keys to unlock doors and find power-ups to enhance your health. The game emphasizes exploration, fast reflexes for dodging hazards, and strategic resource management to reach the exit of each increasingly difficult floor.",
"developer": "Farfetch Software",
"publisher": "Big Red Computer Club",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "迷宮大冒險 2",
"descCh": "在這款自上而下的迷宮爬行遊戲中,玩家將穿越充滿陷阱和機械敵人的複雜走廊。使用滑鼠或鍵盤,您必須收集彩色鑰匙來解鎖門並找到能量道具來增強您的健康。遊戲強調探索、躲避危險的快速反應以及戰略資源管理以到達每個越來越困難的樓層的出口。"
},
{
"id": "wozaday_Mini_Putt_IIgs",
"emu": "apple2gs",
"file": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fa2gs_Mini_Putt_The_Ultimate_Challenge_1988_Accolade%2FMini_Putt_The_Ultimate_Challenge_1988_Accolade.2mg",
"name": "Mini-Putt",
"year": "1988",
"type": "game",
"desc": "This mouse-driven sports simulation features four themed 18-hole courses with various obstacles like windmills and water hazards. Players must carefully adjust their aim, stance, and power meter to sink the ball in as few strokes as possible. The game supports up to four players, emphasizing precision, physics, and strategic banking shots to master each unique green.",
"developer": "Ross Salas & Tanager Software Productions",
"publisher": "Accolade",
"screenshot": "00playable_screenshot.png",
"nameCh": "迷你高爾夫",
"descCh": "這款滑鼠驅動的運動模擬遊戲設有四個主題 18 洞球場,並設有風車和水障礙等各種障礙。球員必須仔細調整他們的目標、站姿和功率計,以盡可能少的擊球次數擊球。該遊戲最多支持四名玩家,強調精確性、物理性和戰略性傾斜擊球,以掌握每個獨特的果嶺。"
},
{
"id": "wozaday_Mixed_Up_Mother_Goose_IIgs",
"emu": "apple2gs",
"file": "00playable.woz",
"name": "Mixed-Up Mother Goose",
"year": "1988",
"type": "game",
"desc": "In this educational adventure, you help Mother Goose find missing items from famous nursery rhymes. Using a simple mouse-driven interface, players explore a colorful world, pick up lost objects like Bo Peep’s sheep or Jack’s bucket, and return them to the correct characters. The goal is to restore order to the fantasy land through exploration and basic inventory-based puzzles.",
"developer": "Roberta Williams",
"publisher": "Sierra",
"file2": "00playable2.woz",
"screenshot": "00playable_screenshot.png",
"nameCh": "鵝媽媽童謠",
"descCh": "在這次教育冒險中,您將幫助鵝媽媽找到著名童謠中缺失的物品。使用簡單的滑鼠驅動介面,玩家可以探索豐富多彩的世界,撿起波皮普的羊或傑克的水桶等丟失的物品,並將它們歸還給正確的角色。我們的目標是通過探索和基本的基於庫存的謎題來恢復幻想世界的秩序。"
},
{
"id": "wozaday_Monte_Carlo_IIgs",
"emu": "apple2gs",
"file": "/proxy/url/https%3A%2F%2Farchive.org%2Fdownload%2Fa2gs_Monte_Carlo_1988_PBI_Software%2FMonte_Carlo_1988_PBI_Software.2mg",
"name": "Monte Carlo",
"year": "1987",
"type": "game",
"desc": "This casino simulation lets players experience the glamour of Monte Carlo through five classic games: Blackjack, Roulette, Baccarat, Slot Machines, and Craps. Using a mouse-driven interface, you manage a virtual bankroll, place bets on realistic table layouts, and aim to break the house. It features detailed graphics and authentic rules for a complete gambling experience.",
"developer": "Richard Seaborne & Jeff Lefferts",
"publisher": "PBI Software",
"screenshot": "00playable_screenshot.png",
"nameCh": "蒙地卡羅",
"descCh": "這款賭場模擬遊戲讓玩家通過五種經典遊戲體驗蒙地卡羅的魅力:二十一點、輪盤、百家樂、老虎機和骰子。使用滑鼠驅動的介面,您可以管理虛擬資金,在真實的牌桌佈局上下注,並瞄準打破莊家。它具有詳細的圖形和真實的規則,可帶來完整的賭博體驗。"
},
{
"id": "a2gs_Neuromancer_1989_Interplay",
"emu": "apple2gs",
"file": "Neuromancer_1989_Interplay.2mg",
"name": "Neuromancer",
"year": "1989",
"type": "game",
"desc": "Based on William Gibson's novel, this RPG blends cyber exploration with classic adventure puzzles. Players hack into cyberspace ('The Matrix') via a brain-computer interface (deck) to solve the mystery of disappearing hackers in the dystopian city of Chiba. Gameplay involves real-time combat in cyberspace, buying hardware upgrades, and engaging in dialogue trees to progress the non-linear story.",
"developer": "Rebecca Heineman",
"publisher": "Interplay Productions",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "神經漫遊者",
"descCh": "這款角色扮演遊戲改編自威廉·吉布森的小說,將網絡探索與經典冒險謎題融為一體。玩家通過腦機接口(甲板)侵入網絡空間(“黑客帝國”),解開反烏托邦城市千葉的黑客失踪之謎。遊戲玩法涉及網絡空間中的實時戰鬥、購買硬體升級以及參與對話樹來推進非線性故事。"
},
{
"id": "a2gs_Omega_1990_Origin",
"emu": "apple2gs",
"file": "Omega_1990_Origin.2mg",
"name": "Omega",
"year": "1990",
"type": "game",
"desc": "A futuristic tank simulation RPG set across 30 sectors, combining strategic map movement with real-time combat. Players customize their cybernetic tank ('Omega') with weapons and defenses. Gameplay shifts between exploring a strategic overworld and engaging in isometric perspective combat missions against enemy forces, demanding both tactical foresight and quick reflexes in battle.",
"developer": "Micro Magic",
"publisher": "Origin",
"screenshot": "00_coverscreenshot.jpg",
"nameCh": "奧米加",
"descCh": "一款未來坦克模擬角色扮演遊戲,橫跨 30 個區域,將戰略地圖移動與實時戰鬥相結合。玩家用武器和防禦來定制他們的控制論坦克(“歐米茄”)。遊戲玩法在探索戰略世界和針對敵軍進行等距視角戰鬥任務之間切換,需要戰術遠見和戰鬥中的快速反應。"
},