-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
2788 lines (2788 loc) · 135 KB
/
data.json
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
{
"site": {
"title": "Louisville Makes Games!",
"subtitle": "subtitle",
"description": "description",
"google-analytics-id": "",
"pages": [
{
"name": "Home",
"file": "index.html",
"showInNav": true
},
{
"name": "Local Game Harvest",
"file": "local-game-harvest.html",
"showInNav": true
},
{
"name": "Blog",
"file": "blog.html",
"showInNav": true
},
{
"name": "Games",
"file": "games.html",
"showInNav": true
},
{
"name": "Warpzone",
"file": "warpzone.html",
"showInNav": true
},
{
"name": "Resources",
"file": "resources.html",
"showInNav": true
},
{
"name": "Education",
"file": "education.html",
"showInNav": false
},
{
"name": "Code of Conduct",
"file": "code-of-conduct.html",
"showInNav": true
},
{
"name": "Donate",
"file": "donate.html",
"showInNav": true
},
{
"name": "History",
"file": "history.html",
"showInNav": false
},
{
"name": "Press",
"file": "press.html",
"showInNav": false
},
{
"name": "Contact",
"file": "contact.html",
"showInNav": false
},
{
"name": "Press",
"file": "press.html",
"showInNav": true
},
{
"name": "Store",
"url": "https://louisvillemakesgames.printify.me",
"showInNav": true,
"param": "target=\"_blank\"",
"file": "https://louisvillemakesgames.printify.me"
}
]
},
"index": {},
"local-game-harvest": {
"lgh": [
{
"developer": "Super8BitRafa",
"name": "Nun with a Gun",
"from": "Lexington Kentucky"
},
{
"Timestamp": "10/7/2024 21:13:29",
"Email Address": "[email protected]",
"developer": "Super8BitRafa",
"Your Discord user ID (optional)": "Super8bitrafa",
"name": "Fablelight",
"Brief description of your game": "A hand-animated single player 2D fighting game fantasy adventure with a twist. This fairytale-inspired fighter reinvents classic fables with an emphasis on single player content.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "A laptop with two controllers",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "Two controllers and a laptop. The exe will be on the desktop. The controllers are Bluetooth",
"from": "Lexington Kentucky",
"Controller": "y"
},
{
"developer": "oldflowerGames",
"name": "Emblems: Sunless Vow",
"Brief description of your game": "Escape the void, and take back stolen memories, in a turn-based roguelite RPG that’s also a visual novel.",
"from": "Lexington KY"
},
{
"Timestamp": "10/8/2024 18:30:20",
"Email Address": "[email protected]",
"developer": "Vael Mattingly",
"Your Discord user ID (optional)": "vaelisgay",
"name": "Peach Boi",
"Brief description of your game": "Twin stick action platformer",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Laptop, monitor, keyboard, mouse, controller",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "Launch from executable/steam/godot. Hit new game. To reset hit escape, exit to menu, and hit new gamr",
"from": "Lexington Ky",
"Controller": "y"
},
{
"Timestamp": "10/10/2024 10:15:59",
"Email Address": "[email protected]",
"developer": "Red River Games",
"Your Discord user ID (optional)": "davisjc22",
"name": "Raven",
"Brief description of your game": "Go to your happy place with Raven: A relaxing, trick-taking card game. Embrace the serene atmosphere while trumping your opponents.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Keyboard and mouse (gameplay is actually just mouse though). I'll try to bring my own Table, monitor, etc. but a projector would be excellent if available.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1VxjCCmBXQ39hUF4KzHz4BQSC-PCMEfteG_9tB2jgwzc/edit?usp=sharing",
"from": "Lexington, Kentucky",
"Controller": "n"
},
{
"developer": "Super Soul",
"name": "Kentucky Dash",
"Brief description of your game": "Kentucky Dash is a multiplayer autorunning platformer set in scenic Kentucky. Featuring both competitive and cooperative play, Kentucky Dash supports up to 4 local players as you jump and dash your way around the countryside.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "40+ inch TV or projector with arcade pedestal for the four players. Can also be played with four Xbox controllers.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1oWDqxpoezOV5s9UC6aE3mAgL1Nq04KlcUaWHB3IDjbM/edit?usp=sharing",
"from": "Lexington, KY",
"Controller": "y"
},
{
"Timestamp": "10/15/2024 9:44:09",
"Email Address": "[email protected]",
"developer": "Red River Games",
"Your Discord user ID (optional)": "davisjc22",
"name": "Cozy Heights",
"Brief description of your game": "A cozy, casual tower building sandbox. Build your tower to attract cute visitors!",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I’m bringing a laptop to play the game on. It has USB input and HDMI.\nI’ll also provide a keyboard and mouse. For speakers, there are USB ports and a headphone jack. I'll show this at the same booth as my other game submission, Raven.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/19UQv65TvFODs1gR7f95fXh-IO5mnwL5kkhuC8GDa2Q8/edit?usp=sharing",
"from": "Lexington, KY",
"Controller": ""
},
{
"Timestamp": "10/15/2024 17:23:54",
"Email Address": "[email protected]",
"developer": "Michael Probst and Collin Harris",
"Your Discord user ID (optional)": "michaelwave",
"name": "The Magic Bookstore",
"Brief description of your game": "A cozy bookshop management game with adventure, story, and magic!",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I unfortunately have no spare equipment, so I would need to borrow: a computer with at least 4GB ram, and a dedicated GPU (onboard CPU graphics tend to have poor performance with my game), a TV/monitor (size is not important, but preferred in a 16:9 ratio), speakers, and a gamepad controller. More details in the document on the next answer.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "The game should be fairly easy to run. Run \"Magic Bookstore.exe\" and the rest should be smooth sailing! There is no in-game way to quit the game, so having a keyboard handy to alt-tab out is recommended. There is a reset timer so if left unattended, it will go back to the title screen which. You may also use this to your advantage to restart the game if there is an issue. More details on known issues and specification in the following document:\n\nhttps://docs.google.com/document/d/1-67tsj8FP-E3u0zRNGY1Kc7wSSn61jVaQTUmaYNcfG8/edit?usp=sharing\n\nUnfortunately, I will not be able to attend this event.",
"from": "Lexington, KY",
"Controller": ""
},
{
"Timestamp": "10/17/2024 17:38:54",
"Email Address": "[email protected]",
"developer": "Nick Modarelli",
"Your Discord user ID (optional)": "Nick M",
"name": "Fruit Swarm",
"Brief description of your game": "Fast paced puzzle game in which you line up 3 or more of the same fruit to score them. Score longer lines and get a bigger multiplier. If the board fills up with fruit you lose.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "It can run with just keyboard controls but I think it's best with an Xbox controller. Native x-input support for up to 4 players. It will be a Windows .exe, just click and play.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "I'll try to think about it but the only thing I can think would be that if you'd like to restart the game, you can press F4.",
"from": "Lexington, KY",
"Controller": "y"
},
{
"Timestamp": "10/18/2024 17:45:59",
"Email Address": "[email protected]",
"developer": "Bill Adams",
"Your Discord user ID (optional)": "Jryvn",
"name": "Fragile Panic",
"Brief description of your game": "Action Puzzle",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I will provide hardware: monitor and arcade stick.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "TBD",
"from": "Lexington, KY 40504, USA",
"Controller": ""
},
{
"Timestamp": "10/18/2024 22:07:40",
"Email Address": "[email protected]",
"developer": "Scott Nalley",
"Your Discord user ID (optional)": ".xanthus",
"name": "Pumpkin Rogue",
"Brief description of your game": "A roguelike in which you advance through randomly generated levels in a nightmare realm to escape! Utilize the destructible environment, items, and various abilities that you learn to best your foes and survive.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Arcade Cabinet",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/e/2PACX-1vSOiCRPMKAB9vn01mNOKIu9kdSBfFIYxyEOMbhz0PguVqvSOySWET9b8QTxHblbX6f4pF10t16j1LFF/pub",
"from": "Louisville Kentucky",
"Controller": ""
},
{
"Timestamp": "10/2/2024 21:26:43",
"Email Address": "[email protected]",
"developer": "Jake Jackman",
"Your Discord user ID (optional)": "MetaJ92",
"name": "Alablaster",
"Brief description of your game": "A Marble/Monkey like with 4 levels to explores. Beat your best time by collecting all the gems! Don't forget the unorthodox physics!",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "You can just throw it on a laptop or PC. It only uses a keyboard.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1mhBaA8uE9A6c5JPJGtSkAkHhIrFp9qMT4QmiOKLY4vI/edit?usp=sharing",
"from": "Louisville KY",
"Controller": "n"
},
{
"Timestamp": "10/17/2024 8:54:09",
"Email Address": "[email protected]",
"developer": "Kurt Taylor",
"Your Discord user ID (optional)": "kurttaylor",
"name": "Nib, The Pen is Mightier as a Sword",
"Brief description of your game": "Side scrolling fighting platformer made with all pen and ink assets.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I have a laptop and controller.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "The game will be an executable on the laptop's desktop",
"from": "Louisville Ky",
"Controller": ""
},
{
"Timestamp": "10/3/2024 15:46:53",
"Email Address": "[email protected]",
"developer": "Jonah Segree",
"Your Discord user ID (optional)": 668335851851481100,
"name": "Fatal Fortune",
"Brief description of your game": "Play a deadly game of cards against a sinister fortune teller who knows your future.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "The game uses touch controls, I plan to use one of the touch monitors in the space by hooking my Mac laptop to it using HDMI.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1pidbOMK6guIWOGXAv42U5M-IKitxsIgoUYfFVnl_RcM/edit?usp=sharing",
"from": "Louisville, Kentucky",
"Controller": "n"
},
{
"Timestamp": "9/29/2024 16:46:58",
"Email Address": "[email protected]",
"developer": "Carsten Kurtz",
"Your Discord user ID (optional)": "c2sjk",
"name": "To Clean The Mountain",
"Brief description of your game": "To Clean The Mountain is a platformer where you traverse a mountainous environment by flinging yourself with a trash bag. Enjoy the open environment without guardrails as you persevere towards the summit.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Most likely a pc with both a keyboard and mouse as well as a remote. We should not need to borrow any equipment.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1pQ7lv5XMfAkaztsuDYm3GCoDLePwumJbtrzPlK_J_c0/edit?usp=sharing",
"from": "Louisville, Kentucky",
"Controller": "y"
},
{
"Timestamp": "10/2/2024 22:12:16",
"Email Address": "[email protected]",
"developer": "Alex Garbus",
"Your Discord user ID (optional)": "alexgarbus",
"name": "Flewberry",
"Brief description of your game": "2D arcade platformer & pet-sim hybrid. Help a virtual pet collect items on a procedurally-generated stage that it can then use to increase its stats and customization options.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Requires a Windows device with keyboard & mouse.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/15MdMVOOUb-fWoXhw6yfPixJ85ZuM9m2XO4Gcxn-LBtA/edit#heading=h.vl0rllg2cuxu",
"from": "Louisville, KY",
"Controller": "n"
},
{
"Timestamp": "10/2/2024 22:14:22",
"Email Address": "[email protected]",
"developer": "Alex Garbus",
"Your Discord user ID (optional)": "alexgarbus",
"name": "The Bunnies of Vegetaria",
"Brief description of your game": "A simple turn-based RPG. Defeat hordes of enemies to level up and progress through 5 areas.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Requires a Windows, Mac, or Linux device with keyboard & mouse",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/15MdMVOOUb-fWoXhw6yfPixJ85ZuM9m2XO4Gcxn-LBtA/edit#heading=h.3ke45blqfdh",
"from": "Louisville, KY",
"Controller": "n"
},
{
"Timestamp": "10/3/2024 14:52:45",
"Email Address": "[email protected]",
"developer": "Matthew Fahy",
"Your Discord user ID (optional)": "iron135",
"name": "Tail Trail",
"Brief description of your game": "Race Down the Path and Collect Gems to get your next highest score!",
"Describe your gSuper Bug Bash and it is by Aaron Jacob Goodwine and fufroom (Alex Bezuska)ame hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Monitor/Computer/Keyboard/Mouse",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "Game is self running and resetting.",
"from": "Louisville, KY",
"Controller": "n"
},
{
"Timestamp": "10/2/2024 22:08:01",
"Email Address": "[email protected]",
"developer": "Alex Garbus",
"Your Discord user ID (optional)": "alexgarbus",
"name": "Eyes of Enigma",
"Brief description of your game": "2D pixel art platformer. The demo will consist of an introduction level and 4 main levels that can be played in any order.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Game can run on any Windows device. A device with a dedicated graphics card or AMD integrated graphics would be preferred. Vsync needs to be forced on to avoid screen tearing, and I cannot do this on my Intel UHD laptop.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/15MdMVOOUb-fWoXhw6yfPixJ85ZuM9m2XO4Gcxn-LBtA/edit#heading=h.p7gzda4eqjqo",
"from": "Louisville, KY",
"Controller": "y"
},
{
"Timestamp": "10/2/2024 22:17:33",
"Email Address": "[email protected]",
"developer": "Alex Garbus",
"Your Discord user ID (optional)": "alexgarbus",
"name": "The Explors: Pyramid Explorers",
"Brief description of your game": "2D top-down arcade game. Explore procedurally-generated dungeons, dodging enemies and collecting as many gems as possible. Supports 1-2 players.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Requires a Windows or Mac device. Can be controlled with either keyboard & mouse or controller.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/15MdMVOOUb-fWoXhw6yfPixJ85ZuM9m2XO4Gcxn-LBtA/edit#heading=h.vtos1oltvlxy",
"from": "Louisville, KY",
"Controller": "y"
},
{
"Timestamp": "10/17/2024 8:55:29",
"Email Address": "[email protected]",
"developer": "Kurt Taylor",
"Your Discord user ID (optional)": "kurttaylor",
"name": "Privateers",
"Brief description of your game": "Top down actiony RPG where you manage a crew of pirates",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I have a laptop and controller. There will be a need for a display.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "It will be an executable on the desktop of the PC",
"from": "Louisville, Ky",
"Controller": ""
},
{
"Timestamp": "10/17/2024 21:43:03",
"Email Address": "[email protected]",
"developer": "Kalyn Smith",
"Your Discord user ID (optional)": "RKSmith",
"name": "Delivery Quest",
"Brief description of your game": "A retro point & click adventure in the style of mid 80s Sierra games, where you play as a pizza delivery person who's been double crossed by an action movie villain.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "A flat wooden painted standee of a full scale vintage computer with a 4:3 screen built in and an old ball mouse for controls in front of it, the keyboard and speakers will be hidden behind it. Also I might need to borrow the speakers.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "It should just be an executable on the desktop, and it mainly uses mouse controls, so no real special setup is required.\n\nIn case of emergency, press ESC to pause and click on \"restart demo\". If it crashes, return to desktop through either the task manager or a power button hard reboot, and there should be an icon to re-start the game.",
"from": "Louisville, KY",
"Controller": ""
},
{
"Timestamp": "10/18/2024 18:00:28",
"Email Address": "[email protected]",
"developer": "Robbie Cooper",
"Your Discord user ID (optional)": "robocoop",
"name": "Punkin Chunkin",
"Brief description of your game": "Launch pumpkins with catapults. (Who is this description for?)",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Unknown. Needs at least 4 directional inputs (either analog or digital) and another button to fire. Already supports keyboard/gamepad/mouse/touch. I don't have a computer I can count on using at the event. Just needs to be able to run Godot.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1vbn8gi3xzaFM0aBo7Wg89uBSd72Arw_gR1rV37X574Q/edit?usp=sharing",
"from": "Louisville, KY",
"Controller": ""
},
{
"Your Discord user ID (optional)": "fufroom (Alex Bezuska)",
"name": "Hardcore Cottagecore",
"Brief description of your game": "mushrooms",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "mushcab",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "mushcab",
"from": "New Albany, IN",
"Controller": "y"
},
{
"Timestamp": "10/3/2024 14:24:01",
"Email Address": "[email protected]",
"developer": "fufroom (Alex Bezuska), Eric lathrop, Jake Mercer",
"Your Discord user ID (optional)": "fufroom (Alex Bezuska)",
"name": "Kick Bot",
"Brief description of your game": "wall jumpin",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "projector, computer under table, controller on table",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "",
"from": "New Albany, IN",
"Controller": "y"
},
{
"Timestamp": "10/1/2024 9:46:35",
"Email Address": "[email protected]",
"developer": "Zae Gaskins",
"Your Discord user ID (optional)": "Zexiona",
"name": "MycoMatch",
"Brief description of your game": "A simple match two card game meant to see how fast you can match mushrooms together!",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "I should be able to bring a TV but I will need a laptop with access to internet most likely",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/1uRzg2CVO1qAgf17nP0kVWJE-iUy2blJYVe_9s-kHha4/edit?usp=drivesdk",
"from": "Owingsville, KY",
"Controller": "n"
},
{
"Timestamp": "9/28/2024 13:04:09",
"Email Address": "[email protected]",
"developer": "Aaron Jacob Goodwine",
"Your Discord user ID (optional)": "",
"name": "The Feather of Ma'at",
"Brief description of your game": "An precision platformer, in which the player's task is to retrieve the stolen The Feather of Ma'at by scaling a tower Built to house it. The Feather is what is weighed against the heart and soul of humans on the \"Scale\" of justice.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Browser based with a USB controller. I can set up on my laptop. Also a secondary gba with flash-cart.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "At most refreshing the browser may be all thats required.",
"from": "Shelbyville ky",
"Controller": "y"
},
{
"Timestamp": "9/19/2024 17:43:15",
"Email Address": "[email protected]",
"developer": "M.E.A.T.S",
"Your Discord user ID (optional)": "_bronana",
"name": "Psycho Coded✨",
"Brief description of your game": "Working with people is hard... but luckily, you're working with game devs! Psycho Coded✨is an indie management simulator about making your dream indie title with the dismembered parts of other game developers.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Understood. I will try to bring two computers and I would appreciate space for that. I can handle any hardware needs.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "",
"from": "Georgetown, IN",
"Controller": "n"
},
{
"Timestamp": "9/24/2024 18:47:06",
"Email Address": "[email protected]",
"developer": "Glenn Essex",
"Your Discord user ID (optional)": "Glenn Essex",
"name": "A Day at the Snail Races",
"Brief description of your game": "Bet on a snail race and win big!",
"from": "Louisville, KY",
"Controller": "n"
},
{
"Timestamp": "9/20/2024 18:55:55",
"Email Address": "[email protected]",
"developer": "Ben James",
"Your Discord user ID (optional)": "Ben James Games",
"name": "Finding your Way",
"Brief description of your game": "Abstract puzzle platformer",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "Yes, TV controller",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "",
"from": "Louisville, KY",
"Controller": "y"
},
{
"Timestamp": "9/20/2024 22:37:44",
"Email Address": "[email protected]",
"developer": "Mommy's Best Games",
"Your Discord user ID (optional)": "mommysbestgames",
"name": "ChainStaff",
"Brief description of your game": "Run n gun with a transforming grappling hook.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "It is a laptop with a controller connected to it. Possibly also a TV with an HDMI cord.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "",
"from": "",
"Controller": "y"
},
{
"developer": "Bad Taste Games",
"name": "Baddle Arena",
"Brief description of your game": "A hate letter to jrpgs: Baddle Arena is a turn based boss rush rogue-like made to run on original GameBoy hardware.",
"from": "Louisville, KY"
},
{
"developer": "R25th",
"name": "The Two Skelefriends",
"Brief description of your game": "",
"from": "Lexington, KY"
},
{
"developer": "R25th",
"name": "The Altar of Progress",
"Brief description of your game": "",
"from": "Lexington, KY"
},
{
"developer": "Bad Taste Games",
"name": "don't be alone",
"Brief description of your game": "",
"from": "Louisville, KY"
},
{
"Timestamp": "9/25/2024 21:06:06",
"Email Address": "[email protected]",
"developer": "Digital Hollow Interactive, LLC (Scott Nalley)",
"Your Discord user ID (optional)": ".xanthus",
"name": "Hover Tank Arcade",
"Brief description of your game": "Pilot a tank with advanced mobility in this action arcade game! Aim for the high score as you navigate various obstacles and shoot down the enemy tanks and choppers.",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "My Arcade Cabinet! Set up on a standard table for accessibility, with chairs for players.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to an external document would be best so that we can easily print the document. Thanks!": "https://docs.google.com/document/d/18sF_Bz-wvOcqdeWyTaJdoiGja0tx1FhO3I9Gyie2kMM/pub",
"from": "Louisville, KY",
"Controller": "y"
},
{
"Timestamp": "10/18/2024 23:12:22",
"Email Address": "[email protected]",
"developer": "Digital Hollow Interactive, LLC (Scott Nalley)scott",
"Your Discord user ID (optional)": ".xanthus",
"name": "Alchemy",
"Brief description of your game": "(WIP / I'll update) Brew potions with a wave of your hand!",
"Describe your game hardware setup here. Also specify if you need to borrow any equipment or supplies.\n\nWe will try to display every game on at least a 30\" monitor with external speakers or a TV, so if you have one, bring it! If not, don't worry, we will work to get your setup to look the best it can!": "An LED light stand on the ground, and LED cauldrons sitting on a small table, connected to a controller /sensor box unit. I'll need to use one of the small tables I brought to the Warp Zone.",
"Even if you plan to be there, please link to a document that describes setup instructions for your game as well as instructions for handling any resets, crashes, hardware quirks, or presentation criteria. It doesn't have to be exact and set in stone. We will work with you on setting up, testing, and troubleshooting as needed.\n\nA link to aSuper Bug Bash and it is by Aaron Jacob Goodwine and fufroom (Alex Bezuska)n external document would be best so that we can easily print the document. Thanks!": "(TBD). Any issues should be resolved by power cycling using the power strip.",
"from": "Louisville Kentucky",
"Controller": ""
},
{
"name": "Super Bug Bash",
"developer": "Aaron Jacob Goodwine, fufroom (Alex Bezuska), and Colton Ramos"
}
]
},
"blog": [
{
"title": "Into the World of Video Game Creation: My Presentation at the Bon Air Library",
"blogID": "bon-air-talk",
"author": "Alex Bezuska",
"date": "2023-05-22",
"featured": true,
"blurb": "On May 21st, I had the awesome opportunity to present at the Bon Air Library in Louisville, Kentucky representing Louisville Makes Games. The topic was one that I am truly passionate about: how to get started making video games. The audience consisted mainly of enthusiastic teens, accompanied by some equally curious parents. Together, we had an open discussion about how video games are made.",
"contentParagraphs": [
"I kicked off the session by asking everyone to share their favorite video games and asked if they knew who created those games, many mentioned the names of game companies or publishers but I dug deeper to try to get folks to consider the individual people who create games either on small 1-2 person indie teams, or on large 3000 person teams like for Red Dead Redemption 2.",
"To demystify the process of making video games, I highlighted the various disciplines involved, extending beyond programming to encompass art, music, storytelling, sound design, and much more. The goal was to showcase the collaborative nature of game development and to inspire participants to explore the diverse array of skills required to bring their own game ideas to life.",
"Next we talked about tools such as game engines, and explained that each game engine is a tool box for making games and each includes a different number of tools, some smaller ones might be quicker to learn and get started while others might have a larger set of tools and be more capable once you take the time to learn a bunch of them.",
"I talked about how a major factor in making games is time, and putting in the effort to learn and teach yourself rather than try to use shortcuts. I mentioned the popular topic of AI like ChatGPT and how it can be a useful tool, but if you ask it to create code for your game without having at least a basic understanding of programming you will have a difficult time solving issues when AI gets things wrong. Like any tool, it can be useful to help but it is not a “do-it-all” solution.",
"The presentation at the Bon Air Library marked the first in our series of meetups organized as a partnership with Louisville Makes Games and the Louisville Free Public Library. The warm reception from the audience made it evident that this initiative would foster a vibrant community of aspiring game developers in Louisville. I am grateful to have played a part in sparking curiosity and igniting a passion for game creation among the attendees.",
"If you're interested in joining us for these gatherings and staying updated on all our free public events, be sure to join our group on meetup.com/louisvillemakesgames for email updates!"
],
"cta": "View the full presentation slides here",
"ctaLink": "https://docs.google.com/presentation/d/10jE5Bs7kQ80-MGy0YTqB0VsHvh82gQe3GIQ5K-BwG7g/edit?usp=sharing",
"image": "/img/bon-air-library.png",
"imageCaptionStrong": "Alex Bezuska giving a presentaion at Bon Air Library",
"imageCaptionSub": "Louisville, Kentucky"
},
{
"title": "Locally Made Games at Louisville Arcade Expo!",
"blogID": "lax-lmg-2023-announcement",
"author": "Alex Bezuska",
"date": "2023-02-20",
"blurb": "The Louisville Arcade Expo (LAX) is just around the corner, and we at Louisville Makes Games couldn't be more excited to be a part of it! This year's event is taking place from Friday, March 10 to Sunday, March 12, 2023, and it promises to be a fantastic showcase of retro gaming and local game development talent.",
"contentParagraphs": [
"One of the main draws of the Louisville Arcade Expo is the chance to play retro arcade, console, and computer games. Whether you're a die-hard fan of classic games like Pac-Man and Space Invaders, or you're more interested in retro PC games like Doom and Quake played on a LAN, there's something for everyone at this event.",
"But the fun doesn't stop there - Louisville Makes Games and other local game developers will be there too, showing off our latest game projects and giving attendees a chance to play them before they're released. It's a great opportunity to see what kind of creative talent is brewing right here in Kentucky, and to get a glimpse of what the future of gaming might look like.",
"Of course, attending the Louisville Arcade Expo isn't free - but it's definitely worth the price of admission. A weekend pass will set you back $65, while day rates range from $20 to $35 depending on which day you attend. Kids under 10 get in for free, so it's a great way to introduce your little ones to the world of retro gaming and game development.",
"We can't wait to see you at the Louisville Arcade Expo! Whether you're a die-hard gamer or you're just curious about the local game development scene, this event is not to be missed. See you there!"
],
"cta": "Get your tickets for LAX!",
"ctaLink": "https://www.louisvillearcade.com/",
"image": "/img/louisville-arcade-expo-2023-promo.jpg",
"imageCaptionStrong": "Locally-made indie games",
"imageCaptionSub": "available for all ages to try out at LAX"
},
{
"title": "Why Licenses Matter",
"author": "Alex Bezuska",
"date": "2023-02-19",
"contentParagraphs": [
"When creating a game project, it can be tempting to use assets found online as a shortcut to creating original content. However, it is important to pay attention to the license associated with each asset to ensure that it can be used appropriately.",
"Understanding Creative Commons Zero and Other Licenses",
"Creative Commons Zero (CC0) is a public domain license that allows for free use of an asset without attribution. However, most other licenses do require some form of attribution, which means giving credit to the original artist for their work. The MIT license is one example of a license that requires attribution. Game developers should also be wary of \"viral\" licenses like the GPL v3, which requires that any derivative works also be released under the GPL v3 license.",
"Giving Credit to Artists",
"When using other people's work in game projects, it's important to make sure that the artist receives proper credit. This can be done through including the artist's name in the game credits or on the game's page on a jam site, for example. Some licenses may also require a link back to the originaly work or the creator's website.",
"TL;DR:",
"Use Creative Commons or MIT licensed assets, be wary of GPL, and credit the artist."
],
"ctaLink": "",
"image": "/img/Jason-Thompson---Local-Louisville-composer.jpg",
"imageCaptionStrong": "Jason Thompson, Local Louisville composer",
"imageCaptionSub": "Photo by David R. Lutman, Courier Journal, Aug 4 2019"
}
],
"games": [
{
"Timestamp": "",
"show": true,
"name": "Bloom",
"engine": "Unity",
"creator": "Paige Maxwell, Kambria Anderson",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/5/2023",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2023/02/209154/title-image2_0.png?itok=lKV7h7Uu×tamp=1675642103",
"link": "https://globalgamejam.org/2023/games/bloom-1",
"pitch": "Build the root system of a growing tree to provide it with more nutrients as it grows. By selecting, building, and upgrading roots, players must strategically manage their nutrient resources to make the tree thrive and bloom.",
"email": "",
"jam": "Global Game Jam 2023",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Infinty Ring",
"engine": "Unity",
"creator": "Ben James",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/5/2023",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2023/02/100597/cap1.png?itok=ttD8j4rG×tamp=1675722829",
"link": "https://globalgamejam.org/2023/games/infinity-ring-4",
"pitch": "Craft magic rings with gems to find the Mighty Orb. Explore levels, find chests and stairs, and use bonfires to level up and heal. ",
"email": "",
"jam": "Global Game Jam 2023",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Brain Bandits",
"engine": "Unity",
"creator": "Allen-Michael Brower, Josh Grilli",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/5/2023",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2023/02/785768/2023-02-05_21_29_00.png?itok=Lu3EXvtP×tamp=1675651141",
"link": "https://globalgamejam.org/2023/games/brain-bandits-0",
"pitch": "Brain Bandits is a game where players act as cybernetic hackers, infiltrating the minds of the rich to steal valuable data while racing against agents on their trail in a dystopian world. Players must use their hacking skills to outwit their pursuers and complete their mission.",
"email": "",
"jam": "Global Game Jam 2023",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Mysterious Potato Dungeon",
"engine": "Godot",
"creator": "Alex Garbus",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/5/2023",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2023/02/209111/screenshot_4.png?itok=i40-N38a×tamp=1675651078",
"link": "https://globalgamejam.org/2023/games/mysterious-potato-dungeon-0",
"pitch": "Welcome to the Buggo world! In this short game inspired by a certain monster dungeon-crawler, you are transformed into a Buggo and must explore the mysterious dungeon inside the World-Ending Potato to discover who you are and why you're here. What does fate have in store for you? Only one way to find out!",
"email": "",
"jam": "Global Game Jam 2023",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Knot Gate",
"engine": "PuzzleScript",
"creator": "Jonah Segree - galactical",
"started": "November 2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "12/11/2022",
"image": "https://img.itch.zone/aW1nLzEwNTMzOTkwLnBuZw==/315x250%23c/HrQ6%2BN.png",
"link": "https://galactical.itch.io/knot-gate",
"pitch": "Build a circuit by tying wire into knots",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Curse of Eternity",
"engine": "",
"creator": "Imakeda Games",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$19.99",
"released": "12/1/2022",
"image": "/img/curse-of-eternity.jpg",
"link": "https://store.steampowered.com/app/1230000/Curse_of_Eternity/",
"pitch": "A hardcore Action RPG with diverse combat and feats-based multiclassing. Start as one of three hero builds and either continue to specialize, or branch out and make your build your own. Slice, shoot, and zap your way through a dystopian world and fulfill your own deific journey.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "The Boneyard",
"engine": "LÖVE",
"creator": "Jonah Segree - galactical",
"started": "2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$3.00",
"released": "10/28/2022",
"image": "/img/games/the-boneyard.png",
"link": "https://galactical.itch.io/the-boneyard",
"pitch": "A Halloween themed domino deck-builder roguelike. Connect dominoes on the board to attack skeletons, and possess your dominoes with ghostly spirits that provide unique strategic abilities. There are over a dozen unique upgrades, with various synergies waiting to be found.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Subleq( )",
"engine": "Last Call BBS",
"creator": "Jonah Segree - galactical",
"started": "July 2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "7/29/2022",
"image": "https://img.itch.zone/aW1nLzk2NDQ1MDYucG5n/315x250%23c/NzbsCI.png",
"link": "https://galactical.itch.io/subleq",
"pitch": "A programming puzzle game with only one operation: subleq()",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Four Elements 🥵🤢🥶😵",
"engine": "PICO-8",
"creator": "Jonah Segree - galactical",
"started": "3/5/2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "5/14/2022",
"image": "https://img.itch.zone/aW1nLzgzNTAwNDcucG5n/315x250%23c/RCdBL%2B.png",
"link": "https://galactical.itch.io/four-elements",
"pitch": "A roguelike dungeon crawler about elemental type advantage",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Little Ninja",
"engine": "",
"creator": "Adam Stankiewicz",
"started": "2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$0.99",
"released": "4/15/2022",
"image": "/img/games/little-ninja.jpg",
"link": "https://store.steampowered.com/app/1923730/Little_Ninja/",
"pitch": "You are a young 8 year old boy named Liam, you recently got a ninja mask for a birthday present! You must protect the house from evil doers! You must be sneaky, and make sure to not get caught!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "The Necrobotanist",
"engine": "Godot",
"creator": "Robbie Cooper, cdrch, Kaleb Allen, John Ink",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "1/30/2022",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2022/01/341876/ggjthumbnail.png?itok=EYC4aiMG×tamp=1643579905",
"link": "https://globalgamejam.org/2022/games/necrobotanist-3",
"pitch": "As the Necrobotanist, commanding the duality of life and death, raise both plants and the dead to overcome platforming challenges.You've been dying to win the State Fair, or at least your creations have been. But first you have to get there. Raise the dead, then command them to fertilize your plants.",
"email": "",
"jam": "Global Game Jam 2022",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Flip The Page",
"engine": "PICO-8",
"creator": "Jonah Segree - galactical",
"started": "1/23/2022",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "1/25/2022",
"image": "https://img.itch.zone/aW1nLzc5NTM2MTAucG5n/315x250%23c/zI88DF.png",
"link": "https://galactical.itch.io/flip-the-page",
"pitch": "A puzzler where every page has two sides!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Cadō",
"engine": "",
"creator": "Glenn Essex",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "10/25/2021",
"image": "/img/games/cado.png",
"link": "https://shinyogre.itch.io/cado",
"pitch": "A game about throwing lifeless bodies off of a cliff.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Plague Doctor: Contagion 430 BCE–2020 AD",
"engine": "",
"creator": "Actors Theatre of Louisville, Two Scoop Games",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$2.99",
"released": "10/15/2021",
"image": "/img/games/plague-doctor.jpg",
"link": "https://store.steampowered.com/app/1450640/Plague_Doctor_Contagion_430_BCE2020_AD",
"pitch": "Athens, 430 BCE. Marseille, 1720. Philadelphia, 1918. Louisville, 2020. Explore four cities—each battling a deadly epidemic—and make choices that will save or cost the lives of countless people. A first-person narrative adventure about greed, compassion, and courage in times of crisis.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Jeebo & Jerbo vs. Life",
"engine": "Unity",
"creator": "StegTech",
"started": "2018",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$19.99",
"released": "10/1/2021",
"image": "/img/games/jeebo-and-jerbo-vs-life.jpg",
"link": "https://store.steampowered.com/app/1751110/Jeebo__Jerbo_vs_Life/",
"pitch": "A 2D Metroidvania crossed with an old school JRPG. Collect new party members for use in turn based battles and for additional overworld movement abilities to access new areas of the map! Take on an oppressive society with this bizarre satirical adventure!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "CONNECTORZ",
"engine": "PICO-8",
"creator": "Jonah Segree - galactical",
"started": "6/13/2023",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "6/13/2021",
"image": "https://img.itch.zone/aW1nLzYyMDE4MDUucG5n/315x250%23c/ALUc6b.png",
"link": "https://galactical.itch.io/connectorz",
"pitch": "A platformer about joining blocks together",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "At the Hedges of Time",
"engine": "PuzzleScript",
"creator": "Jonah Segree - galactical",
"started": "April 2021",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "5/21/2021",
"image": "https://img.itch.zone/aW1nLzYwMDUyMTUucG5n/315x250%23c/tahlgh.png",
"link": "https://galactical.itch.io/at-the-hedges-of-time",
"pitch": "A time-traveling puzzle game set in an interconnected world",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "HEAVY CHOCOLATE",
"engine": "",
"creator": "Glenn Essex",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/28/2021",
"image": "/img/games/heavy-chocolate.png",
"link": "https://shinyogre.itch.io/heavy-chocolate",
"pitch": "A customizable chocolate bar that is very heavy.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "The Hunger: Games Ensemble",
"engine": "",
"creator": "Spacetronaut",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$3.99",
"released": "11/3/2020",
"image": "/img/the-hunger-games-ensamble.jpg",
"link": "https://store.steampowered.com/app/1097820/The_Hunger_Games_Ensemble/",
"pitch": "A Collection Of Hilarious VR Games!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Nocturne No. 1",
"engine": "",
"creator": "Glenn Essex",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "10/25/2020",
"image": "https://img.itch.zone/aW1nLzQ0NzU3OTkuanBn/315x250%23c/WkDgAG.jpg",
"link": "https://shinyogre.itch.io/nocturne-no-1",
"pitch": "A VR night terror",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Spooky.singles",
"engine": "",
"creator": "Two Scoop Games",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "10/23/2020",
"image": "/img/games/spooky-singles.png",
"link": "https://spooky.singles",
"pitch": "The official dating app of the afterlife!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Shoot 1UP DX",
"engine": "",
"creator": "Mommy's Best Games",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "$5.99",
"released": "10/15/2020",
"image": "/img/games/shoot-1up.jpg",
"link": "http://mommysbestgames.com/shoot1up.html",
"pitch": "Why play shoot 'em ups one ship at a time? Launch them all at once! Unleash an entire armada of ships in Shoot 1UP!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Dungeons And Dividends",
"engine": "",
"creator": "Legion Works Games",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "7/31/2020",
"image": "https://img.itch.zone/aW1nLzI5MTEzNjUucG5n/315x250%23c/wUsQ%2Bn.png",
"link": "https://legionworksgames.itch.io/dungeons-and-dividends",
"pitch": "Run a shop and adventure on the side.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Gotta' GetAway",
"engine": "Unity",
"creator": "Roaring Cat Games - Barry Rowe, Loi LeMix",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "5/6/2020",
"image": "https://img.itch.zone/aW1nLzMzMzAwNTkucG5n/315x250%23c/ZWZdde.png",
"link": "https://roaringcatgames.itch.io/gotta-getaway",
"pitch": "Embrace Social Distancing and get yourself as far away as possible.. From everything.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Jazzy Snake",
"engine": "",
"creator": "Glenn Essex",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "5/3/2020",
"image": "/img/games/jazzy-snake.png",
"link": "https://shinyogre.itch.io/jazzy-snake",
"pitch": "Snake with no Stakes.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Sheeple",
"engine": ".net",
"creator": "Tom Nelson, Corey Cooley",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "2/1/2020",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2020/02/269477/homescreensheep.png?itok=OMFs9YZE×tamp=1580683729",
"link": "https://globalgamejam.org/2020/games/sheeple-2",
"pitch": "Sheep have attacked and looking to ruin your documents. Quickly repair them",
"email": "",
"jam": "Global Game Jam 2020",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Ni Koi",
"engine": "Unreal",
"creator": "Steve Clark, Jonny Kuo",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",