forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTIC-80.dat
5959 lines (5293 loc) · 216 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 "1 Bit Data"
description "using 1 bit data"
homepage "https://tic.computer/play?cart=681"
developer "MonstersGoBoom"
download "https://tic.computer/cart/b095134e9067c2f4a23b5630e03bbd36/cart.tic"
rom ( name "1 Bit Data.tic" size "18009" md5 "b095134e9067c2f4a23b5630e03bbd36" crc 5c19d0e0 )
)
game (
name "12 Paces Joe"
description "A simple platformer."
homepage "https://tic.computer/play?cart=181"
developer "Tomthetom"
download "https://tic.computer/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://tic.computer/play?cart=945"
developer "Zach Hageberg"
download "https://tic.computer/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://tic.computer/play?cart=824"
developer "Altrix Studios"
download "https://tic.computer/cart/2cee68d87c00f49e1371f6cab9cd44a0/cart.tic"
rom ( name "15 Minutes To Live.tic" size "75088" md5 "2cee68d87c00f49e1371f6cab9cd44a0" crc 1b3b9a9 )
)
game (
name "2 Bit Sprite"
description "shows how convert native TIC-80 4-bit sprite to 2-bit"
homepage "https://tic.computer/play?cart=100"
developer "Al Rado"
download "https://tic.computer/cart/c9086c58184cb68e11d744473560dbae/cart.tic"
rom ( name "2 Bit Sprite.tic" size "3159" md5 "3823ee3a06cccdcdffc9e3f4c2b7cad3" crc ed6905cd )
)
game (
name "2 Player Bomberman"
description "Bomberman game"
homepage "https://tic.computer/play?cart=137"
developer "Marcel"
download "https://tic.computer/cart/2a8fdc1a85adb320ecbbc4fb7f5ad435/cart.tic"
rom ( name "2 Player Bomberman.tic" size "14302" md5 "2a8fdc1a85adb320ecbbc4fb7f5ad435" crc 9f04342e )
)
game (
name "2048 TIC-80 Version"
description "I made a game like 2048 with Javascript, have fun"
homepage "https://tic.computer/play?cart=395"
developer "Spacebit"
download "https://tic.computer/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://tic.computer/play?cart=143"
developer "Al Rado"
download "https://tic.computer/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://tic.computer/play?cart=219"
developer "Al Rado"
download "https://tic.computer/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://tic.computer/play?cart=220"
developer "Al Rado"
download "https://tic.computer/cart/eca81b243bf37309ba7c2d4204036960/cart.tic"
rom ( name "29 In 1 Geometry.tic" size "11314" md5 "eca81b243bf37309ba7c2d4204036960" crc 1dfe6182 )
)
game (
name "32 Colours"
description "32 Colours onscreen at once"
homepage "https://tic.computer/play?cart=417"
developer "Cubee"
download "https://tic.computer/cart/c0b5f4c1d5653890e8fde4839fe46a51/cart.tic"
rom ( name "32 Colours.tic" size "3410" md5 "c0b5f4c1d5653890e8fde4839fe46a51" crc b7cee551 )
)
game (
name "3D Demo"
description "Racer made for FCJ"
homepage "https://tic.computer/play?cart=230"
developer "Nopy"
download "https://tic.computer/cart/f11823f84bf845ed68cc8240b99c1aa0/cart.tic"
rom ( name "3D Demo.tic" size "83472" md5 "f11823f84bf845ed68cc8240b99c1aa0" crc e64f5a37 )
)
game (
name "3D Test"
description "Testing of 3d, color interpolation, fog and etc."
homepage "https://tic.computer/play?cart=505"
developer "TehShadowz"
download "https://tic.computer/cart/efdc1c3ab8b03bdeefee39e21529f16d/cart.tic"
rom ( name "3D Test.tic" size "9485" md5 "efdc1c3ab8b03bdeefee39e21529f16d" crc 7fc58a2f )
)
game (
name "4 Guys 4 Player Hello World Cartridge"
description "Player movement with 4 players"
homepage "https://tic.computer/play?cart=441"
developer "StinkerB06"
download "https://tic.computer/cart/1c28a94f68846e827698c5adc137b4ce/cart.tic"
rom ( name "4 Guys 4 Player Hello World Cartridge.tic" size "8047" md5 "1c28a94f68846e827698c5adc137b4ce" crc a0e2dbff )
)
game (
name "5 Bit Square Wave 8 Bit Square Wave Sound Test"
description "Simple an wavefroms octave trick"
homepage "https://tic.computer/play?cart=963"
developer "masternama"
download "https://tic.computer/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 "5 New Palettes In Palette Demo"
description "how to switch palatte in runtime"
homepage "https://tic.computer/play?cart=901"
developer "Nesbox & masternama"
download "https://tic.computer/cart/5c88c6222552fcc93c642a389e8fe97a/cart.tic"
rom ( name "5 New Palettes In Palette Demo.tic" size "6957" md5 "5c88c6222552fcc93c642a389e8fe97a" crc e1d1428e )
)
game (
name "8 Bit Panda"
description "A panda platformer"
homepage "https://tic.computer/play?cart=188"
developer "Bruno Oliveira"
download "https://tic.computer/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://tic.computer/play?cart=602"
developer "Bruno Oliveira"
download "https://tic.computer/cart/23ec735640aa2d89ec131e3d1205037a/cart.tic"
rom ( name "8 Bit Panda.tic" size "132371" md5 "23ec735640aa2d89ec131e3d1205037a" crc d2e0bb7d )
)
game (
name "8 Bit Panda 3D Glasses Edition"
description "A mod of a panda platformer"
homepage "https://tic.computer/play?cart=542"
developer "Bruno Oliveira, mod by StinkerB06"
download "https://tic.computer/cart/9cbaf2fef2b6741ab2edc8d8d3d1eced/cart.tic"
rom ( name "8 Bit Panda 3D Glasses Edition.tic" size "132968" md5 "9cbaf2fef2b6741ab2edc8d8d3d1eced" crc da2f1442 )
)
game (
name "8 Bit Panda Cheat Version"
description "A panda platformer"
homepage "https://tic.computer/play?cart=212"
developer "Bruno Oliveira, cheat by StinkerB06"
download "https://tic.computer/cart/e538bce86980c1f8fc3032cca4441f7d/cart.tic"
rom ( name "8 Bit Panda Cheat Version.tic" size "131633" md5 "e538bce86980c1f8fc3032cca4441f7d" crc 1943e53d )
)
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://tic.computer/play?cart=776"
developer "Bruno Oliveira & Master nama"
download "https://tic.computer/cart/7693c0348f4ee9687eb2d49a80429d41/cart.tic"
rom ( name "8 Bit Panda Invisable Editon.tic" size "132490" md5 "7693c0348f4ee9687eb2d49a80429d41" crc e5d4b485 )
)
game (
name "8 Bit Panda Ost Oscilloscope View"
homepage "https://tic.computer/play?cart=214"
developer "Bruno Oliveira, visual by StinkerB06"
download "https://tic.computer/cart/eca14a340257b7c2de206f3403bca1b9/cart.tic"
rom ( name "8 Bit Panda Ost Oscilloscope View.tic" size "69749" md5 "eca14a340257b7c2de206f3403bca1b9" crc 5ae1ba0a )
)
game (
name "8 Bit Panda Virtual Boy Edition"
description "A mod of a panda platformer"
homepage "https://tic.computer/play?cart=521"
developer "Bruno Oliveira, mod by StinkerB06"
download "https://tic.computer/cart/0c12efd162678c1285e0f15d9737d5e2/cart.tic"
rom ( name "8 Bit Panda Virtual Boy Edition.tic" size "132974" md5 "0c12efd162678c1285e0f15d9737d5e2" crc bd08f0e8 )
)
game (
name "8 Bit Panda Whiteout Challenge"
description "Oliveira's 8 Bit Panda where the darkest color is barely darker than white."
homepage "https://tic.computer/play?cart=764"
developer "Bruno Oliveira, mod by oshaboy"
download "https://tic.computer/cart/2b8ddaff8261da487855e6e91a1bd421/cart.tic"
rom ( name "8 Bit Panda Whiteout Challenge.tic" size "132888" md5 "2b8ddaff8261da487855e6e91a1bd421" crc aa7cfd83 )
)
game (
name "99 In 1 10 11 17"
description "JavaScript demos from different authors from www.dwitter.net, demo length <= 140 chars"
homepage "https://tic.computer/play?cart=295"
developer "Al Rado"
download "https://tic.computer/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://tic.computer/play?cart=540"
developer "Sammy6"
download "https://tic.computer/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://tic.computer/play?cart=360"
developer "derpguy125"
download "https://tic.computer/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://tic.computer/play?cart=241"
developer "StinkerB06"
download "https://tic.computer/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://tic.computer/play?cart=974"
developer "masternama"
download "https://tic.computer/cart/b8b4b7186a7ec51507ddd6af751f0315/cart.tic"
rom ( name "A Great Of Scanline Tricks.tic" size "11773" md5 "b8b4b7186a7ec51507ddd6af751f0315" crc 53808636 )
)
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://tic.computer/play?cart=650"
developer "TickedOffJosh"
download "https://tic.computer/cart/969d4e2bca0416e97276396f6aa71a1c/cart.tic"
rom ( name "Aabb For Babbies.tic" size "6593" md5 "969d4e2bca0416e97276396f6aa71a1c" crc 86beeda4 )
)
game (
name "Adventure Game Sample"
description "Adventure game sample"
homepage "https://tic.computer/play?cart=808"
developer "Kikeroga"
download "https://tic.computer/cart/96e1562253ac067039dd529283a14007/cart.tic"
rom ( name "Adventure Game Sample.tic" size "9393" md5 "96e1562253ac067039dd529283a14007" crc b32886ea )
)
game (
name "Air Hockey"
description "scoring 7 points"
homepage "https://tic.computer/play?cart=728"
developer "Developer from onj"
download "https://tic.computer/cart/4f44ce605be09e61aa9ce2ae6b7acda1/cart.tic"
rom ( name "Air Hockey.tic" size "42625" md5 "4f44ce605be09e61aa9ce2ae6b7acda1" crc c8ee428e )
)
game (
name "Aligned Movement Demo"
description "Grid-aligned movement with sub-space movement a la LoZ for NES"
homepage "https://tic.computer/play?cart=331"
developer "gardrek"
download "https://tic.computer/cart/629626af13150cfa8b01fad89058b106/cart.tic"
rom ( name "Aligned Movement Demo.tic" size "5096" md5 "629626af13150cfa8b01fad89058b106" crc 9b7779a9 )
)
game (
name "All Mario Blocks"
homepage "https://tic.computer/play?cart=434"
developer "Matt Hughson (@mhughson),krisz"
download "https://tic.computer/cart/c6f4375ff467cea04142da31bb5ac5e1/cart.tic"
rom ( name "All Mario Blocks.tic" size "11185" md5 "c6f4375ff467cea04142da31bb5ac5e1" crc 8d7c2c30 )
)
game (
name "Amrogue"
description "Roguelike Shooter"
homepage "https://tic.computer/play?cart=535"
developer "trelemar"
download "https://tic.computer/cart/fc6d6f92a831a98190e3f66d0c5ab7b5/cart.tic"
rom ( name "Amrogue.tic" size "38114" md5 "fc6d6f92a831a98190e3f66d0c5ab7b5" crc cf3d19f6 )
)
game (
name "Amrogue"
description "Roguelike Shooter"
homepage "https://tic.computer/play?cart=74"
developer "trelemar"
download "https://tic.computer/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://tic.computer/play?cart=746"
developer "StinkerB06"
download "https://tic.computer/cart/d3e0ff023a5895c97a944f37c8bef2b4/cart.tic"
rom ( name "An Arpeggio Song.tic" size "14067" md5 "d3e0ff023a5895c97a944f37c8bef2b4" crc 9b2cc5cb )
)
game (
name "Animation Demo"
description "Function to draw sprite animation"
homepage "https://tic.computer/play?cart=12"
developer "Ahmed Khalifa"
download "https://tic.computer/cart/a5b5ac3205ef4790d25106ce85682164/cart.tic"
rom ( name "Animation Demo.tic" size "10932" md5 "35189b0fa1cff9ea752fba134eb8b389" crc 11318e6b )
)
game (
name "Another Noise"
homepage "https://tic.computer/play?cart=541"
developer "StinkerB06"
download "https://tic.computer/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://tic.computer/play?cart=256"
developer "@zlatovlas"
download "https://tic.computer/cart/805268c21e85c4933b658c6a4da8e5df/cart.tic"
rom ( name "Ant Racer.tic" size "45896" md5 "805268c21e85c4933b658c6a4da8e5df" crc 9ad7ac9b )
)
game (
name "Ark2 K S Arithmetic"
homepage "https://tic.computer/play?cart=767"
developer "ark2000"
download "https://tic.computer/cart/2ecdc56e731c0b5154080f21cc541c52/cart.tic"
rom ( name "Ark2 K S Arithmetic.tic" size "9458" md5 "2ecdc56e731c0b5154080f21cc541c52" crc c068fc25 )
)
game (
name "Asprin"
description "Collect dots dodge lines"
homepage "https://tic.computer/play?cart=567"
developer "mholowsko"
download "https://tic.computer/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://tic.computer/play?cart=772"
developer "Vinicius M."
download "https://tic.computer/cart/4cac6e2ecdd5c95da9ea90c244532ac8/cart.tic"
rom ( name "Asteroids.tic" size "31207" md5 "4cac6e2ecdd5c95da9ea90c244532ac8" crc f53ab6f0 )
)
game (
name "Atari Bass Demo"
description "Waves Ripped from Sim_Piko's FAC Port"
homepage "https://tic.computer/play?cart=550"
developer "StinkerB06"
download "https://tic.computer/cart/0776fbbf6c96b51df36c3d3e03e92a92/cart.tic"
rom ( name "Atari Bass Demo.tic" size "3404" md5 "0776fbbf6c96b51df36c3d3e03e92a92" crc 8eee8137 )
)
game (
name "Auto Tile"
description "A bitwise method for applying tilemaps"
homepage "https://tic.computer/play?cart=318"
developer "MonstersGoBoom ( inspired by Al Rado )"
download "https://tic.computer/cart/5dc7b92540f662a78b06a10c5ae07a5b/cart.tic"
rom ( name "Auto Tile.tic" size "47159" md5 "5dc7b92540f662a78b06a10c5ae07a5b" crc 65a9d4d0 )
)
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://tic.computer/play?cart=419"
developer "Nesbox and Fubuki"
download "https://tic.computer/cart/01d9e89e8a46e8bedde35e68fb636095/cart.tic"
rom ( name "Bad Apple.tic" size "237417" md5 "01d9e89e8a46e8bedde35e68fb636095" crc e23f22da )
)
game (
name "Ball"
description "Ball"
homepage "https://tic.computer/play?cart=126"
developer "Clement D"
download "https://tic.computer/cart/2a2a9ffcd235e67d65f0e4c93035d0bf/cart.tic"
rom ( name "Ball.tic" size "1869" md5 "2a2a9ffcd235e67d65f0e4c93035d0bf" crc 796c02ea )
)
game (
name "Ballistic"
description "Ballistic Example"
homepage "https://tic.computer/play?cart=146"
developer "DoubleD"
download "https://tic.computer/cart/94cdea520cc19ae8c28f1c2e7f9d13b1/cart.tic"
rom ( name "Ballistic.tic" size "2092" md5 "94cdea520cc19ae8c28f1c2e7f9d13b1" crc 59724024 )
)
game (
name "Balloon And Cactus A Love Story"
description "Love in the thorniest of circumstances."
homepage "https://tic.computer/play?cart=131"
developer "Alex Bair"
download "https://tic.computer/cart/7da92fd776b3df7019c28f62ffa5c5d0/cart.tic"
rom ( name "Balloon And Cactus A Love Story.tic" size "22846" md5 "7da92fd776b3df7019c28f62ffa5c5d0" crc 79eebec1 )
)
game (
name "Balloon Punch"
description "an old school seesaw game"
homepage "https://tic.computer/play?cart=545"
developer "tak0294"
download "https://tic.computer/cart/3639ae8e910b27e13313adb9a2ebfe3d/cart.tic"
rom ( name "Balloon Punch.tic" size "52589" md5 "3639ae8e910b27e13313adb9a2ebfe3d" crc 325c7e27 )
)
game (
name "Balmung"
description "Explore an island of monsters and mysteries."
homepage "https://tic.computer/play?cart=636"
developer "petet"
download "https://tic.computer/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://tic.computer/play?cart=114"
developer "Viza"
download "https://tic.computer/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://tic.computer/play?cart=139"
developer "trelemar, level27geek, RushJet1"
download "https://tic.computer/cart/8c2e54fc6e2205590f9330ab400e76ca/cart.tic"
rom ( name "Bare Bones.tic" size "90462" md5 "8c2e54fc6e2205590f9330ab400e76ca" crc 990b7a9e )
)
game (
name "Barrys Tea For Beginners"
description "submitted to wild demo compo at outline'19"
homepage "https://tic.computer/play?cart=861"
developer "mantratronic"
download "https://tic.computer/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://tic.computer/play?cart=167"
developer "GenerateMe"
download "https://tic.computer/cart/d638364e74c2ee58edf7fbff24baf3c8/cart.tic"
rom ( name "Bars.tic" size "1473" md5 "d638364e74c2ee58edf7fbff24baf3c8" crc 2703f5f4 )
)
game (
name "Battle"
description "Fight with a friend by throwing magic spears!"
homepage "https://tic.computer/play?cart=537"
developer "Sammy6"
download "https://tic.computer/cart/629db3fbf1a52cbd6839a68fe1c189b3/cart.tic"
rom ( name "Battle.tic" size "10802" md5 "629db3fbf1a52cbd6839a68fe1c189b3" crc db0e072b )
)
game (
name "Bb"
description "Just a demo"
homepage "https://tic.computer/play?cart=210"
developer "HomineLudens"
download "https://tic.computer/cart/438e47c81f05e9a0103bad81778461c6/cart.tic"
rom ( name "Bb.tic" size "3937" md5 "438e47c81f05e9a0103bad81778461c6" crc e5818006 )
)
game (
name "Bejeweled"
description "minimal bejeweled clone"
homepage "https://tic.computer/play?cart=134"
developer "@jose_pedro_dias"
download "https://tic.computer/cart/daa450064cf47c1661f26dce414d4a49/cart.tic"
rom ( name "Bejeweled.tic" size "6850" md5 "daa450064cf47c1661f26dce414d4a49" crc 5f5f6cb2 )
)
game (
name "Bfs Pathfinding"
description "Breadth First Search algorithm"
homepage "https://tic.computer/play?cart=274"
developer "Bear Thorne"
download "https://tic.computer/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://tic.computer/play?cart=84"
developer "Viza"
download "https://tic.computer/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://tic.computer/play?cart=781"
developer "Kikeroga"
download "https://tic.computer/cart/f765715edc98881aa42ee70e89bf3426/cart.tic"
rom ( name "Binary Road.tic" size "3166" md5 "f765715edc98881aa42ee70e89bf3426" crc 7f1a05c1 )
)
game (
name "Bird Jumper"
description "You're falling for some reason. land on the birds to get points and make combos!"
homepage "https://tic.computer/play?cart=655"
developer "Sammy6"
download "https://tic.computer/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://tic.computer/play?cart=365"
developer "ewpratten (keybase.io/ewpratten)"
download "https://tic.computer/cart/cc0196892ede954e635c7fc3520ec5e3/cart.tic"
rom ( name "Bitmaze.tic" size "17476" md5 "cc0196892ede954e635c7fc3520ec5e3" crc f527be26 )
)
game (
name "Blast 80"
description "Defend the earth from an increasing amount of incoming comets"
homepage "https://tic.computer/play?cart=715"
developer "VirtualGround"
download "https://tic.computer/cart/af06700307e4b701f40635d1b2b000c1/cart.tic"
rom ( name "Blast 80.tic" size "30974" md5 "af06700307e4b701f40635d1b2b000c1" crc a1a2ae4d )
)
game (
name "Block Walk"
description "a game created for the 2018 GMTK Game jame"
homepage "https://tic.computer/play?cart=648"
developer "King Sirracha"
download "https://tic.computer/cart/3c56a6fa9c0a4c083309001c7686ec5b/cart.tic"
rom ( name "Block Walk.tic" size "27843" md5 "3c56a6fa9c0a4c083309001c7686ec5b" crc 835ba994 )
)
game (
name "Blue S Dance Show"
description "A rhythmic game better than Dance Revolution"
homepage "https://tic.computer/play?cart=634"
developer "auBergewohnlich"
download "https://tic.computer/cart/abf3246fc4c05b93abcf602250c0db91/cart.tic"
rom ( name "Blue S Dance Show.tic" size "79618" md5 "abf3246fc4c05b93abcf602250c0db91" crc 6b8936ce )
)
game (
name "Boom Bushes"
description "How many bushes can you boom?"
homepage "https://tic.computer/play?cart=603"
developer "Graic"
download "https://tic.computer/cart/92b146701c3a259e21958ee6682bd109/cart.tic"
rom ( name "Boom Bushes.tic" size "10975" md5 "92b146701c3a259e21958ee6682bd109" crc d637f799 )
)
game (
name "Bouncelot"
description "get as high as you can by bouncing"
homepage "https://tic.computer/play?cart=762"
developer "niltic"
download "https://tic.computer/cart/0bfecacf1bba6df1d57bed688e9a426b/cart.tic"
rom ( name "Bouncelot.tic" size "24836" md5 "0bfecacf1bba6df1d57bed688e9a426b" crc 8084adbf )
)
game (
name "Bouncing Ball Demo"
description "how to make an object bounce"
homepage "https://tic.computer/play?cart=337"
developer "SergioFLSgd"
download "https://tic.computer/cart/d41579a60d80c14826b80bc1dafc2dfa/cart.tic"
rom ( name "Bouncing Ball Demo.tic" size "2316" md5 "d41579a60d80c14826b80bc1dafc2dfa" crc e3e0c3af )
)
game (
name "Bouncing Thing"
description "boncing ball with trace"
homepage "https://tic.computer/play?cart=575"
developer "Greatcode"
download "https://tic.computer/cart/0558ff23e6ea5fd83458812dc6d97160/cart.tic"
rom ( name "Bouncing Thing.tic" size "3640" md5 "0558ff23e6ea5fd83458812dc6d97160" crc ad78b8da )
)
game (
name "Boxing"
description "A little fighting game"
homepage "https://tic.computer/play?cart=955"
developer "QKBOY"
download "https://tic.computer/cart/258c342a128b4c35eaeb57edac1569ff/cart.tic"
rom ( name "Boxing.tic" size "86667" md5 "258c342a128b4c35eaeb57edac1569ff" crc 785fd66d )
)
game (
name "Breakout Test"
description "breakout clone for testing"
homepage "https://tic.computer/play?cart=197"
developer "GaoGaoTaiga"
download "https://tic.computer/cart/12b33e06b18aea2c8ed91a319b1a985b/cart.tic"
rom ( name "Breakout Test.tic" size "6648" md5 "12b33e06b18aea2c8ed91a319b1a985b" crc b1fc0615 )
)
game (
name "Brickgame"
description "Mini-collection with mini-games"
homepage "https://tic.computer/play?cart=277"
developer "frombetelgeuse"
download "https://tic.computer/cart/b376b4ad358ee62a186f4fd2d6942a0a/cart.tic"
rom ( name "Brickgame.tic" size "32874" md5 "b376b4ad358ee62a186f4fd2d6942a0a" crc 233d761f )
)
game (
name "Btn Demo Lua"
description "shows how to use 'btn'"
homepage "https://tic.computer/play?cart=13"
developer "Rain_Effect"
download "https://tic.computer/cart/69ff568616133233e9ad2798bd33cdaa/cart.tic"
rom ( name "Btn Demo Lua.tic" size "1705" md5 "8e0af7199dd44062d7395759408afefc" crc 8946b740 )
)
game (
name "Btn Demo Moon"
description "shows how to use 'btn'"
homepage "https://tic.computer/play?cart=43"
developer "Rain_Effect"
download "https://tic.computer/cart/43adbe27ea41df29404170bf128dd92c/cart.tic"
rom ( name "Btn Demo Moon.tic" size "1643" md5 "a27014c74e4aca4957fa89a82b538d74" crc a14dcdbe )
)
game (
name "Btnp Demo Lua"
description "shows how to use 'btnp'"
homepage "https://tic.computer/play?cart=14"
developer "Filippo"
download "https://tic.computer/cart/6175cee6347e0c95001e89131e34861e/cart.tic"
rom ( name "Btnp Demo Lua.tic" size "1176" md5 "7363bb5dbe8f87a8cccdf37756d93e29" crc e8912080 )
)
game (
name "Btnp Demo Moon"
description "shows how to use 'btnp'"
homepage "https://tic.computer/play?cart=44"
developer "Filippo"
download "https://tic.computer/cart/7bbd259eb9a7bce458859e6595f9300c/cart.tic"
rom ( name "Btnp Demo Moon.tic" size "1148" md5 "0d919b5a9f09ed519ffd3de10f5c7310" crc 50ca22a1 )
)
game (
name "Bump Collision Detection Library"
description "simplest demo how works 'Bump'"
homepage "https://tic.computer/play?cart=77"
developer "Al-Rado"
download "https://tic.computer/cart/5b284c27dc1f483247d56667c9149ab7/cart.tic"
rom ( name "Bump Collision Detection Library.tic" size "25716" md5 "e9b1aae40d5629a027b04376a87f7392" crc e4d1a0b5 )
)
game (
name "Button Timing Reaction Game"
description "Try to press the button at the correct frame!"
homepage "https://tic.computer/play?cart=967"
developer "StinkerB06"
download "https://tic.computer/cart/e686b14100751cb3bca04a6b715908cc/cart.tic"
rom ( name "Button Timing Reaction Game.tic" size "3097" md5 "e686b14100751cb3bca04a6b715908cc" crc 9c00d254 )
)
game (
name "Byte Magazine"
description "This is a listing in Basic"
homepage "https://tic.computer/play?cart=690"
developer "George Haroney Graphing"
download "https://tic.computer/cart/d81b6c86ef11568e3b16876e4d2b8c6b/cart.tic"
rom ( name "Byte Magazine.tic" size "10798" md5 "d81b6c86ef11568e3b16876e4d2b8c6b" crc 4ec61e27 )
)
game (
name "Calc"
description "A simple multi Calculator,"
homepage "https://tic.computer/play?cart=177"
developer "ASCII_Bene"
download "https://tic.computer/cart/f82db9ea8df82b2bf94ba08062a74180/cart.tic"
rom ( name "Calc.tic" size "1506" md5 "f82db9ea8df82b2bf94ba08062a74180" crc 9d1a1f0d )
)
game (
name "Call Of The Trees"
description "You are a tree in this exciting top down maze game. Art and design by a 6 year old."
homepage "https://tic.computer/play?cart=658"
developer "Seiya Elby"
download "https://tic.computer/cart/1a6579c0398e4732f41cea2fe4ca092a/cart.tic"
rom ( name "Call Of The Trees.tic" size "29119" md5 "1a6579c0398e4732f41cea2fe4ca092a" crc 1ddad )
)
game (
name "Camera Tutorial"
description "How to efficiently draw a scrolling map"
homepage "https://tic.computer/play?cart=161"
developer "trelemar"
download "https://tic.computer/cart/834a9971ec40277d592b8c800de3e4f4/cart.tic"
rom ( name "Camera Tutorial.tic" size "10170" md5 "834a9971ec40277d592b8c800de3e4f4" crc 7fe11474 )
)
game (
name "Can T Stop"
description "dice rolling board game"
homepage "https://tic.computer/play?cart=269"
developer "Mannzerhacker"
download "https://tic.computer/cart/6483b54edf2bc56ca2bcde4a32e0d3b8/cart.tic"
rom ( name "Can T Stop.tic" size "12039" md5 "6483b54edf2bc56ca2bcde4a32e0d3b8" crc 15430322 )
)
game (
name "Candytic"
description "A TIC-80 version o Candy Crash"
homepage "https://tic.computer/play?cart=563"
developer "Fachi177"
download "https://tic.computer/cart/e484bada74f3527a90a5e2af24bcb5ef/cart.tic"
rom ( name "Candytic.tic" size "56502" md5 "e484bada74f3527a90a5e2af24bcb5ef" crc 2fe21979 )
)
game (
name "Cannon In D"
description "Pachelbel's Cannon In D"
homepage "https://tic.computer/play?cart=619"
developer "Minerscale"
download "https://tic.computer/cart/239af2336dabaa97c2b339021221b991/cart.tic"
rom ( name "Cannon In D.tic" size "28851" md5 "239af2336dabaa97c2b339021221b991" crc a0e2a38a )
)
game (
name "Cap Hell"
description "put caps on the bottle!"
homepage "https://tic.computer/play?cart=543"
developer "tak0294"
download "https://tic.computer/cart/533e01b928f6ff82df26f73b7fd72b40/cart.tic"
rom ( name "Cap Hell.tic" size "47032" md5 "533e01b928f6ff82df26f73b7fd72b40" crc 60899c88 )
)
game (
name "Cars"
description "Game created in 3 days. You control the car"
homepage "https://tic.computer/play?cart=887"
developer "maniek207"
download "https://tic.computer/cart/ae8ebc8d17f8cdcfe75ba0318f84680d/cart.tic"
rom ( name "Cars.tic" size "54318" md5 "ae8ebc8d17f8cdcfe75ba0318f84680d" crc 2f70a9c8 )
)
game (
name "Cat Puking Simulator"
description "For those who like hairballs"
homepage "https://tic.computer/play?cart=757"
developer "StinkerB06"
download "https://tic.computer/cart/41548d72d230fc13c1f6cf37cf52fbd9/cart.tic"
rom ( name "Cat Puking Simulator.tic" size "5005" md5 "41548d72d230fc13c1f6cf37cf52fbd9" crc e1a844b7 )
)
game (
name "Cauliflower Power"
description "Stealth farming game made for LD41"
homepage "https://tic.computer/play?cart=566"
developer "@librorumque"
download "https://tic.computer/cart/74d69f265855b2a8c38ad45116bf48d7/cart.tic"
rom ( name "Cauliflower Power.tic" size "111918" md5 "74d69f265855b2a8c38ad45116bf48d7" crc e3b1f1a6 )
)
game (
name "Cave Story Moonsong"
description "A cover of Pixel's 'Moonsong'"
homepage "https://tic.computer/play?cart=374"
developer "Fubuki"
download "https://tic.computer/cart/ffc8dad1773a61aa32d6008a23b94b96/cart.tic"
rom ( name "Cave Story Moonsong.tic" size "26547" md5 "ffc8dad1773a61aa32d6008a23b94b96" crc 756b1b00 )
)
game (
name "Celeste"
homepage "https://tic.computer/play?cart=642"
developer "100yan"
download "https://tic.computer/cart/ef4af32d1837b1257ece9704c923cde2/cart.tic"
rom ( name "Celeste.tic" size "18062" md5 "ef4af32d1837b1257ece9704c923cde2" crc a3bcc6d8 )
)
game (
name "Character Generator Shooting"
description "Character Generator Shooting"
homepage "https://tic.computer/play?cart=451"
developer "Time Tripper"
download "https://tic.computer/cart/cad82e7f77ad5eaf0a380e362315020c/cart.tic"
rom ( name "Character Generator Shooting.tic" size "50584" md5 "cad82e7f77ad5eaf0a380e362315020c" crc 54147d60 )
)
game (
name "Chest Demo"
description "3D chest, created by double acsel that do easy building of 3D model, but weigth too much!"
homepage "https://tic.computer/play?cart=671"
developer "BuoYancY_dabl"
download "https://tic.computer/cart/891d8ba9abd5c87afc5e398647fb27c6/cart.tic"
rom ( name "Chest Demo.tic" size "9728" md5 "891d8ba9abd5c87afc5e398647fb27c6" crc 66db4517 )
)
game (
name "Chiptune Made By Rushjet1"
homepage "https://tic.computer/play?cart=110"
developer "RushJet1"
download "https://tic.computer/cart/9ebe24d59f3451cd191cbe79469abeaf/cart.tic"
rom ( name "Chiptune Made By Rushjet1.tic" size "3631" md5 "2cb71d6958aee4e575b238ab48d3b714" crc ac8e33b9 )
)
game (
name "Circ Demo 2 Lua"
description "shows how to use 'circ'"
homepage "https://tic.computer/play?cart=16"
developer "Filippo"
download "https://tic.computer/cart/e752a9ba2654d9f6c26cf50ef44e0bb4/cart.tic"
rom ( name "Circ Demo 2 Lua.tic" size "3701" md5 "80e4d9a2d60c8e0cd047c6932085fa5a" crc 98ec4db )
)
game (
name "Circ Demo 2 Moon"
description "shows how to use 'circ'"
homepage "https://tic.computer/play?cart=46"
developer "Filippo"
download "https://tic.computer/cart/d4643710ec7e8663108ffdc43d5d66d9/cart.tic"
rom ( name "Circ Demo 2 Moon.tic" size "3624" md5 "738f88070599b9b0a6c2fb6e640ebe03" crc 3f69bca )
)
game (
name "Circ Demo Lua"
description "particular qualities 'circ'"
homepage "https://tic.computer/play?cart=15"
developer "Al Rado"
download "https://tic.computer/cart/d2c5763185fbae0ac6308864e35028ea/cart.tic"
rom ( name "Circ Demo Lua.tic" size "1282" md5 "01c8f2a3ec6c5c5464328a29fb60319c" crc 1c810a23 )
)
game (
name "Circ Demo Moon"
description "particular qualities 'circ'"
homepage "https://tic.computer/play?cart=45"
developer "Al Rado"
download "https://tic.computer/cart/c38afd7ecdd9c46bc411a1c14d248ab8/cart.tic"
rom ( name "Circ Demo Moon.tic" size "1269" md5 "18cb53be9a2c1a9ec692ed86edec8b01" crc b56ee918 )
)
game (
name "Circb Demo Lua"
description "shows how to use 'circb'"
homepage "https://tic.computer/play?cart=17"
developer "Filippo"
download "https://tic.computer/cart/01bb00a295a194ce60ec596952b45140/cart.tic"
rom ( name "Circb Demo Lua.tic" size "3719" md5 "462d4fbbdedb6af3ae2309d8cb310d64" crc 2cf476f6 )
)
game (
name "Circb Demo Moon"
description "shows how to use 'circb'"
homepage "https://tic.computer/play?cart=47"
developer "Filippo"
download "https://tic.computer/cart/4f36115b8459613961ba9bbdf20bce2c/cart.tic"
rom ( name "Circb Demo Moon.tic" size "3709" md5 "ba64f6b5933b8310073abe25879579bd" crc 406990bb )
)
game (
name "Circle Animation Demo"
description "The amazing animation!!"
homepage "https://tic.computer/play?cart=811"
developer "Master nama"
download "https://tic.computer/cart/2c815219c336d690d70559ea4c588319/cart.tic"
rom ( name "Circle Animation Demo.tic" size "12325" md5 "2c815219c336d690d70559ea4c588319" crc 9bc099ce )
)
game (
name "City Building Similuator"
description "Build a city"
homepage "https://tic.computer/play?cart=687"
developer "Anssi Uistola, Topias Syri"
download "https://tic.computer/cart/b73868535bd94025923500ff74b6a3d3/cart.tic"
rom ( name "City Building Similuator.tic" size "61144" md5 "b73868535bd94025923500ff74b6a3d3" crc 8dfe77b7 )
)
game (
name "Clicker"
description "myGame"
homepage "https://tic.computer/play?cart=691"
developer "Kirill"
download "https://tic.computer/cart/85d954fc415dee21b58c8382fd1037e7/cart.tic"
rom ( name "Clicker.tic" size "10661" md5 "85d954fc415dee21b58c8382fd1037e7" crc b5d82325 )
)
game (
name "Clingy"
description "A Demo for menu/setting screens"
homepage "https://tic.computer/play?cart=253"
developer "Bear Thorne"
download "https://tic.computer/cart/f1fdf5df1c558af703b42886a183c08f/cart.tic"
rom ( name "Clingy.tic" size "18039" md5 "f1fdf5df1c558af703b42886a183c08f" crc 22e8ddf3 )
)
game (
name "Cls Demo Lua"
description "shows how to use 'cls'"
homepage "https://tic.computer/play?cart=18"
developer "Filippo"
download "https://tic.computer/cart/3610f467a80cc327bc479a4db3158156/cart.tic"
rom ( name "Cls Demo Lua.tic" size "1255" md5 "19f04113af2c068b12eff0fa50fc5ef7" crc c67915a2 )
)
game (
name "Cls Demo Moon"
description "shows how to use 'cls'"
homepage "https://tic.computer/play?cart=48"
developer "Filippo"
download "https://tic.computer/cart/d5c4ca72902ad75ef2b33eab62142b19/cart.tic"
rom ( name "Cls Demo Moon.tic" size "1243" md5 "020e6165de7b5e02a594efb02a0c76fc" crc d8125a80 )
)
game (
name "Code Wars 80"
homepage "https://tic.computer/play?cart=924"
developer "Volfik"
download "https://tic.computer/cart/3647714fb1239df60c115dda7f4f6b37/cart.tic"
rom ( name "Code Wars 80.tic" size "12348" md5 "3647714fb1239df60c115dda7f4f6b37" crc 8e8559d1 )
)
game (
name "Code Wars 80 L S"
homepage "https://tic.computer/play?cart=925"
developer "Volfik"
download "https://tic.computer/cart/74f01dcf5bf37a52bc522f9afcf40468/cart.tic"
rom ( name "Code Wars 80 L S.tic" size "13551" md5 "74f01dcf5bf37a52bc522f9afcf40468" crc 88d8abc9 )
)
game (
name "Coin Grab"
description "Grab the coin before the cpu does"
homepage "https://tic.computer/play?cart=247"
developer "Bear Thorne"
download "https://tic.computer/cart/b489c684055f0f438936e9068f8cecd2/cart.tic"
rom ( name "Coin Grab.tic" size "9436" md5 "b489c684055f0f438936e9068f8cecd2" crc e8d53c78 )
)
game (
name "Collision Sample"
description "a quick port from Pico8 to Tic80 of"
homepage "https://tic.computer/play?cart=438"
developer "Zep ( with mods by MonstersGoBoom )"
download "https://tic.computer/cart/4adc2e2b48d3c6791bf668855f157c08/cart.tic"
rom ( name "Collision Sample.tic" size "11167" md5 "4adc2e2b48d3c6791bf668855f157c08" crc a069f35b )
)
game (
name "Color Fight"