-
Notifications
You must be signed in to change notification settings - Fork 789
/
TIC-80.dat
10044 lines (8922 loc) · 365 KB
/
TIC-80.dat
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
clrmamepro (
name "TIC-80"
description "TIC-80"
version "2019.10.28"
homepage "https://github.com/robloach/libretro-database-tic80"
)
game (
name "10 Print chr$(205.5+rnd(1)); : Goto 10"
description "10 PRINT CHR$(205.5+RND(1)); : GOTO 10 Clone in Lua ( TIC-80 )"
homepage "https://tic80.com/play?cart=1083"
developer "potato imaginator"
download "https://tic80.com/cart/1af148f91499acda8478a2f7da18cfda/cart.tic"
rom ( name "10 Print chr$(205.5+rnd(1)); : Goto 10.tic" size "2347" md5 "1af148f91499acda8478a2f7da18cfda" crc "e93561f1" )
)
game (
name "12 Paces Joe"
description "A simple platformer."
homepage "https://tic80.com/play?cart=181"
developer "Tomthetom"
download "https://tic80.com/cart/f3cfff1303bff35404831d390a2210d3/cart.tic"
rom ( name "12 Paces Joe.tic" size "22790" md5 "f3cfff1303bff35404831d390a2210d3" crc "7733f861" )
)
game (
name "15"
description "rearange tiles into order"
homepage "https://tic80.com/play?cart=945"
developer "Zach Hageberg"
download "https://tic80.com/cart/f6c121bcbf86259b94e8778b7587aaa0/cart.tic"
rom ( name "15.tic" size "17667" md5 "f6c121bcbf86259b94e8778b7587aaa0" crc "7da8c6ac" )
)
game (
name "15 Minutes to Live"
description "Made for LD44: 'Your life is currency'"
homepage "https://tic80.com/play?cart=824"
developer "Altrix Studios"
download "https://tic80.com/cart/2cee68d87c00f49e1371f6cab9cd44a0/cart.tic"
rom ( name "15 Minutes to Live.tic" size "75088" md5 "2cee68d87c00f49e1371f6cab9cd44a0" crc "1b3b9a9" )
)
game (
name "1bit Data"
description "using 1 bit data"
homepage "https://tic80.com/play?cart=681"
developer "MonstersGoBoom"
download "https://tic80.com/cart/b095134e9067c2f4a23b5630e03bbd36/cart.tic"
rom ( name "1bit Data.tic" size "18009" md5 "b095134e9067c2f4a23b5630e03bbd36" crc "5c19d0e0" )
)
game (
name "2 Player Bomberman"
description "Bomberman game"
homepage "https://tic80.com/play?cart=137"
developer "Marcel"
download "https://tic80.com/cart/2a8fdc1a85adb320ecbbc4fb7f5ad435/cart.tic"
rom ( name "2 Player Bomberman.tic" size "14302" md5 "2a8fdc1a85adb320ecbbc4fb7f5ad435" crc "9f04342e" )
)
game (
name "2 Point Incompleted Version"
description "move the points for goal"
homepage "https://tic80.com/play?cart=1274"
developer "EliasTic80"
download "https://tic80.com/cart/18642c4b440651b825f0c4c59e64c41e/cart.tic"
rom ( name "2 Point Incompleted Version.tic" size "9003" md5 "18642c4b440651b825f0c4c59e64c41e" crc "32d908c0" )
)
game (
name "2-Bit Sprite"
description "shows how convert native TIC-80 4-bit sprite to 2-bit"
homepage "https://tic80.com/play?cart=100"
developer "Al Rado"
download "https://tic80.com/cart/c9086c58184cb68e11d744473560dbae/cart.tic"
rom ( name "2-Bit Sprite.tic" size "3159" md5 "3823ee3a06cccdcdffc9e3f4c2b7cad3" crc "ed6905cd" )
)
game (
name "2048 (TIC-80 Version)"
description "I made a game like 2048 with Javascript, have fun"
homepage "https://tic80.com/play?cart=395"
developer "Spacebit"
download "https://tic80.com/cart/68d5e7881289837510df0e8c080bea73/cart.tic"
rom ( name "2048 (TIC-80 Version).tic" size "10381" md5 "68d5e7881289837510df0e8c080bea73" crc "4a601f8d" )
)
game (
name "29 in 1"
description "JavaScript demos from different authors from www.dwitter.net, demo length <= 140 chars"
homepage "https://tic80.com/play?cart=143"
developer "Al Rado"
download "https://tic80.com/cart/02f981afc7936e525887def8d4270214/cart.tic"
rom ( name "29 in 1.tic" size "7115" md5 "02f981afc7936e525887def8d4270214" crc "1dd2e4c5" )
)
game (
name "29 in 1 (Color)"
description "JavaScript demos from different authors from www.dwitter.net, demo length <= 140 chars"
homepage "https://tic80.com/play?cart=219"
developer "Al Rado"
download "https://tic80.com/cart/e7b1d9ebf20277b55fb453dac77fd39e/cart.tic"
rom ( name "29 in 1 (Color).tic" size "11012" md5 "e7b1d9ebf20277b55fb453dac77fd39e" crc "dc4c398" )
)
game (
name "29 in 1 (Geometry)"
description "JavaScript demos from different authors from www.dwitter.net, demo length <= 140 chars"
homepage "https://tic80.com/play?cart=220"
developer "Al Rado"
download "https://tic80.com/cart/eca81b243bf37309ba7c2d4204036960/cart.tic"
rom ( name "29 in 1 (Geometry).tic" size "11314" md5 "eca81b243bf37309ba7c2d4204036960" crc "1dfe6182" )
)
game (
name "3017 8-Bit Panda"
description "A panda platformer 1000 years later"
homepage "https://tic80.com/play?cart=1283"
developer "StinkerB06's brother, original 8 Bit Panda by btco"
download "https://tic80.com/cart/fe5b51ed0dc0f30175cbe14106b75fdf/cart.tic"
rom ( name "3017 8-Bit Panda.tic" size "133464" md5 "fe5b51ed0dc0f30175cbe14106b75fdf" crc "e50204c" )
)
game (
name "32 Colours"
description "32 Colours onscreen at once"
homepage "https://tic80.com/play?cart=417"
developer "Cubee"
download "https://tic80.com/cart/c0b5f4c1d5653890e8fde4839fe46a51/cart.tic"
rom ( name "32 Colours.tic" size "3410" md5 "c0b5f4c1d5653890e8fde4839fe46a51" crc "b7cee551" )
)
game (
name "32 Palette Viewer with Ovr() (0.80 Works Only)"
description "The 0.80 version can show the 32 palettes."
homepage "https://tic80.com/play?cart=1372"
developer "masternama"
download "https://tic80.com/cart/e991bf4fd1900f3fe3248dd7984fac15/cart.tic"
rom ( name "32 Palette Viewer with Ovr() (0.80 Works Only).tic" size "18002" md5 "e991bf4fd1900f3fe3248dd7984fac15" crc "1cb24432" )
)
game (
name "3D-Demo"
description "Racer made for FCJ"
homepage "https://tic80.com/play?cart=230"
developer "Nopy"
download "https://tic80.com/cart/f11823f84bf845ed68cc8240b99c1aa0/cart.tic"
rom ( name "3D-Demo.tic" size "83472" md5 "f11823f84bf845ed68cc8240b99c1aa0" crc "e64f5a37" )
)
game (
name "3DTest"
description "Testing of 3d, color interpolation, fog and etc."
homepage "https://tic80.com/play?cart=505"
developer "TehShadowz"
download "https://tic80.com/cart/efdc1c3ab8b03bdeefee39e21529f16d/cart.tic"
rom ( name "3DTest.tic" size "9485" md5 "efdc1c3ab8b03bdeefee39e21529f16d" crc "7fc58a2f" )
)
game (
name "4 Guys! (4-Player Hello World Cartridge)"
description "Player movement with 4 players"
homepage "https://tic80.com/play?cart=441"
developer "StinkerB06"
download "https://tic80.com/cart/1c28a94f68846e827698c5adc137b4ce/cart.tic"
rom ( name "4 Guys! (4-Player Hello World Cartridge).tic" size "8047" md5 "1c28a94f68846e827698c5adc137b4ce" crc "a0e2dbff" )
)
game (
name "5 New Palettes in Palette Demo"
description "how to switch palatte in runtime"
homepage "https://tic80.com/play?cart=901"
developer "Nesbox & masternama"
download "https://tic80.com/cart/5c88c6222552fcc93c642a389e8fe97a/cart.tic"
rom ( name "5 New Palettes in Palette Demo.tic" size "6957" md5 "5c88c6222552fcc93c642a389e8fe97a" crc "e1d1428e" )
)
game (
name "5-Bit Square Wave & 8-Bit Square Wave - Sound Test"
description "Simple an wavefroms octave trick"
homepage "https://tic80.com/play?cart=963"
developer "masternama"
download "https://tic80.com/cart/655a139780d864ccde501031df7479c8/cart.tic"
rom ( name "5-Bit Square Wave & 8-Bit Square Wave - Sound Test.tic" size "12815" md5 "655a139780d864ccde501031df7479c8" crc "5e9ba86d" )
)
game (
name "8 Bit Panda"
description "A panda platformer"
homepage "https://tic80.com/play?cart=1234"
developer "Bruno Oliveira"
download "https://tic80.com/cart/dba84dde286d5e6d9ff19b10455e3009/cart.tic"
rom ( name "8 Bit Panda.tic" size "132398" md5 "dba84dde286d5e6d9ff19b10455e3009" crc "ab00130" )
)
game (
name "8 Bit Panda"
description "A panda platformer"
homepage "https://tic80.com/play?cart=188"
developer "Bruno Oliveira"
download "https://tic80.com/cart/b88b74e7a6f923251de764d89d6f3507/cart.tic"
rom ( name "8 Bit Panda.tic" size "132361" md5 "b88b74e7a6f923251de764d89d6f3507" crc "562e2dfd" )
)
game (
name "8 Bit Panda"
description "A panda platformer"
homepage "https://tic80.com/play?cart=602"
developer "Bruno Oliveira"
download "https://tic80.com/cart/23ec735640aa2d89ec131e3d1205037a/cart.tic"
rom ( name "8 Bit Panda.tic" size "132371" md5 "23ec735640aa2d89ec131e3d1205037a" crc "d2e0bb7d" )
)
game (
name "8 Bit Panda '3DGlasses' Edition"
description "A mod of a panda platformer"
homepage "https://tic80.com/play?cart=542"
developer "Bruno Oliveira, mod by StinkerB06"
download "https://tic80.com/cart/9cbaf2fef2b6741ab2edc8d8d3d1eced/cart.tic"
rom ( name "8 Bit Panda '3DGlasses' Edition.tic" size "132968" md5 "9cbaf2fef2b6741ab2edc8d8d3d1eced" crc "da2f1442" )
)
game (
name "8 Bit Panda 'Virtual Boy' Edition"
description "A mod of a panda platformer"
homepage "https://tic80.com/play?cart=521"
developer "Bruno Oliveira, mod by StinkerB06"
download "https://tic80.com/cart/0c12efd162678c1285e0f15d9737d5e2/cart.tic"
rom ( name "8 Bit Panda 'Virtual Boy' Edition.tic" size "132974" md5 "0c12efd162678c1285e0f15d9737d5e2" crc "bd08f0e8" )
)
game (
name "8 Bit Panda (Cheat Version)"
description "A panda platformer"
homepage "https://tic80.com/play?cart=212"
developer "Bruno Oliveira, cheat by StinkerB06"
download "https://tic80.com/cart/e538bce86980c1f8fc3032cca4441f7d/cart.tic"
rom ( name "8 Bit Panda (Cheat Version).tic" size "131633" md5 "e538bce86980c1f8fc3032cca4441f7d" crc "1943e53d" )
)
game (
name "8 Bit Panda (Ost Oscilloscope View)"
homepage "https://tic80.com/play?cart=214"
developer "Bruno Oliveira, visual by StinkerB06"
download "https://tic80.com/cart/eca14a340257b7c2de206f3403bca1b9/cart.tic"
rom ( name "8 Bit Panda (Ost Oscilloscope View).tic" size "69749" md5 "eca14a340257b7c2de206f3403bca1b9" crc "5ae1ba0a" )
)
game (
name "8 Bit Panda Invisable Editon"
description "The worst game ever!. debug menu is weird. Press x/a 4 times up & 2 times down (twice)."
homepage "https://tic80.com/play?cart=776"
developer "Bruno Oliveira & Master nama"
download "https://tic80.com/cart/7693c0348f4ee9687eb2d49a80429d41/cart.tic"
rom ( name "8 Bit Panda Invisable Editon.tic" size "132490" md5 "7693c0348f4ee9687eb2d49a80429d41" crc "e5d4b485" )
)
game (
name "8 Bit Panda Reborn"
description "Retro platformer."
homepage "https://tic80.com/play?cart=1143"
developer "RomanKalinin (aka RS)"
download "https://tic80.com/cart/5cbf2247fb4e13158d81fc513651a19c/cart.tic"
rom ( name "8 Bit Panda Reborn.tic" size "132123" md5 "5cbf2247fb4e13158d81fc513651a19c" crc "18103f72" )
)
game (
name "8 Bit Panda: Whiteout Challenge"
description "Oliveira's 8 Bit Panda where the darkest color is barely darker than white."
homepage "https://tic80.com/play?cart=764"
developer "Bruno Oliveira, mod by oshaboy"
download "https://tic80.com/cart/2b8ddaff8261da487855e6e91a1bd421/cart.tic"
rom ( name "8 Bit Panda: Whiteout Challenge.tic" size "132888" md5 "2b8ddaff8261da487855e6e91a1bd421" crc "aa7cfd83" )
)
game (
name "8 Bit Space"
description "(wtf?)"
homepage "https://tic80.com/play?cart=1338"
developer "HanamileH"
download "https://tic80.com/cart/5925944d491702d33a9cdd8c81fa028e/cart.tic"
rom ( name "8 Bit Space.tic" size "24540" md5 "5925944d491702d33a9cdd8c81fa028e" crc "3e109cd" )
)
game (
name "99 in 1 (10.11.17)"
description "JavaScript demos from different authors from www.dwitter.net, demo length <= 140 chars"
homepage "https://tic80.com/play?cart=295"
developer "Al Rado"
download "https://tic80.com/cart/d588a79c2c261f3291f0eda1f02bda1b/cart.tic"
rom ( name "99 in 1 (10.11.17).tic" size "24103" md5 "d588a79c2c261f3291f0eda1f02bda1b" crc "28b1ba5f" )
)
game (
name "A Blobfish Out of Water"
description "Run as a blobfish to reach the ocean!"
homepage "https://tic80.com/play?cart=540"
developer "Sammy6"
download "https://tic80.com/cart/07a61e7cdfae990596fc5acf282c614d/cart.tic"
rom ( name "A Blobfish Out of Water.tic" size "20772" md5 "07a61e7cdfae990596fc5acf282c614d" crc "df5b48c7" )
)
game (
name "A Clicker"
description "very VERY basic clicker game"
homepage "https://tic80.com/play?cart=360"
developer "derpguy125"
download "https://tic80.com/cart/0a9bd1efdb962013feec3fbe72844e27/cart.tic"
rom ( name "A Clicker.tic" size "4315" md5 "0a9bd1efdb962013feec3fbe72844e27" crc "9e354f03" )
)
game (
name "A Couple of Songs I Made Today"
description "First TIC-80 songs with 3/4 time signature"
homepage "https://tic80.com/play?cart=241"
developer "StinkerB06"
download "https://tic80.com/cart/33002b6582e89daecf9fbf5cc0ba47e7/cart.tic"
rom ( name "A Couple of Songs I Made Today.tic" size "8064" md5 "33002b6582e89daecf9fbf5cc0ba47e7" crc "a58e6499" )
)
game (
name "A Great of Scanline Tricks!"
description "Running scanline trick without banks."
homepage "https://tic80.com/play?cart=974"
developer "masternama"
download "https://tic80.com/cart/b8b4b7186a7ec51507ddd6af751f0315/cart.tic"
rom ( name "A Great of Scanline Tricks!.tic" size "11773" md5 "b8b4b7186a7ec51507ddd6af751f0315" crc "53808636" )
)
game (
name "A Strange version?... Rebound 2 2: Revelations"
description "This game is corrupted..."
homepage "https://tic80.com/play?cart=1358"
developer "DevEd & masternama"
download "https://tic80.com/cart/a2dd622b566ebc0809d9a49acf0996fd/cart.tic"
rom ( name "A Strange version?... Rebound 2 2: Revelations.tic" size "293857" md5 "a2dd622b566ebc0809d9a49acf0996fd" crc "efe22529" )
)
game (
name "Aabb for Babbies"
description "Do you feel stupid about rectangle collision? Has that mozilla code snippet with no explanation whatsoever got you down? Fear not! Don't just learn it... UNDERSTAND IT!"
homepage "https://tic80.com/play?cart=650"
developer "TickedOffJosh"
download "https://tic80.com/cart/969d4e2bca0416e97276396f6aa71a1c/cart.tic"
rom ( name "Aabb for Babbies.tic" size "6593" md5 "969d4e2bca0416e97276396f6aa71a1c" crc "86beeda4" )
)
game (
name "Advanced Lzw Test"
homepage "https://tic80.com/play?cart=1107"
developer "Alex Makovsky"
download "https://tic80.com/cart/424b45844428ce31ddd36db5c69bc5fb/cart.tic"
rom ( name "Advanced Lzw Test.tic" size "25802" md5 "424b45844428ce31ddd36db5c69bc5fb" crc "a37c9e31" )
)
game (
name "Adventure Game Sample"
description "Adventure game sample"
homepage "https://tic80.com/play?cart=808"
developer "Kikeroga"
download "https://tic80.com/cart/96e1562253ac067039dd529283a14007/cart.tic"
rom ( name "Adventure Game Sample.tic" size "9393" md5 "96e1562253ac067039dd529283a14007" crc "b32886ea" )
)
game (
name "Adventure_qest"
description "mini_rpg"
homepage "https://tic80.com/play?cart=1381"
developer "idriss44"
download "https://tic80.com/cart/56ee8d95ba5efb86f6ca2ce8dd8d7d9a/cart.tic"
rom ( name "Adventure_qest.tic" size "48468" md5 "56ee8d95ba5efb86f6ca2ce8dd8d7d9a" crc "8e9a3a94" )
)
game (
name "Air Hockey"
description "scoring 7 points"
homepage "https://tic80.com/play?cart=728"
developer "Developer from onj"
download "https://tic80.com/cart/4f44ce605be09e61aa9ce2ae6b7acda1/cart.tic"
rom ( name "Air Hockey.tic" size "42625" md5 "4f44ce605be09e61aa9ce2ae6b7acda1" crc "c8ee428e" )
)
game (
name "Alien Shooter"
description "Intercept aliens with tanks!"
homepage "https://tic80.com/play?cart=1075"
developer "Kikeroga"
download "https://tic80.com/cart/2d15e357cab70261c8304ac8b0c6f637/cart.tic"
rom ( name "Alien Shooter.tic" size "9737" md5 "2d15e357cab70261c8304ac8b0c6f637" crc "3a89c916" )
)
game (
name "Align Q"
description "Align all planets. Or don't!"
homepage "https://tic80.com/play?cart=1215"
developer "Theogen Ratkin"
download "https://tic80.com/cart/a1ea1579fa25a6ac6e4d88aba9dc3f55/cart.tic"
rom ( name "Align Q.tic" size "2296" md5 "a1ea1579fa25a6ac6e4d88aba9dc3f55" crc "a45b9c8a" )
)
game (
name "Aligned Movement Demo"
description "Grid-aligned movement with sub-space movement a la LoZ for NES"
homepage "https://tic80.com/play?cart=331"
developer "gardrek"
download "https://tic80.com/cart/629626af13150cfa8b01fad89058b106/cart.tic"
rom ( name "Aligned Movement Demo.tic" size "5096" md5 "629626af13150cfa8b01fad89058b106" crc "9b7779a9" )
)
game (
name "All Mario Blocks"
homepage "https://tic80.com/play?cart=434"
developer "Matt Hughson (@mhughson),krisz"
download "https://tic80.com/cart/c6f4375ff467cea04142da31bb5ac5e1/cart.tic"
rom ( name "All Mario Blocks.tic" size "11185" md5 "c6f4375ff467cea04142da31bb5ac5e1" crc "8d7c2c30" )
)
game (
name "Amrogue"
description "Roguelike Shooter"
homepage "https://tic80.com/play?cart=535"
developer "trelemar"
download "https://tic80.com/cart/fc6d6f92a831a98190e3f66d0c5ab7b5/cart.tic"
rom ( name "Amrogue.tic" size "38114" md5 "fc6d6f92a831a98190e3f66d0c5ab7b5" crc "cf3d19f6" )
)
game (
name "Amrogue"
description "Roguelike Shooter"
homepage "https://tic80.com/play?cart=74"
developer "trelemar"
download "https://tic80.com/cart/91968c21b7a462686c076516f4ffaa49/cart.tic"
rom ( name "Amrogue.tic" size "38114" md5 "fc6d6f92a831a98190e3f66d0c5ab7b5" crc "cf3d19f6" )
)
game (
name "An Arpeggio Song"
description "My first attempt at arps for chords"
homepage "https://tic80.com/play?cart=746"
developer "StinkerB06"
download "https://tic80.com/cart/d3e0ff023a5895c97a944f37c8bef2b4/cart.tic"
rom ( name "An Arpeggio Song.tic" size "14067" md5 "d3e0ff023a5895c97a944f37c8bef2b4" crc "9b2cc5cb" )
)
game (
name "Animation"
description "press 'z' to toggle circles"
homepage "https://tic80.com/play?cart=1031"
developer "potato imaginator"
download "https://tic80.com/cart/f5677504fab869891a57cbf35a8260e4/cart.tic"
rom ( name "Animation.tic" size "3052" md5 "f5677504fab869891a57cbf35a8260e4" crc "48302aea" )
)
game (
name "Animation"
description "Animation"
homepage "https://tic80.com/play?cart=1035"
developer "potato imaginator"
download "https://tic80.com/cart/60e1da71319fed0a413731b3441e7b31/cart.tic"
rom ( name "Animation.tic" size "3469" md5 "60e1da71319fed0a413731b3441e7b31" crc "a6568b0c" )
)
game (
name "Animation ( Dancing Trees )"
description "Trees can Dance too , Trees shake their Leaves >_<"
homepage "https://tic80.com/play?cart=1074"
developer "potato imaginator"
download "https://tic80.com/cart/7130c74d86b7803ee250ffc37ddfc152/cart.tic"
rom ( name "Animation ( Dancing Trees ).tic" size "2464" md5 "7130c74d86b7803ee250ffc37ddfc152" crc "cac1d19b" )
)
game (
name "Animation Demo"
description "Function to draw sprite animation"
homepage "https://tic80.com/play?cart=12"
developer "Ahmed Khalifa"
download "https://tic80.com/cart/a5b5ac3205ef4790d25106ce85682164/cart.tic"
rom ( name "Animation Demo.tic" size "10932" md5 "35189b0fa1cff9ea752fba134eb8b389" crc "11318e6b" )
)
game (
name "Anno"
description "Anno remade in TIC"
homepage "https://tic80.com/play?cart=1493"
developer "Jummit"
download "https://tic80.com/cart/09e183f3636b92e172fd2c55123474b3/cart.tic"
rom ( name "Anno.tic" size "79372" md5 "09e183f3636b92e172fd2c55123474b3" crc "4515b564" )
)
game (
name "Another Noise!"
homepage "https://tic80.com/play?cart=541"
developer "StinkerB06"
download "https://tic80.com/cart/c49f7d2abdfbe8e7b8e2964da457605a/cart.tic"
rom ( name "Another Noise!.tic" size "22460" md5 "c49f7d2abdfbe8e7b8e2964da457605a" crc "96084a38" )
)
game (
name "Ant Racer"
description "Infinite runner type game made for Slovak rally team red ants"
homepage "https://tic80.com/play?cart=256"
developer "@zlatovlas"
download "https://tic80.com/cart/805268c21e85c4933b658c6a4da8e5df/cart.tic"
rom ( name "Ant Racer.tic" size "45896" md5 "805268c21e85c4933b658c6a4da8e5df" crc "9ad7ac9b" )
)
game (
name "Antarctica"
description "Enjoy"
homepage "https://tic80.com/play?cart=1375"
developer "potato imaginator"
download "https://tic80.com/cart/5ce64f90cfb8e3fb081a51e1ca7d9050/cart.tic"
rom ( name "Antarctica.tic" size "5989" md5 "5ce64f90cfb8e3fb081a51e1ca7d9050" crc "f0d7a7cf" )
)
game (
name "Aquish on Ocean Floor"
description "Press Left / Right to move Left / Right"
homepage "https://tic80.com/play?cart=1345"
developer "potato imaginator"
download "https://tic80.com/cart/222edfa233bb5682c6b53e1bc01b65bb/cart.tic"
rom ( name "Aquish on Ocean Floor.tic" size "9653" md5 "222edfa233bb5682c6b53e1bc01b65bb" crc "db0972e0" )
)
game (
name "Ark2k's Arithmetic"
homepage "https://tic80.com/play?cart=767"
developer "ark2000"
download "https://tic80.com/cart/2ecdc56e731c0b5154080f21cc541c52/cart.tic"
rom ( name "Ark2k's Arithmetic.tic" size "9458" md5 "2ecdc56e731c0b5154080f21cc541c52" crc "c068fc25" )
)
game (
name "Art"
description "Triagnles that change color with every bounce/reflection"
homepage "https://tic80.com/play?cart=1217"
developer "potato imaginator"
download "https://tic80.com/cart/cb84c27f9a93fe50efd7804789a64d90/cart.tic"
rom ( name "Art.tic" size "3437" md5 "cb84c27f9a93fe50efd7804789a64d90" crc "c7fab18e" )
)
game (
name "Art"
description "Art"
homepage "https://tic80.com/play?cart=1482"
developer "potato imaginator"
download "https://tic80.com/cart/a8290fd43eae2f84830888bbfb869e6a/cart.tic"
rom ( name "Art.tic" size "8390" md5 "a8290fd43eae2f84830888bbfb869e6a" crc "402d7259" )
)
game (
name "Art"
description "Art"
homepage "https://tic80.com/play?cart=1486"
developer "potato imaginator"
download "https://tic80.com/cart/3b0feb8a678c9a6ddf28c80935c9f99d/cart.tic"
rom ( name "Art.tic" size "5958" md5 "3b0feb8a678c9a6ddf28c80935c9f99d" crc "2b230c01" )
)
game (
name "Art Generator"
description "Procedural Art Generator . Press 'z' to create new art , Press 'LEFT / RIGHT' to change color ."
homepage "https://tic80.com/play?cart=1087"
developer "potato imaginator"
download "https://tic80.com/cart/e1e1a2220520b65485dfca627293ebf3/cart.tic"
rom ( name "Art Generator.tic" size "7160" md5 "e1e1a2220520b65485dfca627293ebf3" crc "b1e84caa" )
)
game (
name "Art Generator"
description "Art Generator using Binary Numbers"
homepage "https://tic80.com/play?cart=1098"
developer "potato imaginator"
download "https://tic80.com/cart/f364290a05f60a53b94f49646f5f9764/cart.tic"
rom ( name "Art Generator.tic" size "4409" md5 "f364290a05f60a53b94f49646f5f9764" crc "4b32faab" )
)
game (
name "Art Generator"
description "Press 'Z' to change"
homepage "https://tic80.com/play?cart=1287"
developer "potato imaginator"
download "https://tic80.com/cart/8283f11b3788137cfb200fb084ec3db8/cart.tic"
rom ( name "Art Generator.tic" size "6745" md5 "8283f11b3788137cfb200fb084ec3db8" crc "3c6b25d5" )
)
game (
name "Art+Game"
description "Press 'Z' to jump , PS: This isn't Mario . Have you ever Wondered about what happens if Art and Game gave birth to a Child . Fear no more , all answers to your Questions and Curiosity will be found ."
homepage "https://tic80.com/play?cart=1124"
developer "potato imaginator"
download "https://tic80.com/cart/a13b40d883b341e8573f70da1a5a9115/cart.tic"
rom ( name "Art+Game.tic" size "5699" md5 "a13b40d883b341e8573f70da1a5a9115" crc "8358a496" )
)
game (
name "Asprin"
description "Collect dots dodge lines"
homepage "https://tic80.com/play?cart=567"
developer "mholowsko"
download "https://tic80.com/cart/ed6b8f18f25e9afd8477b0bffc5d3f4f/cart.tic"
rom ( name "Asprin.tic" size "113153" md5 "ed6b8f18f25e9afd8477b0bffc5d3f4f" crc "df665a31" )
)
game (
name "Asteroids"
description "A copy of the classic asteroids atari game"
homepage "https://tic80.com/play?cart=772"
developer "Vinicius M."
download "https://tic80.com/cart/4cac6e2ecdd5c95da9ea90c244532ac8/cart.tic"
rom ( name "Asteroids.tic" size "31207" md5 "4cac6e2ecdd5c95da9ea90c244532ac8" crc "f53ab6f0" )
)
game (
name "Astronomia - Coffin Meme Dance Music"
description "This version is works for 0.80."
homepage "https://tic80.com/play?cart=1205"
developer "masternama"
download "https://tic80.com/cart/3651d8d59961f0e6f5d7897b68a6c4b0/cart.tic"
rom ( name "Astronomia - Coffin Meme Dance Music.tic" size "31404" md5 "3651d8d59961f0e6f5d7897b68a6c4b0" crc "33954a" )
)
game (
name "Atari Bass Demo"
description "Waves Ripped from Sim_Piko's FAC Port"
homepage "https://tic80.com/play?cart=550"
developer "StinkerB06"
download "https://tic80.com/cart/0776fbbf6c96b51df36c3d3e03e92a92/cart.tic"
rom ( name "Atari Bass Demo.tic" size "3404" md5 "0776fbbf6c96b51df36c3d3e03e92a92" crc "8eee8137" )
)
game (
name "Atari Junk Keyboard Song Remix"
homepage "https://tic80.com/play?cart=585"
developer "Song from The 8-Bit Guy, remix by StinkerB06"
download "https://tic80.com/cart/0f22c3282988bcb570b97636ccf886da/cart.tic"
rom ( name "Atari Junk Keyboard Song Remix.tic" size "33595" md5 "0f22c3282988bcb570b97636ccf886da" crc "b0bf5c84" )
)
game (
name "Aurora"
description "Press 'Z' to Reset for New Stars"
homepage "https://tic80.com/play?cart=1376"
developer "potato imaginator"
download "https://tic80.com/cart/c6de7dead14f652208992cc0ff587080/cart.tic"
rom ( name "Aurora.tic" size "3751" md5 "c6de7dead14f652208992cc0ff587080" crc "bd8886c2" )
)
game (
name "Auto Tile"
description "A bitwise method for applying tilemaps"
homepage "https://tic80.com/play?cart=318"
developer "MonstersGoBoom ( inspired by Al Rado )"
download "https://tic80.com/cart/5dc7b92540f662a78b06a10c5ae07a5b/cart.tic"
rom ( name "Auto Tile.tic" size "47159" md5 "5dc7b92540f662a78b06a10c5ae07a5b" crc "65a9d4d0" )
)
game (
name "Autoborder"
description "auto border by remap"
homepage "https://tic80.com/play?cart=1120"
developer "uokagi"
download "https://tic80.com/cart/c9105f46e47fec26e22ac0ec1c4ff038/cart.tic"
rom ( name "Autoborder.tic" size "12192" md5 "c9105f46e47fec26e22ac0ec1c4ff038" crc "f6cba700" )
)
game (
name "Background Demo"
homepage "https://tic80.com/play?cart=1144"
developer "masternama"
download "https://tic80.com/cart/1f9c4429633b9d71bfb034b20eed12c5/cart.tic"
rom ( name "Background Demo.tic" size "45130" md5 "1f9c4429633b9d71bfb034b20eed12c5" crc "b4240bf3" )
)
game (
name "Background Demo 2"
homepage "https://tic80.com/play?cart=1173"
developer "masternama"
download "https://tic80.com/cart/6fa089ec952eaab339493f8330237354/cart.tic"
rom ( name "Background Demo 2.tic" size "34204" md5 "6fa089ec952eaab339493f8330237354" crc "f9e05911" )
)
game (
name "Bad Apple"
description "'Touhou - Bad Apple' 3.5 min video clip fit in one TIC-80 cartridge. Done by Nesbox (video) and Fubuki (music)"
homepage "https://tic80.com/play?cart=419"
developer "Nesbox and Fubuki"
download "https://tic80.com/cart/01d9e89e8a46e8bedde35e68fb636095/cart.tic"
rom ( name "Bad Apple.tic" size "237417" md5 "01d9e89e8a46e8bedde35e68fb636095" crc "e23f22da" )
)
game (
name "Baldi's Basics in Education and Learning Music"
description "short description"
homepage "https://tic80.com/play?cart=1257"
developer "masternama"
download "https://tic80.com/cart/f85b4cf555afc64fcf4a630344bf7f55/cart.tic"
rom ( name "Baldi's Basics in Education and Learning Music.tic" size "22495" md5 "f85b4cf555afc64fcf4a630344bf7f55" crc "72f4f9dc" )
)
game (
name "Ball"
description "Ball"
homepage "https://tic80.com/play?cart=126"
developer "Clement D"
download "https://tic80.com/cart/2a2a9ffcd235e67d65f0e4c93035d0bf/cart.tic"
rom ( name "Ball.tic" size "1869" md5 "2a2a9ffcd235e67d65f0e4c93035d0bf" crc "796c02ea" )
)
game (
name "Ballistic"
description "Ballistic Example"
homepage "https://tic80.com/play?cart=146"
developer "DoubleD"
download "https://tic80.com/cart/94cdea520cc19ae8c28f1c2e7f9d13b1/cart.tic"
rom ( name "Ballistic.tic" size "2092" md5 "94cdea520cc19ae8c28f1c2e7f9d13b1" crc "59724024" )
)
game (
name "Ballmania"
description "press Z for interactive"
homepage "https://tic80.com/play?cart=1533"
developer "Shiny"
download "https://tic80.com/cart/dc70e0c3855bd5a52983239d01f08a56/cart.tic"
rom ( name "Ballmania.tic" size "3564" md5 "dc70e0c3855bd5a52983239d01f08a56" crc "170d474d" )
)
game (
name "Balloon Punch!"
description "an old school seesaw game"
homepage "https://tic80.com/play?cart=545"
developer "tak0294"
download "https://tic80.com/cart/3639ae8e910b27e13313adb9a2ebfe3d/cart.tic"
rom ( name "Balloon Punch!.tic" size "52589" md5 "3639ae8e910b27e13313adb9a2ebfe3d" crc "325c7e27" )
)
game (
name "Balloon and Cactus: a Love Story"
description "Love in the thorniest of circumstances."
homepage "https://tic80.com/play?cart=131"
developer "Alex Bair"
download "https://tic80.com/cart/7da92fd776b3df7019c28f62ffa5c5d0/cart.tic"
rom ( name "Balloon and Cactus: a Love Story.tic" size "22846" md5 "7da92fd776b3df7019c28f62ffa5c5d0" crc "79eebec1" )
)
game (
name "Balmung"
description "Explore an island of monsters and mysteries."
homepage "https://tic80.com/play?cart=1529"
developer "petet"
download "https://tic80.com/cart/9caf37ce86685ae2f3bde68780fc5987/cart.tic"
rom ( name "Balmung.tic" size "135754" md5 "9caf37ce86685ae2f3bde68780fc5987" crc "de414987" )
)
game (
name "Balmung"
description "Explore an island of monsters and mysteries."
homepage "https://tic80.com/play?cart=636"
developer "petet"
download "https://tic80.com/cart/d02a74c75d80c9bc3b0721ee6f6c83ab/cart.tic"
rom ( name "Balmung.tic" size "135733" md5 "d02a74c75d80c9bc3b0721ee6f6c83ab" crc "cca71c28" )
)
game (
name "Bananaparty!"
description "It's BANANA PARTY TIME! ...and also time for demonstrating my limited obj-triangles-to-lua converter and renderer."
homepage "https://tic80.com/play?cart=114"
developer "Viza"
download "https://tic80.com/cart/8d00dcc1a8226bf8d56e3ba239cd75b7/cart.tic"
rom ( name "Bananaparty!.tic" size "13778" md5 "8d00dcc1a8226bf8d56e3ba239cd75b7" crc "84fd5dcf" )
)
game (
name "Bare Bones"
description "Gloomy Dungeon Chaos for FC_JAM"
homepage "https://tic80.com/play?cart=139"
developer "trelemar, level27geek, RushJet1"
download "https://tic80.com/cart/8c2e54fc6e2205590f9330ab400e76ca/cart.tic"
rom ( name "Bare Bones.tic" size "90462" md5 "8c2e54fc6e2205590f9330ab400e76ca" crc "990b7a9e" )
)
game (
name "Barren"
description "Try reach the end (white square), may encounter monsters/obstacles in the fog."
homepage "https://tic80.com/play?cart=1499"
developer "Carlos Moura"
download "https://tic80.com/cart/497800a1c18b41de515bed7dddfafb79/cart.tic"
rom ( name "Barren.tic" size "50450" md5 "497800a1c18b41de515bed7dddfafb79" crc "11848125" )
)
game (
name "Barrys Tea for Beginners"
description "submitted to wild demo compo at outline'19"
homepage "https://tic80.com/play?cart=861"
developer "mantratronic"
download "https://tic80.com/cart/30bd1334d8d9493741247487e0e2f94e/cart.tic"
rom ( name "Barrys Tea for Beginners.tic" size "85627" md5 "30bd1334d8d9493741247487e0e2f94e" crc "6855dc66" )
)
game (
name "Bars"
description "Simple bars demo"
homepage "https://tic80.com/play?cart=167"
developer "GenerateMe"
download "https://tic80.com/cart/d638364e74c2ee58edf7fbff24baf3c8/cart.tic"
rom ( name "Bars.tic" size "1473" md5 "d638364e74c2ee58edf7fbff24baf3c8" crc "2703f5f4" )
)
game (
name "Base of Venture"
description "A space colonization game where you play as aliens and everything is procedurally generated"
homepage "https://tic80.com/play?cart=1490"
developer "chartuch"
download "https://tic80.com/cart/9701655e4722a22b2c7d0ac9ca62ad5b/cart.tic"
rom ( name "Base of Venture.tic" size "29142" md5 "9701655e4722a22b2c7d0ac9ca62ad5b" crc "33d1635a" )
)
game (
name "Batman"
description "Batman Animation"
homepage "https://tic80.com/play?cart=1353"
developer "potato imaginator"
download "https://tic80.com/cart/c2c51992cdfdff2d35a4ded8576ad636/cart.tic"
rom ( name "Batman.tic" size "18881" md5 "c2c51992cdfdff2d35a4ded8576ad636" crc "4cee7567" )
)
game (
name "Battle"
description "Fight with a friend by throwing magic spears!"
homepage "https://tic80.com/play?cart=537"
developer "Sammy6"
download "https://tic80.com/cart/629db3fbf1a52cbd6839a68fe1c189b3/cart.tic"
rom ( name "Battle.tic" size "10802" md5 "629db3fbf1a52cbd6839a68fe1c189b3" crc "db0e072b" )
)
game (
name "Battle City"
description "A mini remake of Battle City in Lua and TIC-80"
homepage "https://tic80.com/play?cart=1183"
developer "isshiki"
download "https://tic80.com/cart/0e98a4be3bf891b94ae2ad3e7996c823/cart.tic"
rom ( name "Battle City.tic" size "52115" md5 "0e98a4be3bf891b94ae2ad3e7996c823" crc "161a9e21" )
)
game (
name "Bb"
description "Just a demo"
homepage "https://tic80.com/play?cart=210"
developer "HomineLudens"
download "https://tic80.com/cart/438e47c81f05e9a0103bad81778461c6/cart.tic"
rom ( name "Bb.tic" size "3937" md5 "438e47c81f05e9a0103bad81778461c6" crc "e5818006" )
)
game (
name "Beach Walk"
description "Beach Walk Animation"
homepage "https://tic80.com/play?cart=1292"
developer "potato imaginator"
download "https://tic80.com/cart/6cacbae8f2b4aa165d360b7121016f60/cart.tic"
rom ( name "Beach Walk.tic" size "4165" md5 "6cacbae8f2b4aa165d360b7121016f60" crc "96d6fc03" )
)
game (
name "Beautiful Woman #1"
description "Beautiful Woman Animation named Elena"
homepage "https://tic80.com/play?cart=1272"
developer "potato imaginator"
download "https://tic80.com/cart/2ec03524ad5cc949985f14d60f20f54e/cart.tic"
rom ( name "Beautiful Woman #1.tic" size "4315" md5 "2ec03524ad5cc949985f14d60f20f54e" crc "3a14b68c" )
)
game (
name "Bejeweled"
description "minimal bejeweled clone"
homepage "https://tic80.com/play?cart=134"
developer "@jose_pedro_dias"
download "https://tic80.com/cart/daa450064cf47c1661f26dce414d4a49/cart.tic"
rom ( name "Bejeweled.tic" size "6850" md5 "daa450064cf47c1661f26dce414d4a49" crc "5f5f6cb2" )
)
game (
name "Believer 8 Bit"
homepage "https://tic80.com/play?cart=1224"
developer "hanamileh"
download "https://tic80.com/cart/d926e70eb48e486a576f214501cb0143/cart.tic"
rom ( name "Believer 8 Bit.tic" size "6843" md5 "d926e70eb48e486a576f214501cb0143" crc "f6b656b0" )
)
game (
name "Believer Using TIC-80 Sounds"
description "no ideas at all"
homepage "https://tic80.com/play?cart=1228"
developer "hanamileh"
download "https://tic80.com/cart/4498f0e64b7fc587697a9e5ba24accd7/cart.tic"
rom ( name "Believer Using TIC-80 Sounds.tic" size "6830" md5 "4498f0e64b7fc587697a9e5ba24accd7" crc "98a35e2f" )
)
game (
name "Bfs Pathfinding"
description "Breadth First Search algorithm"
homepage "https://tic80.com/play?cart=274"
developer "Bear Thorne"
download "https://tic80.com/cart/03173feb1c19812d89272e8c4b724b30/cart.tic"
rom ( name "Bfs Pathfinding.tic" size "12090" md5 "03173feb1c19812d89272e8c4b724b30" crc "c59c4e02" )
)
game (
name "Bigspr"
description "Handle a group of sprites the same as a single sprite"
homepage "https://tic80.com/play?cart=84"
developer "Viza"
download "https://tic80.com/cart/9ac52c0d5e248c16276e8d0cc013d49f/cart.tic"
rom ( name "Bigspr.tic" size "8652" md5 "7201ae43f40ca80018b88beace62457d" crc "83a8a0b6" )
)
game (
name "Binary Road"
description "One key jump game"
homepage "https://tic80.com/play?cart=781"
developer "Kikeroga"
download "https://tic80.com/cart/f765715edc98881aa42ee70e89bf3426/cart.tic"
rom ( name "Binary Road.tic" size "3166" md5 "f765715edc98881aa42ee70e89bf3426" crc "7f1a05c1" )
)
game (
name "Biorhythm"
description "Biorhythm chart program"
homepage "https://tic80.com/play?cart=1066"
developer "Kikeroga"
download "https://tic80.com/cart/4217bbcfdec8d7ab85f9196fa02a46ca/cart.tic"
rom ( name "Biorhythm.tic" size "5449" md5 "4217bbcfdec8d7ab85f9196fa02a46ca" crc "b9f25b67" )
)
game (
name "Bird Jumper"
description "You're falling for some reason. land on the birds to get points and make combos!"
homepage "https://tic80.com/play?cart=655"
developer "Sammy6"
download "https://tic80.com/cart/587ced1be4649bb553dc3d41c2750fd5/cart.tic"
rom ( name "Bird Jumper.tic" size "18286" md5 "587ced1be4649bb553dc3d41c2750fd5" crc "f613a9bf" )
)
game (
name "Bitmaze"
description "A simple maze game"
homepage "https://tic80.com/play?cart=365"
developer "ewpratten (keybase.io/ewpratten)"
download "https://tic80.com/cart/cc0196892ede954e635c7fc3520ec5e3/cart.tic"
rom ( name "Bitmaze.tic" size "17476" md5 "cc0196892ede954e635c7fc3520ec5e3" crc "f527be26" )
)
game (
name "Black Onyax"
description "3D Nyanko RPG"
homepage "https://tic80.com/play?cart=1014"
developer "Kikeroga"
download "https://tic80.com/cart/c7cf9ef1af6fed2f1f805d17098626a2/cart.tic"
rom ( name "Black Onyax.tic" size "11872" md5 "c7cf9ef1af6fed2f1f805d17098626a2" crc "1d0faa57" )
)
game (
name "Blast-80"
description "Defend the earth from an increasing amount of incoming comets"
homepage "https://tic80.com/play?cart=715"
developer "VirtualGround"
download "https://tic80.com/cart/af06700307e4b701f40635d1b2b000c1/cart.tic"
rom ( name "Blast-80.tic" size "30974" md5 "af06700307e4b701f40635d1b2b000c1" crc "a1a2ae4d" )
)
game (
name "Blastroids"
description "Shoot and avoid astroids!"
homepage "https://tic80.com/play?cart=1454"
developer "C16 & NotWily"
download "https://tic80.com/cart/f3a7116fbd454c91cc194d0be1d3de60/cart.tic"
rom ( name "Blastroids.tic" size "46238" md5 "f3a7116fbd454c91cc194d0be1d3de60" crc "338c93a5" )
)
game (
name "Blend Plasma"
description "RGB style plasma"
homepage "https://tic80.com/play?cart=1429"
developer "Shiny"
download "https://tic80.com/cart/3c9ca4abb3e3b6e95850faf3df6b3f76/cart.tic"
rom ( name "Blend Plasma.tic" size "3464" md5 "3c9ca4abb3e3b6e95850faf3df6b3f76" crc "f80023cd" )
)
game (
name "Block Demo"
description "Hello world by Nesbox."
homepage "https://tic80.com/play?cart=1172"
developer "masternama"
download "https://tic80.com/cart/8369777d794a6ef28832b97b420c04e0/cart.tic"
rom ( name "Block Demo.tic" size "3468" md5 "8369777d794a6ef28832b97b420c04e0" crc "3402f4a2" )
)
game (
name "Block Walk"
description "a game created for the 2018 GMTK Game jame"