-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-old.json
2535 lines (2535 loc) · 96.8 KB
/
data-old.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": [
{
"name": "Psycho Coded✨",
"developer": "Isabellie Konty",
"description": "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.",
"image": "psycho-coded.gif"
},
{
"name": "Finding your way",
"developer": "Ben James",
"description": "Abstract puzzle platformer.",
"image": "finding your way.gif"
},
{
"name": "ChainStaff",
"developer": "Nathan Fouts",
"description": "Run n gun with a transforming grappling hook.",
"image": "ChainStaff.gif"
},
{
"name": "A Day at the Snail Races",
"developer": "Glenn Essex",
"description": "Bet on a snail race and win big!",
"image": "A Day at the Snail Races.gif"
},
{
"name": "Baddle Arena",
"developer": "Justin Moore",
"description": "A hate letter to JRPGs: Baddle Arena is a turn-based boss rush rogue-like made to run on original GameBoy hardware.",
"image": "Baddle Arena.gif"
},
{
"name": "Hover Tank Arcade",
"developer": "Scott Nalley",
"description": "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.",
"image": "Hover Tank Arcade.gif"
},
{
"name": "The Feather of Ma'at",
"developer": "Aaron Goodwine",
"description": "A precision platformer in which the player's task is to retrieve the stolen Feather of Ma'at by scaling a tower built to house it.",
"image": "Tower of Maat.gif"
},
{
"name": "To Clean The Mountain",
"developer": "Carsten Kurtz",
"description": "To Clean The Mountain is a platformer where you traverse a mountainous environment by flinging yourself with a trash bag.",
"image": "To Clean The Mountain.gif"
},
{
"name": "MycoMatch",
"developer": "Zae Gaskins",
"description": "A simple match-two card game meant to see how fast you can match mushrooms together!",
"image": "Myco Match.gif"
},
{
"name": "Alablaster",
"developer": "Jake Jackman",
"description": "A Marble/Monkey-like with 4 levels to explore. Beat your best time by collecting all the gems! Don't forget the unorthodox physics!",
"image": "Alabaster.gif"
},
{
"name": "Eyes of Enigma",
"developer": "Alex Garbus",
"description": "2D pixel art platformer. The demo will consist of an introduction level and 4 main levels that can be played in any order.",
"image": "Eyes of Enigma.gif"
},
{
"name": "Flewberry",
"developer": "Alex Garbus",
"description": "2D arcade platformer & pet-sim hybrid. Help a virtual pet collect items on a procedurally generated stage.",
"image": "Flewberry.gif"
},
{
"name": "The Bunnies of Vegetaria",
"developer": "Alex Garbus",
"description": "A simple turn-based RPG. Defeat hordes of enemies to level up and progress through 5 areas.",
"image": "The Bunnies of Vegetaria.gif"
},
{
"name": "The Explors: Pyramid Explorers",
"developer": "Alex Garbus",
"description": "2D top-down arcade game. Explore procedurally generated dungeons, dodging enemies and collecting as many gems as possible.",
"image": "The Explors.gif"
},
{
"name": "Hardcore Cottagecore",
"developer": "Alex Bezuska",
"description": "Mushroom-themed action and exploration.",
"image": "Hardcore Cottagecore.gif"
},
{
"name": "Tail Trail",
"developer": "Matthew Fahy",
"description": "Race down the path and collect gems to get your next highest score!",
"image": "Tail Trail.gif"
},
{
"name": "Emblems: Sunless Vow",
"developer": "Ikiru",
"description": "Escape the void and take back stolen memories in this turn-based roguelite RPG that's also a visual novel.",
"image": "Emblems.gif"
},
{
"name": "Fatal Fortune",
"developer": "Jonah Segree",
"description": "Play a deadly game of cards against a sinister fortune teller who knows your future.",
"image": "Fatal Fortune.gif"
},
{
"name": "Fablelight",
"developer": "J. Rafael Estrada",
"description": "A hand-animated single player 2D fighting game fantasy adventure with a twist.",
"image": "Fablelight.gif"
},
{
"name": "Peach Boi",
"developer": "Vael Mattingly",
"description": "Twin stick action platformer.",
"image": "peachboi.gif"
},
{
"name": "Raven",
"developer": "Connor Davis",
"description": "A relaxing, trick-taking card game. Embrace the serene atmosphere while trumping your opponents.",
"image": "Raven.gif"
},
{
"name": "Kick Bot",
"developer": "Alex Bezuska",
"description": "Wall jumping action game.",
"image": "Kick Bot.gif"
},
{
"name": "Privateers",
"developer": "New Developer",
"description": "New pirate-themed strategy game.",
"image": "Privateers.gif"
},
{
"name": "Pumpkin Rogue",
"developer": "New Developer",
"description": "Rogue-like game set in a spooky pumpkin world.",
"image": "Pumpkin Rogue.gif"
},
{
"name": "Punkin Chunkin",
"developer": "New Developer",
"description": "A fun catapult game featuring pumpkins!",
"image": "Punkin Chunkin.gif"
}
]
},
"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",
"released": "2/1/2020",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2020/02/179211/nikoititle_0.jpg?itok=GSRzINVX×tamp=1580674908",
"link": "https://globalgamejam.org/2020/games/ni-koi-4",
"pitch": "A twin stick infinite runner where you control 4 koi fish. Collect prayers to heal the broken spirits of this world.",
"email": "",
"jam": "Global Game Jam 2020",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Hotwired Vengeance",
"engine": "Godot",
"creator": "Paige Maxwell, Josh MacLachlan",
"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/209154/featuredimage.png?itok=2pinzQYk×tamp=1580683022",
"link": "https://globalgamejam.org/2020/games/hotwire-vengeance-6",
"pitch": "You play as a disgruntled repair man trying to fix robots in a factory by disabling them before they attack you with the knives they found.",
"email": "",
"jam": "Global Game Jam 2020",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Uh-Oh Fido!",
"engine": "GameMaker",
"creator": "Addison Corcoran, Angela Edwards, Nicholas Rechenberg, Ben Rowe",
"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/289917/fido.png?itok=Nt2kuMu7×tamp=1580686852",
"link": "https://globalgamejam.org/2020/games/uh-oh-fido-1",
"pitch": "After losing your beloved dog of fourteen years, you have been granted access to secret technology to fix that which you have lost, using mundane household objects. Gather objects from around your house to assemble the all new Uh-Oh Fido!",
"email": "",
"jam": "Global Game Jam 2020",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Depth",
"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/31/2019",
"image": "https://img.itch.zone/aW1hZ2UvMTMwMDc4LzU5NzU5Ni5wbmc=/315x250%23c/FqoOci.png",
"link": "https://shinyogre.itch.io/depth",
"pitch": "A submarine diving game made for the Bacon Game Jam",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Tyler Presents: Mischief Night Enhanced Edition",
"engine": "",
"creator": "Spacetronaut",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "10/30/2019",
"image": "/img/games/mischief-night.png",
"link": "https://spacetronaut.itch.io/mischief-night",
"pitch": "The day before Halloween is a day that lives in infamy in Tyler's neighborhood. The invites are sent out, the children hyped up on sugar, and all manner of ghouls and goblins are ready for Tyler's Test of Strength. Every kid and their parent is out roaming the streets tonight, ready to prove their strength and fight for the chance to go one on one with the strongest wizard in the neighborhood, Tyler! Do you got what it takes to beat all the other trick or treaters and face Tyler himself?",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Flotation",
"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/27/2019",
"image": "https://img.itch.zone/aW1nLzI0MTk3MzkuanBn/315x250%23c/Cv8ewM.jpg",
"link": "https://shinyogre.itch.io/flotation",
"pitch": "Everything is transient.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "monad",
"engine": "Love2d",
"creator": "Glenn Essex",
"started": "2018",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "8/19/2019",
"image": "/img/games/monad - Glenn Essex.png",
"link": "https://shinyogre.itch.io/monad",
"pitch": "A meditative experience meant for solitary contemplation in a dark, quiet room with surround sound or headphones.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Three Doors",
"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": "7/29/2019",
"image": "https://img.itch.zone/aW1nLzIzNzQ2NTEucG5n/315x250%23c/Q%2Fmdsb.png",
"link": "https://shinyogre.itch.io/three-doors",
"pitch": "Walk through the door. A LÖVE game.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Carkour!",
"engine": "Unity",
"creator": "Roaring Cat Games - Barry Rowe, Loi LeMix",
"started": "",
"complete": "Still in progress, Demo available",
"price": "$1.00",
"released": "6/19/2019",
"image": "https://img.itch.zone/aW1hZ2UvMTU3MzMwLzEzNzc5MTIucG5n/347x500/v%2FSxuT.png",
"link": "https://roaringcatgames.itch.io/carkour",
"pitch": "Free Form Puzzles! Wonky Physics! Unnecessary Colors!",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Plums",
"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": "6/15/2019",
"image": "https://img.itch.zone/aW1nLzIyMDEzNTYucG5n/315x250%23c/%2FPeg1s.png",
"link": "https://shinyogre.itch.io/plums",
"pitch": "2019 flickgame16 jam entries",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "You're Here Now...",
"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/1/2019",
"image": "/img/games/you-are-here-now.png",
"link": "https://shinyogre.itch.io/youre-here-now",
"pitch": "in this place...do you belong?",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Plant Party",
"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": "4/25/2019",
"image": "/img/games/plant-party.png",
"link": "https://shinyogre.itch.io/plant-party",
"pitch": "Push a potted plant around.",
"email": "",
"jam": "",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Laundromatic: Get the Funk Out",
"engine": "",
"creator": "Kurt Taylor, Daniel Waddell",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "3/4/2019",
"image": "https://img.itch.zone/aW1nLzE5MDg1MDYuanBn/347x500/LBEcQI.jpg",
"link": "https://kurtataylor.itch.io/laundromatic",
"pitch": "Extra Credits Game Jam entry",
"email": "",
"jam": "Extra Credits Game Jam #3",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "pengegg",
"engine": "Unity",
"creator": "kaisielizen, Jacob Jury, Jamie Lewis ",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "1/27/2019",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2019/01/246567/screen_shot_2019-01-28_at_6.33.44_am.png?itok=T4VlKadR×tamp=1548676236",
"link": "https://globalgamejam.org/2019/games/pengegg",
"pitch": "Home to us is were our loved ones came home to and where safety is important and something that we actively pursue",
"email": "",
"jam": "Global Game Jam 2019",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Elysium",
"engine": "Unity",
"creator": "Paige Maxwell, composer.jason, LegionWorks_Lina ",
"started": "",
"complete": "Yes, it's done, and I can link you to where to buy or play it now!",
"price": "Free",
"released": "1/27/2019",
"image": "https://ggj.s3.amazonaws.com/styles/game_sidebar__wide/featured_image/2019/01/209154/screen_shot_2019-01-27_at_6.10.32_pm.png?itok=Wlr1yLaa×tamp=1548630928",
"link": "https://globalgamejam.org/2019/games/elysium",
"pitch": "Elysium: A state of perfect happiness.This is a game about coming to terms with something and forgiving someone that's made your house feel less like a home.",
"email": "",
"jam": "Global Game Jam 2019",
"wip": null
},
{
"Timestamp": "",
"show": true,
"name": "Communism Crate",
"engine": "Unity",
"creator": "Ben James",
"started": "",