-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.json
More file actions
2388 lines (2388 loc) · 106 KB
/
Copy pathgames.json
File metadata and controls
2388 lines (2388 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"last_updated": "2026-09-03T15:45:02.484400",
"total_games": 297,
"platforms": [
"epic-games-store",
"gog",
"steam",
"ubisoft"
],
"games": [
{
"name": "Jackbox Party Pack 4",
"description": "Score The Jackbox Party Pack 4 for free on the Epic Games Store! Enjoy a collection of fun party games perfect for game nights with friends.",
"price": "$24.99 → Free",
"post_date": "2025-12-04 11:03:48",
"link": "https://store.epicgames.com/en-US/p/jackbox-party-pack-4",
"platform": "epic-games-store"
},
{
"name": "The Darkside Detective",
"description": "Become a detective today! Snag The Darkside Detective for free on the Epic Games Store. The Darkside Detective is a 2D point-and-click adventure game where you play as a detective investigating bizarre cases.\r\n\r\n*EDIT: The Darkside Detective (Mobile version) is also available via Epic Games Store App for iPhone, iPad, and Android.",
"price": "$14.99 → Free",
"post_date": "2025-12-04 11:00:24",
"link": "https://store.epicgames.com/en-US/p/the-darkside-detective-02fd5a",
"platform": "epic-games-store"
},
{
"name": "Universe For Sale",
"description": "Explore Jupiter today! Universe For Sale is free this week on Epic Games Store. Universe for Sale is a cool 2D sci-fi hand-drawn adventure game set in Jupiter.\r\n\r\n*EDIT: Universe For Sale (Mobile version) is also available via Epic Games Store App for iPhone, iPad, and Android.",
"price": "$14.99 → Free",
"post_date": "2025-11-27 11:00:29",
"link": "https://store.epicgames.com/en-US/p/universe-for-sale-05c53e",
"platform": "epic-games-store"
},
{
"name": "Warhammer: Vermintide 2",
"description": "Brutal and immersive first-person co-op action experience set in the war-torn fantasy world of Warhammer, featuring intense battles, teamwork, and thrilling adventures.",
"price": "$29.99 → Free",
"post_date": "2025-11-21T19:10:49+00:00",
"link": "https://store.steampowered.com/app/552500/Warhammer_Vermintide_2/",
"platform": "steam"
},
{
"name": "DK Online: Season 4 First Steps Pack",
"description": "Claim your free DK Online: Season 4 First Steps Pack on Steam for a limited time and unlock 1000 Premium Points and 3 Premium Buff Sets (7-day duration).",
"price": "Free",
"post_date": "2025-11-25 08:42:29",
"link": "https://store.steampowered.com/app/4115630/DK_ONLINE__SEASON4_FIRST_STEPS_PACK/",
"platform": "steam"
},
{
"name": "Zoeti",
"description": "Zoeti is free this week on Epic Games Store! Zoeti is a turn-based roguelite that uses a deck of playing cards, where you play card combinations to activate skills. Check it out!",
"price": "$19.99 → Free",
"post_date": "2025-11-20 11:01:42",
"link": "https://store.epicgames.com/en-US/p/zoeti-3ccef9",
"platform": "epic-games-store"
},
{
"name": "Godzilla Voxel Wars",
"description": "Are you a Godzilla fan? Then you can’t miss this giveaway! Epic Games Store is giving away free copies of Godzilla Voxel Wars, a fun turn-based strategy game featuring popular Toho monsters.",
"price": "$14.99 → Free",
"post_date": "2025-11-20 11:00:26",
"link": "https://store.epicgames.com/en-US/p/godzillawars-2c30e4",
"platform": "epic-games-store"
},
{
"name": "Wednesdays",
"description": "It’s the 36th anniversary of the UN’s International Convention on the Rights of the Child, and to celebrate, the developers of Wednesdays are giving the game away for free on Steam.",
"price": "$9.99 → Free",
"post_date": "2025-11-19 16:12:06",
"link": "https://store.steampowered.com/app/2747770/Wednesdays/",
"platform": "steam"
},
{
"name": "Zero Hour",
"description": "Serious Slow-Paced Tactical Shooter Based In Bangladesh",
"price": "$9.99 → Free",
"post_date": "2025-11-13T17:10:13+00:00",
"link": "https://store.epicgames.com/en-US/p/zero-hour-8449a0",
"platform": "epic-games-store"
},
{
"name": "Songs of Silence",
"description": "Turn-based Strategy Meets Real-time Battles, Every Decision Shapes your Kingdom's Fate!",
"price": "$29.99 → Free",
"post_date": "2025-11-13T17:10:13+00:00",
"link": "https://store.epicgames.com/en-US/p/songs-of-silence-778d86",
"platform": "epic-games-store"
},
{
"name": "ScourgeBringer",
"description": "Looking for a Dead Cells-meets-Celeste type of game? Grab ScourgeBringer for free on Epic Games Store. ScourgeBringer is a cool 2d fast-paced rogue-lite platformer from the developers of NeuroVoider.\r\n\r\n*EDIT: ScourgeBringer (Mobile version) is also available via Epic Games Store App for iPhone, iPad, and Android.",
"price": "$16.99 → Free",
"post_date": "2025-11-13 11:03:05",
"link": "https://store.epicgames.com/en-US/p/scourgebringer",
"platform": "epic-games-store"
},
{
"name": "12 is Better Than 6",
"description": "12 is Better Than 6 is free on Steam until November 13! 12 is Better Than 6 is a dynamic top-down shooter with stealth elements. Check it out!",
"price": "$9.99 → Free",
"post_date": "2025-11-10 14:34:33",
"link": "https://store.steampowered.com/app/410110/12_is_Better_Than_6/",
"platform": "steam"
},
{
"name": "Will Glow the Wisp",
"description": "Grab Will Glow the Wisp for free via Steam! Will Glow the Wisp is a fun indie platformer with chill electronic beats!",
"price": "$2.99 → Free",
"post_date": "2025-11-08 21:24:32",
"link": "https://store.steampowered.com/app/640890/Will_Glow_the_Wisp/",
"platform": "steam"
},
{
"name": "Bulb Boy",
"description": "Steam giveaway alert! Bulb Boy is free this weekend on Steam! Bulb Boy is 2D point and click adventure game about a boy with a glowing head. Don´t miss it!",
"price": "$8.99 → Free",
"post_date": "2025-11-07 13:08:06",
"link": "https://store.steampowered.com/app/390290/Bulb_Boy/",
"platform": "steam"
},
{
"name": "OneShift",
"description": "OneShift is free this week on Steam! OneShift is a small indie 3d puzzle platformer where the player has the ability to freeze time and shift through worlds to collect cubes.",
"price": "$4.99 → Free",
"post_date": "2025-11-06 13:13:38",
"link": "https://store.steampowered.com/app/862740/OneShift/",
"platform": "steam"
},
{
"name": "Felix The Reaper",
"description": "Felix The Reaper is free this week on Epic Games Store! Felix The Reaper is a 3D challenging puzzle game about bringing humans into deadly situations. Don´t miss it!",
"price": "$9.99 → Free",
"post_date": "2025-11-06 11:22:17",
"link": "https://store.epicgames.com/en-US/p/felix-the-reaper-3f7e62",
"platform": "epic-games-store"
},
{
"name": "Death Fungeon",
"description": null,
"price": "$2.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/897630/Death_Fungeon/",
"platform": "steam"
},
{
"name": "STASIS",
"description": null,
"price": "$9.99 → Free",
"post_date": null,
"link": "https://www.gog.com/en/game/stasis",
"platform": "gog"
},
{
"name": "Immortals Fenyx Rising",
"description": null,
"price": null,
"post_date": "2025-11-13T17:10:14+00:00",
"link": "https://register.ubisoft.com/ImmortalsFenyxRising_Free/en-US",
"platform": "ubisoft"
},
{
"name": "Five Nights at Freddy's: Into the Pit",
"description": "A new chapter in the popular survival horror series, Five Nights at Freddy’s universe",
"price": "$19.99 → Free",
"post_date": "2025-10-30T16:10:37+00:00",
"link": "https://store.epicgames.com/en-US/p/five-nights-at-freddys-into-the-pit-99c563",
"platform": "epic-games-store"
},
{
"name": "Bendy and the Ink Machine",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/bendy-and-the-ink-machine-60cf5a",
"platform": "epic-games-store"
},
{
"name": "Space Pilgrim Episode III: Delta Pavonis",
"description": null,
"price": "$1.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/439250/Space_Pilgrim_Episode_III_Delta_Pavonis/",
"platform": "steam"
},
{
"name": "911 Operator",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/503560/911_Operator/",
"platform": "steam"
},
{
"name": "Fear the Spotlight",
"description": "A school atmospheric third-person horror adventure with a disturbing mystery to unravel",
"price": "$19.99 → Free",
"post_date": "2025-10-23T16:10:19+00:00",
"link": "https://store.epicgames.com/en-US/p/fear-the-spotlight-97656f",
"platform": "epic-games-store"
},
{
"name": "Distant Space",
"description": null,
"price": "$0.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/569610/Distant_Space/",
"platform": "steam"
},
{
"name": "Amnesia: The Bunker",
"description": "Amnesia: The Bunker Is A First-person Horror Game From The Makers Of SOMA And Amnesia",
"price": "$24.99 → Free",
"post_date": "2025-10-16T16:10:36+00:00",
"link": "https://store.epicgames.com/en-US/p/amnesia-the-bunker-9d5799",
"platform": "epic-games-store"
},
{
"name": "Samorost 3",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/samorost-3-0c4489",
"platform": "epic-games-store"
},
{
"name": "Gravity Circuit",
"description": "2D platformer in the spirit of console classics like Megaman",
"price": "$16.99 → Free",
"post_date": "2025-10-09T16:10:33+00:00",
"link": "https://store.epicgames.com/en-US/p/gravity-circuit-489baa",
"platform": "epic-games-store"
},
{
"name": "Kamaeru: A Frog Refuge",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/kamaeru-0c301e",
"platform": "epic-games-store"
},
{
"name": "Strange Horticulture",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/strange-horticulture-360e80",
"platform": "epic-games-store"
},
{
"name": "Shade Silver",
"description": null,
"price": "$2.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/2905180/Shade_Silver/",
"platform": "steam"
},
{
"name": "Totally Reliable Delivery Service",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/totally-reliable-delivery-service",
"platform": "epic-games-store"
},
{
"name": "Hidden Folks",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/hidden-folks-239d16",
"platform": "epic-games-store"
},
{
"name": "Road Redemption",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/road-redemption-ce16fb",
"platform": "epic-games-store"
},
{
"name": "112 Operator",
"description": null,
"price": "$24.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/112-operator-f34b0b",
"platform": "epic-games-store"
},
{
"name": "Guntouchables",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/2543510/GUNTOUCHABLES/",
"platform": "steam"
},
{
"name": "DRACOMATON",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/2457890/DRACOMATON/",
"platform": "steam"
},
{
"name": "Kitchen Wars",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/2955840/Kitchen_Wars/",
"platform": "steam"
},
{
"name": "Kamaeru",
"description": "Cozy frog collecting game, where you take pictures of frogs, play mini-games and decorate your habitat",
"price": "CA$22.99 → Free",
"post_date": "2025-08-21T16:10:27+00:00",
"link": "https://store.epicgames.com/en-US/p/kamaeru-0c301e",
"platform": "epic-games-store"
},
{
"name": "Keylocker Turn Based Cyberpunk Action",
"description": "Cyberpunk turn-based rhythm JRPG",
"price": "$6.99 → Free",
"post_date": "2025-07-31T15:10:39+00:00",
"link": "https://store.epicgames.com/en-US/p/keylocker-622bcc",
"platform": "epic-games-store"
},
{
"name": "Pilgrims",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/pilgrims-6d250f",
"platform": "epic-games-store"
},
{
"name": "Barro GT",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/1990740/Barro_GT/",
"platform": "steam"
},
{
"name": "Legion TD 2",
"description": null,
"price": "$24.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/legion-td-2-a244b9",
"platform": "epic-games-store"
},
{
"name": "Ultimate Zombie Defense",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/1035510/Ultimate_Zombie_Defense/",
"platform": "steam"
},
{
"name": "Fantasy General II",
"description": "Lead powerful heroes and mighty armies into battle across the world of Aer, a place of great beauty and even greater danger. Guide your forces through a gripping story campaign and decide the fate of a world on the brink of destruction.",
"price": "$39.99 → Free",
"post_date": "2025-07-10T19:10:39+00:00",
"link": "https://store.steampowered.com/app/1025440/Fantasy_General_II/",
"platform": "steam"
},
{
"name": "Caribbean Crashers",
"description": null,
"price": "$1.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/2921380/Caribbean_Crashers/",
"platform": "steam"
},
{
"name": "Field of Glory II: Medieval",
"description": "Turn-based tactical game set in the High Middle Ages from 1040 AD to 1270 AD. Lead your chosen army and its named generals to victory in set-piece historical battles or \"what-if\" custom battle situations against an AI or human opponent.",
"price": "$29.99 → Free",
"post_date": "2025-07-10T19:10:40+00:00",
"link": "https://store.steampowered.com/app/1368870/Field_of_Glory_II_Medieval/",
"platform": "steam"
},
{
"name": "Field of Glory II",
"description": null,
"price": "$29.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/660160/Field_of_Glory_II/",
"platform": "steam"
},
{
"name": "Battlestar Galactica Deadlock",
"description": "3D turn-based space strategy game in which you take command of a colonial space fleet from the 2004 remake of sci-fi series Battlestar Galactica",
"price": "$39.99 → Free",
"post_date": "2025-07-10T19:10:41+00:00",
"link": "https://store.steampowered.com/app/544610/Battlestar_Galactica_Deadlock/",
"platform": "steam"
},
{
"name": "Sid Meier’s Civilization VI: Platinum Edition",
"description": "Interact with your world, expand your empire across the map, advance your culture, and compete against history’s greatest leaders",
"price": "CA$79.99 → Free",
"post_date": "2025-07-17T15:10:41+00:00",
"link": "https://store.epicgames.com/en-US/p/sid-meiers-civilization-vi--platinum-edition",
"platform": "epic-games-store"
},
{
"name": "Sky Racket",
"description": "A game that mixes two classic genres from the arcade era, Shoot’em up and Block Breaker",
"price": "$14.99 → Free",
"post_date": "2025-07-10T16:10:26+00:00",
"link": "https://store.epicgames.com/en-US/p/sky-racket-4cf23a",
"platform": "epic-games-store"
},
{
"name": "Figment 2: Creed Valley",
"description": null,
"price": "$24.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/figment2-creed-valley",
"platform": "epic-games-store"
},
{
"name": "Zomborg",
"description": null,
"price": "$6.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/729720/Zomborg/",
"platform": "steam"
},
{
"name": "Nightingale",
"description": "First-person, PVE, open-world survival crafting game played solo or cooperatively with friends",
"price": "$29.99 → Free",
"post_date": "2025-10-02T15:10:31+00:00",
"link": "https://store.epicgames.com/en-US/p/nightingale",
"platform": "epic-games-store"
},
{
"name": "Train Sim World 6: Free Starter Pack",
"description": null,
"price": "Free",
"post_date": null,
"link": "https://store.steampowered.com/app/3656800/Train_Sim_World_6/",
"platform": "steam"
},
{
"name": "Snake Eyes Dungeon",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/740240/Snake_Eyes_Dungeon/",
"platform": "steam"
},
{
"name": "Eastern Exorcist",
"description": null,
"price": "$17.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/eastern-exorcist-d49923",
"platform": "epic-games-store"
},
{
"name": "Jorel’s Brother and The Most Important Game of the Galaxy",
"description": "Point-and-click adventure about an eight-year-old boy who lives with his eccentric family in the shadow of his handsome and popular brother",
"price": "$14.99 → Free",
"post_date": "2025-09-25T16:10:39+00:00",
"link": "https://store.epicgames.com/en-US/p/jorels-brother-and-the-most-important-game-of-the-galaxy-47435f",
"platform": "epic-games-store"
},
{
"name": "The Deed",
"description": null,
"price": "$0.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/420740/The_Deed/",
"platform": "steam"
},
{
"name": "Cybarian: The Time Travelling Warrior",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/928840/Cybarian_The_Time_Travelling_Warrior/",
"platform": "steam"
},
{
"name": "Project Winter",
"description": "Betray your friends in this 8-person multiplayer game focused on social deception and survival",
"price": "$9.99 → Free",
"post_date": "2025-09-18T16:10:30+00:00",
"link": "https://store.epicgames.com/en-US/p/project-winter-3b9e84",
"platform": "epic-games-store"
},
{
"name": "Samorost 2",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/samorost-2-1b9bb1",
"platform": "epic-games-store"
},
{
"name": "Away",
"description": null,
"price": "$2.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/757910/Away/",
"platform": "steam"
},
{
"name": "Press Any Button",
"description": null,
"price": "$1.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/1448030/Press_Any_Button/",
"platform": "steam"
},
{
"name": "Puzzle Chambers",
"description": null,
"price": "$2.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/740410/Puzzle_Chambers/",
"platform": "steam"
},
{
"name": "The Battle of Polytopia",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/the-battle-of-polytopia-12fed6",
"platform": "epic-games-store"
},
{
"name": "Monument Valley 2",
"description": null,
"price": "$7.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/monument-valley-2-addd02",
"platform": "epic-games-store"
},
{
"name": "Ghostrunner 2",
"description": "Hardcore FPP Slasher in a Post-Apocalyptic Future",
"price": "$39.99 → Free",
"post_date": "2025-09-11T16:10:56+00:00",
"link": "https://store.epicgames.com/en-US/p/ghostrunner-2",
"platform": "epic-games-store"
},
{
"name": "Broilers",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/1562780/Broilers/",
"platform": "steam"
},
{
"name": "Monument Valley",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/monument-valley-1d99d3",
"platform": "epic-games-store"
},
{
"name": "Walking Survival",
"description": null,
"price": "$4.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/3506800/Walking_Survival/",
"platform": "steam"
},
{
"name": "Make Way",
"description": "A Racing Party Game With Crazy Track Builder Options",
"price": "$14.99 → Free",
"post_date": "2025-08-28T15:10:40+00:00",
"link": "https://store.epicgames.com/en-US/p/make-way-bddf5f",
"platform": "epic-games-store"
},
{
"name": "Machinarium",
"description": null,
"price": "$19.99 → Free",
"post_date": null,
"link": "https://store.epicgames.com/en-US/p/machinarium-5e6c71",
"platform": "epic-games-store"
},
{
"name": "Dead In Bermuda",
"description": null,
"price": "$14.99 → Free",
"post_date": null,
"link": "https://store.steampowered.com/app/384310/Dead_In_Bermuda/",
"platform": "steam"
},
{
"name": "The Witcher 3: Wild Hunt Concert",
"description": "Score The Witcher 3: Wild Hunt concert for free on GOG and enjoy 90 minutes of live music performed during the Film Music Festival 2016 in Kraków, Poland.",
"price": "Free",
"post_date": "2026-08-25 17:38:49",
"link": "https://www.gog.com/en/game/video_game_show_the_witcher_3_wild_hunt_concert_2016",
"platform": "gog"
},
{
"name": "Microsoft Flight Simulator Suite: Themes Reimagined",
"description": "Score Microsoft Flight Simulator Suite: Themes Reimagined (Soundrack) for FREE via Steam!",
"price": "$9.99 → Free",
"post_date": "2026-08-24 14:17:57",
"link": "https://store.steampowered.com/app/5004030/Microsoft_Flight_Simulator_Suite_Themes_Reimagined/",
"platform": "steam"
},
{
"name": "Dokimon Quest",
"description": "If you’re a Pokémon fan, you can’t miss this giveaway! Score Dokimon Quest for free via Steam until August 26 and keep it forever in your Steam library! Dokimon Quest is a monster-taming RPG with 140+ Dokimons to capture!\r\n\r\nNote: You must scroll down to the third green button, not the first one.",
"price": "$14.99 → Free",
"post_date": "2026-08-24 13:29:37",
"link": "https://store.steampowered.com/app/2019300/Dokimon_Quest/",
"platform": "steam"
},
{
"name": "Bolmn",
"description": "Score Bolmn for free on the Epic Games Store, an indie 3D action-platformer with a variety of gimmicks.",
"price": "$0.99 → Free",
"post_date": "2026-08-20 11:40:45",
"link": "https://store.epicgames.com/p/bolmn-aa2906",
"platform": "epic-games-store"
},
{
"name": "Cardpocalypse",
"description": "RPG Adventure Which Creatures from A Card Game Comes To Life",
"price": "$24.99 → Free",
"post_date": "2026-08-20T17:10:11+00:00",
"link": "https://store.epicgames.com/p/cardpocalypse",
"platform": "epic-games-store"
},
{
"name": "Grow And Go: Cozy Deliveries",
"description": "Check out this cozy giveaway! Download Grow And Go: Cozy Deliveries for free via Epic Games Store! Grow And Go: Cozy Deliveries is a 3d cozy delivery and farming game.",
"price": "$4.99 → Free",
"post_date": "2026-08-19 19:41:21",
"link": "https://store.epicgames.com/p/grow-and-go-cozy-deliveries-f38c99",
"platform": "epic-games-store"
},
{
"name": "Deponia",
"description": "Deponia is free on Steam until March 16! Deponia is a point-and-click game with a unique comic style and challenging puzzles. Check it out!",
"price": "$29.99 → Free",
"post_date": "2026-03-09 13:16:55",
"link": "https://store.steampowered.com/app/214340/Deponia/",
"platform": "steam"
},
{
"name": "The Assault: Survivor",
"description": "Score The Assault: Survivor for free via Epic Games Store! The Assault: Survivor is an indie action game that takes you into the world of the apocalypse.",
"price": "$4.99 → Free",
"post_date": "2026-03-07 17:35:19",
"link": "https://store.epicgames.com/en-US/p/sleep-45d60e",
"platform": "epic-games-store"
},
{
"name": "Crowalt: Traces of the Lost Colony",
"description": "Crowalt: Traces of the Lost Colony is currently free on Steam until March 9, so now’s the perfect time to add it to your library. Crowalt: Traces of the Lost Colony is an indie point-and-click mystery game with modern-day pixel art graphics.",
"price": "$9.99 → Free",
"post_date": "2026-03-06 13:53:27",
"link": "https://store.steampowered.com/app/1269500/Crowalt_Traces_of_the_Lost_Colony/",
"platform": "steam"
},
{
"name": "Turnip Boy Robs a Bank",
"description": "Turnip Boy is back! This time he’s teamed up with the fearsome Pickled Gang to pull off the weirdest heist of all time",
"price": "$14.99 → Free",
"post_date": "2026-03-05T17:10:18+00:00",
"link": "https://store.epicgames.com/en-US/p/turnip-boy-robs-a-bank-3fae0e",
"platform": "epic-games-store"
},
{
"name": "Oddsparks: An Automation Adventure",
"description": "Explore a strange fantasy world, uncover the mysteries of the past, automate your workshops, and go on adventures with your odd & adorable Sparks in this blend of automation and real time strategy genres.",
"price": "$29.99 → Free",
"post_date": "2026-04-30T17:10:05+00:00",
"link": "https://store.epicgames.com/en-US/p/oddsparks-58440c",
"platform": "epic-games-store"
},
{
"name": "Firestone: Free $100 Bundle",
"description": "Log in to Firestone through Epic Games Store until Thursday May 7 to claim and exclusive bundle.",
"price": "$100.00 → Free",
"post_date": "2026-04-30 11:00:08",
"link": "https://store.epicgames.com/en-US/p/firestone-online-idle-rpg-bfd04b",
"platform": "epic-games-store"
},
{
"name": "Adventures of Robbo",
"description": "Download Adventures of Robbo for free via GOG until May 8! Adventures of Robbo is a 2d Sci-fi puzle game. Check it out!",
"price": "Free",
"post_date": "2026-04-30 10:19:57",
"link": "https://www.gog.com/en/game/adventures_of_robbo",
"platform": "gog"
},
{
"name": "Electro Man",
"description": "Download Electro Man for free via GOG until May 8! Electro Man is a 2d Sci-fi retro arcade game. Check it out!",
"price": "Free",
"post_date": "2026-04-30 10:12:54",
"link": "https://www.gog.com/en/game/electro_man",
"platform": "gog"
},
{
"name": "Heartlight",
"description": "Download Heartlight for free via GOG until May 8! Heartlight is a fun 2d retro arcade game. Check it out!",
"price": "Free",
"post_date": "2026-04-30 10:08:13",
"link": "https://www.gog.com/en/game/heartlight",
"platform": "gog"
},
{
"name": "Robbo",
"description": "Download Robbo for free via GOG until May 8! Robbo is a 2d Sci-fi puzle game. Check it out!",
"price": "Free",
"post_date": "2026-04-30 10:07:27",
"link": "https://www.gog.com/en/game/robbo",
"platform": "gog"
},
{
"name": "Typers Combat",
"description": "You don't need to type to claim this giveaway! Grab Typers Combat for free on the Epic Games Store, and type your way into victory.",
"price": "$5.99 → Free",
"post_date": "2026-04-27 16:56:38",
"link": "https://store.epicgames.com/en-US/p/typers-combat-23ed78",
"platform": "epic-games-store"
},
{
"name": "8AM",
"description": "Score 8AM for free via Steam! \"8AM\" is a 3d first-person suspense game where you find yourself trapped in a room, watching a family through cameras.",
"price": "$3.99 → Free",
"post_date": "2026-04-23 13:08:39",
"link": "https://store.steampowered.com/app/2835590/8AM/",
"platform": "steam"
},
{
"name": "DOOMBLADE",
"description": "Are you looking for a Metroidvania? Grab DOOMBLADE for free on Epic Games Store! DOOMBLADE is a 2D Action Metroidvania with a fast-paced movement-combat system.",
"price": "$15.99 → Free",
"post_date": "2026-04-23 11:02:24",
"link": "https://store.epicgames.com/en-US/p/doomblade-afdf9a",
"platform": "epic-games-store"
},
{
"name": "Nocturnal",
"description": "Time to wield some flames today! Grab Nocturnal for free on Steam until April 36! Nocturnal is a cool 2D action-platformer featuring fire-wielding mechanics. Don´t miss it!",
"price": "$16.99 → Free",
"post_date": "2026-04-23 10:15:19",
"link": "https://store.steampowered.com/app/1634080/Nocturnal/",
"platform": "steam"
},
{
"name": "Aeonic",
"description": "Grab Aeonic for free via Steam until April 29!",
"price": "$3.99 → Free",
"post_date": "2026-04-22 18:01:33",
"link": "https://store.steampowered.com/app/3277530/Aeonic/",
"platform": "steam"
},
{
"name": "SurrounDead Poly Construction",
"description": "Grab SurrounDead Poly Construction for free via Steam! SurrounDead Poly Construction is a 3d open-world adventure game.",
"price": "$5.99 → Free",
"post_date": "2026-04-22 13:17:55",
"link": "https://store.steampowered.com/app/4148570/SurrounDead_Poly_Construction/",
"platform": "steam"
},
{
"name": "The Whispering Valley",
"description": "Who wouldn’t want to explore a remote village? Grab The Whispering Valley for free via GOG, a 3D point-and-click game where you can explore a village and solve complex puzzles.",
"price": "$11.99 → Free",
"post_date": "2026-04-21 09:13:39",
"link": "https://www.gog.com/en/game/the_whispering_valley",
"platform": "gog"
},
{
"name": "Sentience: The Android's Tale",
"description": "Score Sentience: The Android's Tale for free via Steam until April 23! Sentience: The Android's Tale is a 2d adventure game from the creator of The Deed series and the Space Pilgrim saga.",
"price": "$4.99 → Free",
"post_date": "2026-04-20 13:11:39",
"link": "https://store.steampowered.com/app/635850/Sentience_The_Androids_Tale/",
"platform": "steam"
},
{
"name": "Undead Rise of the Betrayed King",
"description": "Download Undead Rise of the Betrayed King for free via Epic Games Store! It’s an action RPG game with realistic visuals.",
"price": "$19.99 → Free",
"post_date": "2026-04-17 07:52:19",
"link": "https://store.epicgames.com/en-US/p/undead-rise-of-the-betrayed-king-4ad94c",
"platform": "epic-games-store"
},
{
"name": "Legend of Keepers",
"description": "Don´t miss this amazing giveaway! Get Legend of Keepers for free via Steam until Apr 23! Legend of Keepers is the perfect mix between Dungeon Defender and Roguelite.",
"price": "$19.99 → Free",
"post_date": "2026-04-16 13:17:04",
"link": "https://store.steampowered.com/app/978520/Legend_of_Keepers_Career_of_a_Dungeon_Manager/",
"platform": "steam"
},
{
"name": "Uncanny Tales: Cold Road",
"description": "Grab Uncanny Tales: Cold Road for free via Steam until April 20! Uncanny Tales is a 3d episodic series where the scariest things aren’t monsters... Check it out!",
"price": "$2.99 → Free",
"post_date": "2026-04-16 13:14:45",
"link": "https://store.steampowered.com/app/3534240/Uncanny_Tales_Cold_Road/",
"platform": "steam"
},
{
"name": "Stickman Killing Zombie",
"description": "Score Stickman Killing Zombie for free on Steam until April 19! Stickman Killing Zombie is a 3d action adventure game with zombies.",
"price": "$2.99 → Free",
"post_date": "2026-04-16 13:12:22",
"link": "https://store.steampowered.com/app/2792610/Stickman_Killing_Zombie/",
"platform": "steam"
},
{
"name": "The Stone of Madness",
"description": "Escape The Monastery in this Real-time Tactical Stealth game set in an 18th-century Spanish Monastery",
"price": "$29.99 → Free",
"post_date": "2026-04-16T16:10:53+00:00",
"link": "https://store.epicgames.com/en-US/p/the-stone-of-madness-7b22f3",
"platform": "epic-games-store"
},
{
"name": "NineHells",
"description": "Download NineHells for free via Steam and keep it forever in your Steam library!",
"price": "$0.99 → Free",
"post_date": "2026-04-15 14:56:11",
"link": "https://store.steampowered.com/app/2860410/NineHells/",
"platform": "steam"
},
{
"name": "LivingForest",
"description": "Grab LivingForest for free on Steam until April 13 and keep it forever in your Steam library!",
"price": "$15.99 → Free",
"post_date": "2026-04-10 13:14:23",
"link": "https://store.steampowered.com/app/3027490/LivingForest/",
"platform": "steam"
},
{
"name": "Prop Sumo",
"description": "Grab your friends, pick your props, and jump into this party fighting game, free this week on the Epic Games Store! Prop Sumo throws everyday objects into chaotic brawl battles, and it’s as fun as it sounds.",
"price": "$9.99 → Free",
"post_date": "2026-04-09 11:00:18",
"link": "https://store.epicgames.com/en-US/p/propsumo-ca8bd7",
"platform": "epic-games-store"
},
{
"name": "Chamber Survival",
"description": "Chamber Survival is free on Steam until April 9! Chamber Survival is a 3d first person survival game.",
"price": "$15.99 → Free",
"post_date": "2026-04-06 14:34:08",
"link": "https://store.steampowered.com/app/2943780/Chamber_Survival/",
"platform": "steam"
},
{
"name": "Evergreen Valley: The Parkour Game",
"description": "Download Evergreen Valley: The Parkour Game for free via Epic Games Store! Evergreen Valley is a 3d parkour adventure game set in a stylized town.",
"price": "$2.99 → Free",
"post_date": "2026-04-05 09:46:24",
"link": "https://store.epicgames.com/en-US/p/evergreen-valley-the-parkour-game-761e7b",
"platform": "epic-games-store"
},
{
"name": "House Flipper",
"description": "Flip your house today! Grab House Flipper for free on Steam until April 6. House Flipper is your chance to become a one-man renovation crew. Don´t miss this game!",
"price": "$24.99 → Free",
"post_date": "2026-04-03 13:58:32",
"link": "https://store.steampowered.com/app/613100/House_Flipper/",
"platform": "steam"
},
{
"name": "Tractor Racers",
"description": "Score Tractor Racers for free via Epic Games Store! Tractor Racers is a 3d single-player racing game where players take control of powerful tractors.",
"price": "$9.99 → Free",
"post_date": "2026-04-02 12:50:49",
"link": "https://store.epicgames.com/en-US/p/tractor-racers-28ca5f",
"platform": "epic-games-store"
},
{
"name": "Clone Drone in the Danger Zone",
"description": "Ready to slice some robots like butter? Grab Clone Drone in the Danger Zone for free on the Epic Games Store! Clone Drone in the Danger Zone is a fun 3d robot voxel fighting game where any part of your robot body can be sliced off.",
"price": "$19.99 → Free",
"post_date": "2026-04-02 11:00:07",
"link": "https://store.epicgames.com/en-US/p/clone-drone-in-the-danger-zone-4daf6e",
"platform": "epic-games-store"
},
{
"name": "TOMAK : Save the Earth Regeneration",
"description": "To celebrate its 25th anniversary, TOMAK : Save the Earth Regeneration is free on Epic Games Store until April 16! Love Story is a 2d simulation game from the Korean developer SEED9.",
"price": "$9.99 → Free",
"post_date": "2026-04-01 20:51:57",
"link": "https://store.epicgames.com/en-US/p/tomak-save-the-earth-regeneration-c1207c",
"platform": "epic-games-store"
},
{
"name": "Depths Of Horror: Mushroom Day",
"description": "Depths Of Horror: Mushroom Day is free on Steam until April 6! Depths Of Horror: Mushroom Day is a 3D first-person survival horror game with unexpected inhabitants and \"surprises\".",
"price": "$4.99 → Free",
"post_date": "2026-04-01 13:20:32",
"link": "https://store.steampowered.com/app/1590840/Depths_Of_Horror_Mushroom_Day/",
"platform": "steam"
},
{
"name": "Dice Eater: A Supernatural Mystery Card Game",
"description": "This is a bit unusual, but it seems that Dice Eater: A Supernatural Mystery Card Game is going free for one day only, so grab it now if you’re interested.",
"price": "$4.99 → Free",
"post_date": "2026-03-31 21:32:36",
"link": "https://store.steampowered.com/app/3360110/Dice_Eater_A_Supernatural_Mystery_Card_Game/",
"platform": "steam"
},
{
"name": "Vornyca",
"description": "Vornyca is free on Epic Games Store until April 4 2026! Vornyca is a Sci-fi action adventure game with 2D exploration. Check it out!",
"price": "$4.99 → Free",
"post_date": "2026-03-31 19:39:52",
"link": "https://store.epicgames.com/en-US/p/vornyca-987482",
"platform": "epic-games-store"
},
{
"name": "Moonlighter",
"description": "Looking for a new Action RPG game? Grab Moonlighter for free via Steam and keep it forever! Moonlighter is a 2d Action RPG with rogue-lite elements and cool pixel graphics.",
"price": "$19.99 → Free",
"post_date": "2026-08-05 14:23:24",
"link": "https://store.steampowered.com/app/606150/Moonlighter/",
"platform": "steam"
},
{
"name": "Project First Contact",
"description": "Download Project First Contact for free on the Epic Games Store! Project First Contact is a 3d first-person survival game set in various locations on Earth, including Area 51.",
"price": "$1.99 → Free",
"post_date": "2026-08-03 18:14:16",
"link": "https://store.epicgames.com/p/project-first-contact-ff7fdc",
"platform": "epic-games-store"
},
{
"name": "Sol Cesto",
"description": "Choose a hero, upgrade them using cursed teeth and magical items, and descend to the bottom of an ever-changing dungeon",
"price": "$13.99 → Free",
"post_date": "2026-07-30T16:10:24+00:00",
"link": "https://store.epicgames.com/p/sol-cesto-e9b803",
"platform": "epic-games-store"
},
{
"name": "OTXO",
"description": "Looking for a game like Hotline Miami? You're in luck, OTXO is free on the Epic Games Store this week. If you enjoy top-down action with brutal combat, it's definitely worth claiming.",
"price": "$14.99 → Free",
"post_date": "2026-07-30 11:01:00",
"link": "https://store.epicgames.com/p/otxo-396b8b",
"platform": "epic-games-store"
},
{
"name": "Yet Another Zombie Defense HD",
"description": "Fight zombies today! Grab Yet Another Zombie Defense HD for free on Steam until until July 30 and keep it forever in your Steam library! Yet Another Zombie Defense HD is a 3d top-down zombie shooter with tower defense elements and online co-op. Don´t miss it!",
"price": "$3.99 → Free",
"post_date": "2026-07-23 13:15:30",
"link": "https://store.steampowered.com/app/674750/Yet_Another_Zombie_Defense_HD/",
"platform": "steam"
},
{
"name": "Foretales",
"description": "Save the world... with this card game! Grab it for free on the Epic Games Store until July 30. Foretales is a unique story-driven card game with a multitude of playstyles. Check it out! This game is also available on the Epic Games Store App for iPhone, iPad, and Android.",
"price": "$19.99 → Free",
"post_date": "2026-07-23 11:00:15",
"link": "https://store.epicgames.com/p/foretales-d6c5bd",
"platform": "epic-games-store"
},
{
"name": "The Life and Suffering of Sir Brante",
"description": "Looking for a new Steam game? Score The Life and Suffering of Sir Brante for free via Steam until July 23! The Life and Suffering of Sir Brante is a 2d narrative-driven RPG game with an interesting art style. Check it out.",
"price": "$19.99 → Free",
"post_date": "2026-07-17 13:26:16",
"link": "https://store.steampowered.com/app/1272160/The_Life_and_Suffering_of_Sir_Brante/",
"platform": "steam"
},
{
"name": "Echo Generation: Midnight Edition",
"description": "90s styled! Lead a gang of kids to uncover spooky mysteries, battle creatures, and explore the supernatural side of your hometown",
"price": "$24.99 → Free",
"post_date": "2026-07-16T16:10:30+00:00",
"link": "https://store.epicgames.com/p/echo-generation-midnight-edition-069026",
"platform": "epic-games-store"
},
{
"name": "Luto",
"description": "A psychological horror experience where you take on the role of someone unable to leave their home",
"price": "$19.99 → Free",
"post_date": "2026-07-16T16:10:29+00:00",
"link": "https://store.epicgames.com/p/luto-0a4ab3",