-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
1427 lines (1346 loc) · 73.1 KB
/
script.js
File metadata and controls
1427 lines (1346 loc) · 73.1 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
// Game Data
const gameData = [
{
"id": 1,
"title": "Grand Theft Auto V | GTA V",
"description": "Explore the massive open world of Los Santos and Blaine County with three playable characters: Michael, Franklin, and Trevor. Engage in heists and chaos in this critically acclaimed action game.",
"genres": ["action", "sandbox", "open-world"],
"parts": 22,
"multi-combact":false,
"requirements": {
"cpu": "Intel Core 2 Quad Q6600 or AMD Phenom 9850",
"ram": "4 GB RAM",
"gpu": "NVIDIA 9800 GT 1 GB or AMD HD 4870 1 GB",
"storage": "72 GB available space"
},
"images": [
"https://assetsio.gnwcdn.com/eurogamer-zjp1vx.jpg?width=1200&height=1200&fit=bounds&quality=70&format=jpg&auto=webp",
"https://appnation4d.home.blog/wp-content/uploads/2019/04/gta-v-pc-game-free-download-full.jpg",
"https://i.ytimg.com/vi/d74REG039Dk/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/525709/GTA+V+-+ATOM+GUY+EDITION.part01.rar?hash=AgADdh",
"https://linksshortner.xyz/525706/GTA+V+-+ATOM+GUY+EDITION.part02.rar?hash=AgADjx",
"https://linksshortner.xyz/525700/GTA+V+-+ATOM+GUY+EDITION.part03.rar?hash=AgADkR",
"https://linksshortner.xyz/525696/GTA+V+-+ATOM+GUY+EDITION.part04.rar?hash=AgADkx",
"https://linksshortner.xyz/525698/GTA+V+-+ATOM+GUY+EDITION.part05.rar?hash=AgADlR",
"https://linksshortner.xyz/525702/GTA+V+-+ATOM+GUY+EDITION.part06.rar?hash=AgADlx",
"https://linksshortner.xyz/525704/GTA+V+-+ATOM+GUY+EDITION.part07.rar?hash=AgADmB",
"https://linksshortner.xyz/525707/GTA+V+-+ATOM+GUY+EDITION.part08.rar?hash=AgADmh",
"https://linksshortner.xyz/525707/GTA+V+-+ATOM+GUY+EDITION.part08.rar?hash=AgADmh",
"https://linksshortner.xyz/525708/GTA+V+-+ATOM+GUY+EDITION.part09.rar?hash=AgADmx",
"https://linksshortner.xyz/525712/GTA+V+-+ATOM+GUY+EDITION.part10.rar?hash=AgADnB",
"https://linksshortner.xyz/525716/GTA+V+-+ATOM+GUY+EDITION.part11.rar?hash=AgADnh",
"https://linksshortner.xyz/525717/GTA+V+-+ATOM+GUY+EDITION.part12.rar?hash=AgADnx",
"https://linksshortner.xyz/525718/GTA+V+-+ATOM+GUY+EDITION.part13.rar?hash=AgADoB",
"https://linksshortner.xyz/525719/GTA+V+-+ATOM+GUY+EDITION.part14.rar?hash=AgADoR",
"https://linksshortner.xyz/525724/GTA+V+-+ATOM+GUY+EDITION.part15.rar?hash=AgADox",
"https://linksshortner.xyz/525725/GTA+V+-+ATOM+GUY+EDITION.part16.rar?hash=AgADpB",
"https://linksshortner.xyz/525726/GTA+V+-+ATOM+GUY+EDITION.part17.rar?hash=AgADqR",
"https://linksshortner.xyz/525726/GTA+V+-+ATOM+GUY+EDITION.part17.rar?hash=AgADqR",
"https://linksshortner.xyz/525728/GTA+V+-+ATOM+GUY+EDITION.part18.rar?hash=AgADqh",
"https://linksshortner.xyz/525729/GTA+V+-+ATOM+GUY+EDITION.part19.rar?hash=AgADrx",
"https://linksshortner.xyz/525734/GTA+V+-+ATOM+GUY+EDITION.part20.rar?hash=AgADtx",
"https://linksshortner.xyz/525735/GTA+V+-+ATOM+GUY+EDITION.part21.rar?hash=AgADuh",
"https://linksshortner.xyz/525737/GTA+V+-+ATOM+GUY+EDITION.part22.rar?hash=AgADvx"
],
"tgLink": "https://t.me/atomguygta5"
},
{
"id": 2,
"title": "Grand Theft Auto: San Andreas | GTA San Andreas",
"description": "Join Carl \" CJ\" Johnson as he returns to Grove Street to restore his family and gang while navigating the sprawling state of San Andreas.",
"genres": ["action", "sandbox", "open-world"],
"category": "Action",
"parts": 2,
"multi-combact":true,
"requirements": {
"cpu": "1 GHz Intel Pentium III or AMD Athlon",
"ram": "256 MB RAM",
"gpu": "64 MB Direct3D Video Card",
"storage": "4.7 GB available space"
},
"images": [
"https://static.promediateknologi.id/crop/0x0:0x0/0x0/webp/photo/p3/132/2024/11/10/Cara-Mudah-dan-Lengkap-Download-GTA-San-Andreas-Mod-APK-Mod-Hello-Gratis-Bahasa-Indonesia-di-HP-Android-dengan-Aman-2165756163.jpg",
"https://user-images.githubusercontent.com/4572452/62012796-0db44800-b18b-11e9-9606-3a97ad6bd455.jpg",
"https://i.ytimg.com/vi/xJ-1ve1vynA/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLBzpsqr02sgpTx6RrcTNYqGj27LNw"
],
"downloadLinks": [
"https://linksshortner.xyz/525692/LQ+GTA+SA+ATOM+GUY.rar?hash=AgAD_x",
"https://linksshortner.xyz/525749/GTA+SA+ANDROID+ATOM+GUY+EDITION.zip?hash=AgAD8Q"
],
"tgLink": "https://t.me/atomguygg"
},
{
"id": 3,
"title": "Grand Theft Auto IV | GTA IV",
"description": "Experience Niko Bellic's story as he arrives in Liberty City to pursue the American Dream while dealing with his criminal past.",
"genres": ["action", "sandbox", "open-world"],
"parts": 7,
"multi-combact":false,
"requirements": {
"cpu": "Intel Core 2 Duo 1.8 GHz or AMD Athlon X2 64 2.4 GHz",
"ram": "1.5 GB RAM",
"gpu": "256 MB NVIDIA 7900+ or 256 MB ATI X1900+",
"storage": "16 GB available space"
},
"images": [
"https://i.ytimg.com/vi/KaUadE80R6E/maxresdefault.jpg",
"https://i.ytimg.com/vi/3STIbmjWXRI/maxresdefault.jpg",
"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5NXQM-9tObVPMXw8oWnk-rhW8BVunl7LxhWBZJ_hu0iHx0zUpt8O4DehKWEQ5xs4bqEdVhzrnnIWeOdlxDg2qf63wXON2ve0tUP4skXxgrZCBV52WJyWXsfp62p3qkx83bpc7zQMyyTQ/s1600/GTA4_city.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/527902/GTA+IV+-+ATOM+GUY+EDITION.part01.rar?hash=AgADZh",
"https://linksshortner.xyz/527913/GTA+IV+-+ATOM+GUY+EDITION.part02.rar?hash=AgADbB",
"https://linksshortner.xyz/527912/GTA+IV+-+ATOM+GUY+EDITION.part03.rar?hash=AgADbh",
"https://linksshortner.xyz/527906/GTA+IV+-+ATOM+GUY+EDITION.part04.rar?hash=AgADcx",
"https://linksshortner.xyz/527904/GTA+IV+-+ATOM+GUY+EDITION.part05.rar?hash=AgADdh",
"https://linksshortner.xyz/527908/GTA+IV+-+ATOM+GUY+EDITION.part06.rar?hash=AgADeB",
"https://linksshortner.xyz/527910/GTA+IV+-+ATOM+GUY+EDITION.part07.rar?hash=AgADih"
],
"tgLink": "https://t.me/atomguygta4"
},
{
"id": 4,
"title": "Grand Theft Auto: Vice City | GTA Vice City",
"description": "Explore the vibrant streets of Vice City in the 1980s. Experience the rise of Tommy Vercetti as he builds his criminal empire in this neon-lit open-world game.",
"genres": ["action", "sandbox", "open-world"],
"multi-combact":true,
"parts": 2,
"requirements": {
"cpu": "800 MHz Intel Pentium III or AMD Athlon",
"ram": "128 MB RAM",
"gpu": "32 MB Direct3D Video Card",
"storage": "915 MB available space"
},
"images": [
"https://jeux.ca/wp-content/uploads/2024/05/GTA-Vice-City-featured.jpg",
"https://i.ytimg.com/vi/I_z1RVX_YA4/maxresdefault.jpg",
"https://i.ytimg.com/vi/LB1gs3ORDGU/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/525690/LQ+GTA+VC+ATOM+GUY.rar?hash=AgADCR",
"https://linksshortner.xyz/525747/GTA+VC+ANDROID+ATOM+GUY+EDITION.zip?hash=AgADtR"
],
"tgLink": "https://t.me/atomguygg"
},
{
"id": 23,
"title": "Grand Theft Auto: Vice City Nextgen Edition | GTA VC",
"description": "Experience the classic open-world crime saga of Tommy Vercetti in a fully remastered next-gen edition with improved graphics, modernized gameplay, and enhanced lighting.",
"genres": ["action", "sandbox", "crime"],
"category": "Action",
"parts": 4,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core i3-6100 / AMD FX-6300",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 1050 / AMD Radeon RX 560",
"storage": "15 GB available space"
},
"images": [
"https://preview.redd.it/gta-vice-city-next-gen-was-officially-shut-down-v0-b1eonzhgpwge1.jpeg?auto=webp&s=43ac74cabcd31a1343f5b76a4bc9e37ea591e0f2",
"https://www.dsogaming.com/wp-content/uploads/2024/01/Grand-Theft-Auto-Vice-City-NextGen-Mod.jpg",
"https://preview.redd.it/new-released-mod-gta-vice-city-nextgen-edition-v0-mvfqo6vq15fe1.png?width=1920&format=png&auto=webp&s=d7f7c50af9c9ad36030182f035260593b871e7f7"
],
"downloadLinks": [
"https://store.rockstargames.com/game/buy-grand-theft-auto-vice-city-the-definitive-edition",
"https://www.gog.com/game/grand_theft_auto_vice_city"
],
"tgLink": "https://telegram.me/+I3_4ye95buk4Y2U9"
},
{
"id": 24,
"title": "Grand Theft Auto: Vice City Deluxe Edition | GTA VC",
"description": "An enhanced modded edition of GTA Vice City, featuring upgraded vehicles, improved textures, realistic lighting, and additional missions to elevate the classic experience.",
"genres": ["action", "sandbox", "crime", "modded"],
"category": "Action",
"parts": 1,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core 2 Duo 2.4 GHz / AMD Athlon X2 2.8 GHz",
"ram": "4 GB RAM",
"gpu": "NVIDIA GeForce 9800 GT / AMD Radeon HD 4870",
"storage": "10 GB available space"
},
"images": [
"https://i.ytimg.com/vi/uM2qFf_ZaWI/maxresdefault.jpg",
"https://i.ytimg.com/vi/WHG_6S-S5yY/maxresdefault.jpg",
"https://i.ytimg.com/vi/Q4QYTUJl8rY/maxresdefault.jpg"
],
"downloadLinks": [
"https://www.moddb.com/mods/vice-city-deluxe/downloads",
"https://www.gtainside.com/en/vicecity/mods/vice-city-deluxe"
],
"tgLink": "https://sharemods.com/9tqwtcy6ltg5/GTA_VC_DELUX_-_ATOM_GUY.rar.html"
},
{
"id": 5,
"title": "Grand Theft Auto III | GTA III",
"description": "Step into Liberty City, a gritty metropolis filled with crime and chaos. Follow Claude's journey in this open-world action-adventure game that revolutionized 3D gameplay.",
"genres": ["action", "sandbox", "open-world"],
"multi-combact":false,
"parts": 1,
"requirements": {
"cpu": "Pentium III 450 MHz or AMD Athlon 600 MHz",
"ram": "96 MB RAM",
"gpu": "16 MB Direct3D Video Card",
"storage": "500 MB available space"
},
"images": [
"https://cdn2.steamgriddb.com/grid/51c2b2bf3e7ca827d338f9ef016283c3.png",
"https://i.ytimg.com/vi/tM8KKIoZ5dA/maxresdefault.jpg",
"https://i.ytimg.com/vi/ztEe4fDcOxw/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/525688/LQ+GTA+3+ATOM+GUY.rar?hash=AgADDR"
],
"tgLink": "https://t.me/atomguygg"
},
{
"id": 27,
"title": "Grand Theft Auto III: Definitive Edition | GTA III",
"description": "Experience the game that set the foundation for open-world crime sagas with enhanced visuals, improved mechanics, and modern controls in this remastered edition of GTA 3.",
"genres": ["action", "open-world", "crime"],
"category": "Action-Adventure",
"parts": 3,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core i5-6600K / AMD FX-6300",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 760 / AMD Radeon R9 280",
"storage": "20 GB available space"
},
"images": [
"https://cdn1.epicgames.com/offer/ec64a50e79884e28be9ac3d3cd4f5c12/EGS_GrandTheftAutoIIITheDefinitiveEdition_RockstarGames_S1_2560x1440-5e44468c38f50805cac5ab47748d7b79",
"https://images.pushsquare.com/d5c1afd80ddfd/large.jpg",
"https://images.pushsquare.com/124d7cd3919dd/large.jpg"
],
"downloadLinks": [
"https://store.rockstargames.com/game/buy-grand-theft-auto-the-trilogy-the-definitive-edition",
"https://www.xbox.com/en-US/games/store/grand-theft-auto-the-trilogy-the-definitive-edition/9P2T1JXZSF8W"
],
"tgLink": "https://t.me/gta3definitive"
},
{
"id": 16,
"title": "Sleeping Dogs: Definitive Edition",
"description": "Step into the shoes of Wei Shen, an undercover cop infiltrating the dangerous Hong Kong Triads in this action-packed open-world adventure.",
"genres": ["action", "open-world", "crime"],
"category": "Action",
"parts": 3,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core 2 Duo 2.4 GHz / AMD Athlon X2 2.7 GHz",
"ram": "4 GB RAM",
"gpu": "NVIDIA GeForce 8800 GT / ATI Radeon 3870",
"storage": "20 GB available space"
},
"images": [
"https://www.slashgear.com/img/gallery/sleeping-dogs-definitive-edition-review/intro-import.jpg",
"https://ctrlaltnoob.com/wp-content/uploads/2020/07/23eb6-sleeping-dogs_-definitive-edition_20170721222503.jpg",
"https://preview.redd.it/its-such-a-crime-that-we-didnt-get-sleeping-dogs-2-yet-v0-z3m5jrltf95b1.jpg?auto=webp&s=4479bbd1101de67b82b69fb4291a6d0a19f88126"
],
"downloadLinks": [
"https://store.steampowered.com/app/307690/Sleeping_Dogs_Definitive_Edition/",
"https://www.gog.com/game/sleeping_dogs_definitive_edition"
],
"tgLink": "https://t.me/atomguysleepingdogs"
},
{
"id": 26,
"title": "Marvel's Spider-Man 2",
"description": "Swing through the streets of New York as both Peter Parker and Miles Morales in this action-packed adventure featuring Venom and other iconic villains.",
"genres": ["action", "adventure", "superhero", "open-world"],
"category": "Action-Adventure",
"parts": 1,
"multi-combat": true,
"requirements": {
"cpu": "Intel Core i7-9700K / AMD Ryzen 7 3700X",
"ram": "16 GB RAM",
"gpu": "NVIDIA GeForce RTX 2070 / AMD Radeon RX 5700 XT",
"storage": "100 GB available space"
},
"images": [
"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/e66c4ae18c5d8e3986a24599b293162a6f5c9eba22968d2c.jpg",
"https://www.dsogaming.com/wp-content/uploads/2014/05/vanilla1.jpg",
"https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/2651280/ss_cde4862328227ea8cfb2981c92b6411b705ed0f4.1920x1080.jpg?t=1738343995",
],
"downloadLinks": [
"https://store.playstation.com/en-us/product/UP9000-PPSA13359_00-MARVELSPIDERMAN2",
"https://insomniac.games/game/marvels-spider-man-2/"
],
"tgLink": "https://t.me/marvelspiderman2"
},
{
"id": 6,
"title": "Red Dead Redemption 2 | RDR 2",
"description": "Immerse yourself in the story of Arthur Morgan and the Van der Linde gang as they struggle to survive in America's unforgiving heartland.",
"genres": ["sandbox", "survival", "adventure"],
"multi-combact":false,
"parts": 28,
"requirements": {
"cpu": "Intel Core i5-2500K or AMD FX-6300",
"ram": "8 GB RAM",
"gpu": "NVIDIA GTX 770 2GB or AMD R9 280 3GB",
"storage": "150 GB available space"
},
"images": [
"https://cdn1.epicgames.com/b30b6d1b4dfd4dcc93b5490be5e094e5/offer/RDR2476298253_Epic_Games_Wishlist_RDR2_2560x1440_V01-2560x1440-2a9ebe1f7ee202102555be202d5632ec.jpg",
"https://s2.dmcdn.net/v/SmssV1Xs-qs0x_3_5/x1080",
"https://i.ytimg.com/vi/Ak9lA98lUx4/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/664457/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part01.rar?hash=AgAD1Q",
"https://linksshortner.xyz/664467/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part02.rar?hash=AgAD1g",
"https://linksshortner.xyz/664480/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part03.rar?hash=AgADkx",
"https://linksshortner.xyz/664469/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part04.rar?hash=AgADlx",
"https://linksshortner.xyz/664459/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part05.rar?hash=AgAD2Q",
"https://linksshortner.xyz/664461/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part06.rar?hash=AgADnB",
"https://linksshortner.xyz/664463/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part07.rar?hash=AgADpB",
"https://linksshortner.xyz/664465/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part08.rar?hash=AgADqB",
"https://linksshortner.xyz/664468/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part09.rar?hash=AgADrh",
"https://linksshortner.xyz/664472/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part10.rar?hash=AgADYQ",
"https://linksshortner.xyz/664474/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part11.rar?hash=AgADYg",
"https://linksshortner.xyz/664476/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part12.rar?hash=AgADZA",
"https://linksshortner.xyz/664478/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part13.rar?hash=AgADaQ",
"https://linksshortner.xyz/664479/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part14.rar?hash=AgADbw",
"https://linksshortner.xyz/664484/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part15.rar?hash=AgADcA",
"https://linksshortner.xyz/664490/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part16.rar?hash=AgADcg",
"https://linksshortner.xyz/664486/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part17.rar?hash=AgADcw",
"https://linksshortner.xyz/664488/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part18.rar?hash=AgADdA",
"https://linksshortner.xyz/664489/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part19.rar?hash=AgADdQ",
"https://linksshortner.xyz/664493/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part20.rar?hash=AgADdg",
"https://linksshortner.xyz/664496/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part21.rar?hash=AgADeA",
"https://linksshortner.xyz/664495/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part22.rar?hash=AgADeQ",
"https://linksshortner.xyz/664501/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part23.rar?hash=AgADew",
"https://linksshortner.xyz/664505/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part24.rar?hash=AgADfg",
"https://linksshortner.xyz/664503/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part25.rar?hash=AgADfw",
"https://linksshortner.xyz/664506/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part26.rar?hash=AgADgA",
"https://linksshortner.xyz/664504/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part27.rar?hash=AgADgQ",
"https://linksshortner.xyz/664509/RED+DEAD+REDEMPTION+2+-+ATOM+GUY.part28.rar?hash=AgADgg"
],
"tgLink": "https://t.me/atomguyrdr2"
},
{
"id": 25,
"title": "Red Dead | RDR 1",
"description": "Step into the boots of John Marston, a former outlaw forced to hunt down his old gang members in a vast and unforgiving Wild West.",
"genres": ["action", "adventure", "open-world", "western"],
"category": "Action-Adventure",
"parts": 3,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core i5-2500K / AMD FX-6300",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 770 / AMD Radeon R9 280",
"storage": "16 GB available space"
},
"images": [
"https://i.ytimg.com/vi/mnvc6uC6xZE/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLBN-hoamvhV-bDILRBcnsY9xRMQsQ",
"https://gamedecide.com/wp-content/uploads/2024/12/now-that-rdr1-is-officially-available-for-pc-what-mods-are-v0-kpo2dbweyvxd1_11zon-1024x567.webp",
"https://cdn.mos.cms.futurecdn.net/UxrjGLgJ8K69CwoTuHGXP4-1200-80.jpg"
],
"downloadLinks": [
"https://www.rockstargames.com/reddeadredemption",
"https://store.playstation.com/en-us/product/UP1004-CUSA07992_00-REDEMPTION000001"
],
"tgLink": "https://t.me/rdr1"
},
{
"id": 7,
"title": "Forza Horizon 4",
"description": "Experience dynamic seasons in the stunningly beautiful open world of Britain. Race, stunt, and explore solo or with friends.",
"genres": ["racing", "action"],
"multi-combact": false,
"parts": 23,
"requirements": {
"cpu": "Intel i3-4170 or AMD FX-6120",
"ram": "8 GB RAM",
"gpu": "NVIDIA GTX 650 Ti or AMD R7 250X",
"storage": "80 GB available space"
},
"images": [
"https://ulvespill.net/wp-content/uploads/2018/09/Forza-Horizon-4-Key-Art-Horizontal.jpg",
"https://i.ytimg.com/vi/ejVlWiYER1M/maxresdefault.jpg",
"https://images.gamersyde.com/image_stream-42806-2069_0002.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/664598/Forza+Horizon+4+-+Atom+Guy.part01.rar?hash=AgADRx",
"https://linksshortner.xyz/664588/Forza+Horizon+4+-+Atom+Guy.part02.rar?hash=AgADTh",
"https://linksshortner.xyz/664607/Forza+Horizon+4+-+Atom+Guy.part03.rar?hash=AgADWh",
"https://linksshortner.xyz/664600/Forza+Horizon+4+-+Atom+Guy.part04.rar?hash=AgADXh",
"https://linksshortner.xyz/664590/Forza+Horizon+4+-+Atom+Guy.part05.rar?hash=AgADXx",
"https://linksshortner.xyz/664592/Forza+Horizon+4+-+Atom+Guy.part06.rar?hash=AgADYB",
"https://linksshortner.xyz/664594/Forza+Horizon+4+-+Atom+Guy.part07.rar?hash=AgADYx",
"https://linksshortner.xyz/664596/Forza+Horizon+4+-+Atom+Guy.part08.rar?hash=AgADZh",
"https://linksshortner.xyz/664599/Forza+Horizon+4+-+Atom+Guy.part09.rar?hash=AgADaB",
"https://linksshortner.xyz/664603/Forza+Horizon+4+-+Atom+Guy.part10.rar?hash=AgADaR",
"https://linksshortner.xyz/664604/Forza+Horizon+4+-+Atom+Guy.part11.rar?hash=AgADah",
"https://linksshortner.xyz/664609/Forza+Horizon+4+-+Atom+Guy.part12.rar?hash=AgADax",
"https://linksshortner.xyz/664610/Forza+Horizon+4+-+Atom+Guy.part13.rar?hash=AgADbB",
"https://linksshortner.xyz/664611/Forza+Horizon+4+-+Atom+Guy.part14.rar?hash=AgADbR",
"https://linksshortner.xyz/664613/Forza+Horizon+4+-+Atom+Guy.part15.rar?hash=AgADbh",
"https://linksshortner.xyz/664615/Forza+Horizon+4+-+Atom+Guy.part16.rar?hash=AgADbx",
"https://linksshortner.xyz/664617/Forza+Horizon+4+-+Atom+Guy.part17.rar?hash=AgADcx",
"https://linksshortner.xyz/664620/Forza+Horizon+4+-+Atom+Guy.part18.rar?hash=AgADgB",
"https://linksshortner.xyz/664621/Forza+Horizon+4+-+Atom+Guy.part19.rar?hash=AgADfR",
"https://linksshortner.xyz/664624/Forza+Horizon+4+-+Atom+Guy.part20.rar?hash=AgADfh",
"https://linksshortner.xyz/664625/Forza+Horizon+4+-+Atom+Guy.part21.rar?hash=AgADfx",
"https://linksshortner.xyz/664629/Forza+Horizon+4+-+Atom+Guy.part22.rar?hash=AgADgB",
"https://linksshortner.xyz/664633/Forza+Horizon+4+-+Atom+Guy.part23.rar?hash=AgADgR"
],
"tgLink": "https://t.me/atomguyforza4"
},
{
"id": 22,
"title": "Need for Speed: Most Wanted (2012) | NFS 2012",
"description": "Race, evade the cops, and take down rivals in this high-speed open-world racing game, where being Most Wanted is the ultimate goal.",
"genres": ["racing", "open-world", "action"],
"category": "Racing",
"parts": 2,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core 2 Duo 2.4 GHz / AMD Athlon X2 2.6 GHz",
"ram": "4 GB RAM",
"gpu": "NVIDIA GeForce 8800 GT / AMD Radeon HD 3870",
"storage": "20 GB available space"
},
"images": [
"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjP7xfNYerHqYtk4sAPhR5sH_Le0o6WNLyVrve-hhFNYPwgavn87Cz95JrIZ42KR0pD892VaV5g5eCF60eNw5aBiTRJWuSJ0ItVyD-iO4MzIxV002ea3pk5JyGy8DnwJV-QvgGUj4Oww_CD/s1600/nfsmw.jpg",
"https://mattbrett.com/wp-content/uploads/2013/01/nfsmw-city.jpg",
"https://m.media-amazon.com/images/I/91n4bEqocUL.jpg"
],
"downloadLinks": [
"https://store.steampowered.com/app/1262540/Need_for_Speed_Most_Wanted/",
"https://www.ea.com/games/need-for-speed/need-for-speed-most-wanted"
],
"tgLink": "https://t.me/atomguynfs2012"
},
{
"id": 8,
"title": "Need for Speed: Most Wanted | NFS Most Wanted",
"description": "Outrun the police and your rivals in this high-octane street racing game that became a classic in the NFS series.",
"genres": ["racing", "open-world"],
"multi-combact": false,
"parts": 1,
"requirements": {
"cpu": "1.4 GHz Pentium 4 or equivalent",
"ram": "256 MB RAM",
"gpu": "32 MB Direct3D Video Card",
"storage": "3 GB available space"
},
"images": [
"https://mods.store.gx.me/mod/a8903921-a7f6-4b7a-ae63-771bf779e855/cover/242dd251-a963-4ea8-adb9-ae9b4ecb224c/webp-1280x720?d87fa3494354aef6d1dd9323d5207128",
"https://i.ytimg.com/vi/KbO7Fs4vLvs/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLBHSrWSj7lGNc2_weetAlrlaVjNPw",
"https://s2.dmcdn.net/v/Sxa1H1WZmifvDGw0I/x1080"
],
"downloadLinks": [
"https://linksshortner.xyz/664658/NFS+MW+2005+-+ATOM+GUY.zip?hash=AgADUx"
],
"tgLink": "https://t.me/atomguynfs2005"
},
{
"id": 14,
"title": "BeamNG.drive",
"description": "Experience realistic soft-body physics and open-world exploration with a variety of vehicles in this driving simulation.",
"genres": ["simulation", "racing"],
"multi-combact": false,
"parts": 13,
"requirements": {
"cpu": "AMD FX-6300 or Intel i5-4430",
"ram": "8 GB RAM",
"gpu": "NVIDIA GTX 550 Ti or AMD HD 7750",
"storage": "20 GB available space"
},
"images": [
"https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_616x353.jpg?t=1733838013",
"https://i.ytimg.com/vi/HHLcj6T8YFk/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAvaOBBx0XHwObKgW_x8KKFEYp93g",
"https://i.ytimg.com/vi/lUKYMavgDCY/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/664708/BeamNG.drive+-+Atom+Guy.part01.rar?hash=AgADYh",
"https://linksshortner.xyz/664699/BeamNG.drive+-+Atom+Guy.part02.rar?hash=AgADZB",
"https://linksshortner.xyz/664691/BeamNG.drive+-+Atom+Guy.part03.rar?hash=AgADZR",
"https://linksshortner.xyz/664703/BeamNG.drive+-+Atom+Guy.part04.rar?hash=AgADZh",
"https://linksshortner.xyz/664693/BeamNG.drive+-+Atom+Guy.part05.rar?hash=AgADZx",
"https://linksshortner.xyz/664695/BeamNG.drive+-+Atom+Guy.part06.rar?hash=AgADaB",
"https://linksshortner.xyz/664697/BeamNG.drive+-+Atom+Guy.part07.rar?hash=AgADah",
"https://linksshortner.xyz/664701/BeamNG.drive+-+Atom+Guy.part08.rar?hash=AgADax",
"https://linksshortner.xyz/664702/BeamNG.drive+-+Atom+Guy.part09.rar?hash=AgADbB",
"https://linksshortner.xyz/664705/BeamNG.drive+-+Atom+Guy.part10.rar?hash=AgADbR",
"https://linksshortner.xyz/664713/BeamNG.drive+-+Atom+Guy.part11.rar?hash=AgADbh",
"https://linksshortner.xyz/664709/BeamNG.drive+-+Atom+Guy.part12.rar?hash=AgADbx",
"https://linksshortner.xyz/664712/BeamNG.drive+-+Atom+Guy.part13.rar?hash=AgADcB"
],
"tgLink": "https://t.me/atomguybeamng"
},
{
"id": 9,
"title": "FIFA 18",
"description": "Experience the excitement of football with stunning graphics and gameplay enhancements in FIFA 18.",
"genres": ["sports", "simulation"],
"multi-combact": false,
"parts": 8,
"requirements": {
"cpu": "Intel Core i3-2100 or AMD Phenom II X4 965",
"ram": "8 GB RAM",
"gpu": "NVIDIA GTX 460 or AMD Radeon R7 260",
"storage": "50 GB available space"
},
"images": [
"https://www.nintendo.com/eu/media/images/10_share_images/games_15/nintendo_switch_4/H2x1_NSwitch_EASportsFifa18_image1280w.jpg",
"https://www.jiomart.com/images/product/original/rvggle1l87/electronic-arts-sports-fifa-18-ps4-product-images-orvggle1l87-p604093135-1-202308251436.jpg?im=Resize=(1000,1000)",
"https://www.godisageek.com/wp-content/uploads/fifa-18-career-mode-liverpool.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/664761/FIFA+18+-+Atom+Guy.part01.rar?hash=AgADDR",
"https://linksshortner.xyz/664756/FIFA+18+-+Atom+Guy.part02.rar?hash=AgADEB",
"https://linksshortner.xyz/664748/FIFA+18+-+Atom+Guy.part03.rar?hash=AgADGB",
"https://linksshortner.xyz/664759/FIFA+18+-+Atom+Guy.part04.rar?hash=AgADHB",
"https://linksshortner.xyz/664750/FIFA+18+-+Atom+Guy.part05.rar?hash=AgADIB",
"https://linksshortner.xyz/664752/FIFA+18+-+Atom+Guy.part06.rar?hash=AgADJB",
"https://linksshortner.xyz/664754/FIFA+18+-+Atom+Guy.part07.rar?hash=AgADMB",
"https://linksshortner.xyz/664758/FIFA+18+-+Atom+Guy.part08.rar?hash=AgADMh"
],
"tgLink": "https://t.me/atomguyfifa"
},
{
"id": 10,
"title": "Minecraft",
"description": "Build, explore, and survive in this blocky, pixelated world filled with endless possibilities.",
"genres": ["sandbox", "survival", "adventure"],
"multi-combact": true,
"parts": 2,
"requirements": {
"cpu": "Intel Core i3-3210 or AMD A8-7600",
"ram": "4 GB RAM",
"gpu": "Intel HD Graphics 4000 or AMD Radeon R5",
"storage": "1 GB available space"
},
"images": [
"https://assets.nuuvem.com/image/upload/v1/products/62f3c54f65d8fa7046eea12e/sharing_images/vvmelr55khbxp3myxj46.jpg",
"https://cdn.britannica.com/62/200262-050-AFE1BDFF/Players-Minecraft-worlds-way-blocks-roaming-characters.jpg",
"https://www.merlinentertainments.biz/media/6803/images-courtesy-of-merlin-and-tm-mojang-ab-2.jpg?anchor=center&mode=crop&width=980&height=570&rnd=133763995550000000&format=webp"
],
"downloadLinks": [
"https://eaglercraft.com/",
"https://telegram.me/+mxsNj0JNy4ozNTVl",
],
"tgLink": "https://telegram.me/+mxsNj0JNy4ozNTVl"
},
{
"id": 17,
"title": "SnowRunner",
"description": "Conquer extreme open-world environments with powerful vehicles in this off-road simulation experience.",
"genres": ["simulation", "driving", "off-road"],
"category": "Simulation",
"parts": 10,
"multi-combat": false,
"requirements": {
"cpu": "Intel i3-4130 / AMD Ryzen 3 2200U",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 660 / AMD Radeon R9 270",
"storage": "20 GB available space"
},
"images": [
"https://image.api.playstation.com/vulcan/ap/rnd/202105/0612/cqADFuCgu00EQKQNtpWWSa2q.jpg",
"https://static.gameloop.com/img/5de8e363835f632e3cd652af6b003918.jpg?imageMogr2/thumbnail/undefinedx266/format/webp",
"https://preview.redd.it/lets-design-a-game-where-it-takes-you-30-minutes-to-get-to-v0-gqvg10wrqc9c1.jpeg?auto=webp&s=a0f5ca82a76764b92e1a492ef11d49ef626d0b60"
],
"downloadLinks": [
"https://store.steampowered.com/app/1465360/SnowRunner/",
"https://www.epicgames.com/store/en-US/p/snowrunner"
],
"tgLink": "https://telegram.me/+GSHo_b6gt2Y3MTFl"
},
{
"id": 11,
"title": "Bully: Scholarship Edition",
"description": "Play as Jimmy Hopkins as you navigate the social hierarchy of Bullworth Academy in this action-adventure game filled with pranks and challenges.",
"genres": ["action", "sandbox"],
"multi-combact": false,
"parts": 1,
"requirements": {
"cpu": "Intel Pentium 4 (3+ GHZ) / AMD Athlon 3000+",
"ram": "1 GB RAM",
"gpu": "NVIDIA 6800 or ATI Radeon X1300",
"storage": "4.7 GB available space"
},
"images": [
"https://crotorrents.com/wp-content/uploads/2017/04/download-6.jpg",
"https://thepcgames.net/wp-content/uploads/2018/04/Bully-Scholarship-Edition-PC-Game-Free-Download.jpg",
"https://i.ytimg.com/vi/BVSghGUqALI/hq720.jpg?sqp=-oaymwE7CK4FEIIDSFryq4qpAy0IARUAAAAAGAElAADIQj0AgKJD8AEB-AH-CYAC0AWKAgwIABABGGUgWShNMA8=&rs=AOn4CLAh4cpWTcXBL_6sOb04Frn-5bVBRg"
],
"downloadLinks": [
"https://linksshortner.xyz/664662/Bully+-+Atom+Guy+Edition.rar?hash=AgADoR"
],
"tgLink": "https://t.me/atomguybully"
},
{
"id": 12,
"title": "Granny",
"description": "Survive and escape a creepy house while avoiding the wrath of Granny in this thrilling horror game.",
"genres": ["horror", "survival"],
"multi-combact": false,
"parts": 1,
"requirements": {
"cpu": "Intel Core 2 Duo or equivalent",
"ram": "2 GB RAM",
"gpu": "Intel HD Graphics 4000",
"storage": "500 MB available space"
},
"images": [
"https://i.ytimg.com/vi/pURCRidtEZY/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAeprzon9DQK_SNhrzFIn1WcrFgYw",
"https://i.ytimg.com/vi/S6l4nQrR2aE/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLB0JwshFAz-5Htq9HTD8DjMvCTBKQ",
"https://a.silvergames.com/screenshots/granny-horror/horror-game.jpg"
],
"downloadLinks": [
"https://sharemods.com/imuklszj0h6x/Granny_1_-_Atom_Guy_Edition.zip.html"
],
"tgLink": "https://t.me/Atomguyofficial"
},
{
"id": 13,
"title": "Euro Truck Simulator 2 | ETS 2",
"description": "Experience the life of a truck driver as you deliver cargo across Europe in this realistic truck simulator.",
"genres": ["simulation", "driving"],
"multi-combact": false,
"parts": 6,
"requirements": {
"cpu": "Dual core CPU 2.4 GHz",
"ram": "4 GB RAM",
"gpu": "GeForce GTS 450-class (Intel HD 4000)",
"storage": "3 GB available space"
},
"images": [
"https://infiniteczechgames.com/wp-content/uploads/2023/11/Euro-Truck-Simulator-2-cover.jpg",
"https://i.ytimg.com/vi/gtxWdNcRsqY/hq720.jpg?sqp=-oaymwE7CK4FEIIDSFryq4qpAy0IARUAAAAAGAElAADIQj0AgKJD8AEB-AH-CYAC0AWKAgwIABABGEsgXShlMA8=&rs=AOn4CLBvQktvcNxaJeIcAnBfh7ybpknobQ",
"https://i.ytimg.com/vi/zUT0JsR5KYM/maxresdefault.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/525622/Euro+Truck+Simulator+2+-+Atom+Guy.part1.rar?hash=AgAD7h",
"https://linksshortner.xyz/525615/Euro+Truck+Simulator+2+-+Atom+Guy.part2.rar?hash=AgAD9h",
"https://linksshortner.xyz/525624/Euro+Truck+Simulator+2+-+Atom+Guy.part3.rar?hash=AgAD_R",
"https://linksshortner.xyz/525611/Euro+Truck+Simulator+2+-+Atom+Guy.part4.rar?hash=AgADAh",
"https://linksshortner.xyz/525613/Euro+Truck+Simulator+2+-+Atom+Guy.part5.rar?hash=AgADBx",
"https://linksshortner.xyz/525617/Euro+Truck+Simulator+2+-+Atom+Guy.part6.rar?hash=AgADDR"
],
"tgLink": "https://t.me/atomguyets2"
},
{
"id": 15,
"title": "Bus Simulator 21",
"description": "Take control of your bus-driving career in an expansive open world with realistic routes, dynamic traffic, and a variety of buses to master.",
"genres": ["simulation", "driving"],
"multi-combact": false,
"parts": 2,
"requirements": {
"cpu": "Intel Core i5-4440 or AMD FX-8370",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 970 or AMD Radeon RX 480",
"storage": "18 GB available space"
},
"images": [
"https://xxboxnews.blob.core.windows.net/prod/sites/2/2020/08/Bus21-Hero-Image.jpg",
"https://m.media-amazon.com/images/I/71X2z4Lx2FL.jpg",
"https://www.bussimulator.com/img/news/0005/slider5-03.jpg"
],
"downloadLinks": [
"https://www.tgxdl2.workers.dev/0:/dl/125720?hash=AgAD7R",
"https://www.tgxdl2.workers.dev/0:/dl/125721?hash=AgAD7h"
],
"tgLink": "https://t.me/atomguybus21"
},
{
"id": 18,
"title": "Farming Simulator 22",
"description": "Live the life of a modern farmer, cultivating fields, raising livestock, and managing your farm in this realistic agricultural simulation.",
"genres": ["simulation", "farming", "strategy"],
"category": "Simulation",
"parts": 1,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core i5-3330 / AMD FX-8320",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 660 / AMD Radeon R7 265",
"storage": "20 GB available space"
},
"images": [
"https://cdn.dlcompare.com/game_tetiere/upload/gameimage/file/c479-farming_simulator_22.jpeg.webp",
"https://www.osvnews.com/wp-content/uploads/2023/03/20230324T1500-VIDEOGAME-REVIEW-FARMING-SIMULATOR-22-1757515.jpg",
"https://i.ytimg.com/vi/eszqWN9OrNo/maxresdefault.jpg"
],
"downloadLinks": [
"https://store.steampowered.com/app/1248130/Farming_Simulator_22/",
"https://www.farming-simulator.com/"
],
"tgLink": "https://telegram.me/+qR4zCFgv9io3MGNl"
},
{
"id": 21,
"title": "Ranch Simulator",
"description": "Build, farm, and hunt as you restore your family ranch in this realistic multiplayer simulation game.",
"genres": ["simulation", "multiplayer", "farming"],
"category": "Simulation",
"parts": 1,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core i5-3570K / AMD FX-8310",
"ram": "8 GB RAM",
"gpu": "NVIDIA GeForce GTX 760 / AMD Radeon R9 270",
"storage": "15 GB available space"
},
"images": [
"https://cdn2.unrealengine.com/ranch-simulator-1920x1080-2c438975e7b2.png",
"https://gofrag.ru/images/89/ranch_simulator-4.jpg",
"https://cdn2.unrealengine.com/ranch-simulator-chicken-pen-1920x1080-87618f3f2d3a.jpg"
],
"downloadLinks": [
"https://store.steampowered.com/app/1119730/Ranch_Simulator/",
"https://www.epicgames.com/store/en-US/p/ranch-simulator"
],
"tgLink": "https://telegram.me/+twBtf-bpNO9kNTM1"
},
{
"id": 19,
"title": "Inside",
"description": "A dark, atmospheric puzzle-platformer where a boy explores a sinister, dystopian world filled with eerie surprises.",
"genres": ["puzzle", "platformer", "action"],
"category": "Adventure",
"parts": 1,
"multi-combat": false,
"requirements": {
"cpu": "Intel Core 2 Duo E4500 / AMD Athlon 64 X2 5000+",
"ram": "4 GB RAM",
"gpu": "NVIDIA GeForce GTX 460 / AMD Radeon HD 6750",
"storage": "3 GB available space"
},
"images": [
"https://img.opencritic.com/game/2848/o/Jo0HjaKf.jpg",
"https://c4.wallpaperflare.com/wallpaper/521/840/40/video-game-getting-over-it-with-bennett-foddy-wallpaper-preview.jpg",
"https://platform.polygon.com/wp-content/uploads/sites/2/chorus/uploads/chorus_asset/file/6731321/InsideCity6.0.jpg"
],
"downloadLinks": [
"https://store.steampowered.com/app/304430/INSIDE/",
"https://www.epicgames.com/store/en-US/p/inside"
],
"tgLink": "https://sharemods.com/z8yfqn0kg8d2/INSIDE_-_ATOM_GUY.rar.html"
},
{
"id": 20,
"title": "Getting Over It",
"description": "A punishing climbing game where you control a man stuck in a pot, using a hammer to overcome bizarre and frustrating obstacles.",
"genres": ["platformer", "physics-based", "rage"],
"category": "Platformer",
"parts": 1,
"multi-combat": false,
"requirements": {
"cpu": "2 GHz Dual Core",
"ram": "2 GB RAM",
"gpu": "Intel HD Graphics 4000",
"storage": "2 GB available space"
},
"images": [
"https://noodlecake.com/wp-content/uploads/2018/04/feature-GettingOverIt-1280x720.jpg",
"https://i0.wp.com/waytoomany.games/wp-content/uploads/2018/01/20180112012402_1.jpg?fit=1920%2C1080&ssl=1",
"https://c4.wallpaperflare.com/wallpaper/521/840/40/video-game-getting-over-it-with-bennett-foddy-wallpaper-preview.jpg"
],
"downloadLinks": [
"https://store.steampowered.com/app/240720/Getting_Over_It_with_Bennett_Foddy/",
"https://www.humblebundle.com/store/getting-over-it-with-bennett-foddy"
],
"tgLink": "https://sharemods.com/wa2lhxuraep9/Getting_Over_It_-_Atom_Guy.rar.html"
},
{
"id": 28,
"title": "Batman: Arkham Asylum",
"description": "Step into the shadows as the Dark Knight in Batman: Arkham Asylum. Trapped with Gotham’s most dangerous criminals, use stealth, combat, and detective skills to restore order.",
"genres": ["action", "adventure", "stealth"],
"parts": 5,
"multi-combact": false,
"requirements": {
"cpu": "Intel Core 2 Duo 2.4 GHz or AMD Athlon X2 4800+",
"ram": "2 GB RAM",
"gpu": "NVIDIA GeForce 8800 series or ATI Radeon HD 3800",
"storage": "9 GB available space"
},
"images": [
"https://images.gog-statics.com/de60559557d039d9375b617e83df1eba1bd1d04ba8dffef45f36f3a6b91f5e37_product_card_v2_mobile_slider_639.jpg",
"https://m.media-amazon.com/images/I/81ZOuGsERvL.jpg",
"https://thesilverscreener.wordpress.com/wp-content/uploads/2013/10/batman-arkham-asylum-joker_transport1.jpg"
],
"downloadLinks": [
"https://linksshortner.xyz/528001/Batman-Arkham-Asylum.part01.rar?hash=AgADba",
"https://linksshortner.xyz/528002/Batman-Arkham-Asylum.part02.rar?hash=AgADbc",
"https://linksshortner.xyz/528003/Batman-Arkham-Asylum.part03.rar?hash=AgADbd",
"https://linksshortner.xyz/528004/Batman-Arkham-Asylum.part04.rar?hash=AgADbe",
"https://linksshortner.xyz/528005/Batman-Arkham-Asylum.part05.rar?hash=AgADbf"
],
"tgLink": "https://t.me/atomguybatman"
},
];
// Current state
let currentSlide = 0;
let currentGame = null;
// Loading Screen
document.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
document.getElementById('loadingScreen').style.display = 'none';
document.getElementById('mainContent').style.display = 'block';
initializeGames();
addAudioEffect();
}, 2000);
});
// Initialize game cards
function initializeGames() {
const gameGrid = document.getElementById('gameGrid');
gameGrid.innerHTML = '';
gameData.forEach(game => {
const card = createGameCard(game);
gameGrid.appendChild(card);
});
}
// Create game card element with parts counter and trending badge
function createGameCard(game) {
const card = document.createElement('div');
card.className = 'game-card';
// Create tags HTML
const tagsHTML = game.genres.map(genre =>
`<span class="game-tag">${genre}</span>`
).join('');
// Determine if game is trending (more than 2 parts)
const isTrending = game.parts > 2;
const trendingBadge = isTrending ?
`<div class="trending-badge"><i class="fas fa-fire"></i> Trending</div>` : '';
card.innerHTML = `
<div class="game-card-inner">
<div class="game-image-container">
<img src="${game.images[0]}" alt="${game.title}" class="game-image">
${trendingBadge}
<div class="hover-info">
<div class="parts-counter" data-parts="${game.parts}">
<span class="parts-number">0</span>
<span class="parts-label">Parts</span>
</div>
</div>
</div>
<div class="game-info">
<h3 class="game-title">${game.title}</h3>
<div class="game-tags-container">
${tagsHTML}
</div>
<button class="download-btn" onclick="showGameDetails(${game.id})">
<i class="fas fa-download"></i> Download
</button>
</div>
</div>
`;
// Add hover event listeners for parts counter animation
card.addEventListener('mouseenter', () => {
const partsCounter = card.querySelector('.parts-counter');
const partsNumber = partsCounter.querySelector('.parts-number');
const targetParts = parseInt(partsCounter.dataset.parts);
// Reset counter
partsNumber.textContent = '0.000';
// Determine animation approach based on parts count
if (targetParts <= 2) {
// For 1 or 2 parts, animate with decimals up to the target
let currentCount = 0;
const decimalSteps = 50; // Number of steps to reach target
const duration = 1000; // 1 second total
const interval = duration / decimalSteps;
const counterInterval = setInterval(() => {
currentCount += targetParts / decimalSteps;
// Display with 3 decimal places while counting
if (currentCount < targetParts) {
partsNumber.textContent = currentCount.toFixed(3);
} else {
// When reaching the target, show as whole number
partsNumber.textContent = targetParts;
clearInterval(counterInterval);
}
}, Math.max(20, interval)); // Ensure interval is at least 20ms
} else {
// For more than 2 parts, animate with decimals up to 2, then continue normally
let currentCount = 0;
const decimalSteps = 50; // Number of steps to reach 2
const decimalDuration = 800; // Time to reach 2 (in ms)
const decimalInterval = decimalDuration / decimalSteps;
// Start with decimal animation from 0 to 2
const decimalCounter = setInterval(() => {
currentCount += 2 / decimalSteps;
// Display with 3 decimal places while below 2
if (currentCount < 2) {
partsNumber.textContent = currentCount.toFixed(3);
} else {
// When reaching 2, switch to whole numbers
currentCount = 2;
partsNumber.textContent = '2';
clearInterval(decimalCounter);
// Continue with whole numbers
const remainingParts = targetParts - 2;
const remainingDuration = 600; // Time for the rest of the count
const wholeInterval = remainingDuration / remainingParts;
const wholeCounter = setInterval(() => {
currentCount++;
partsNumber.textContent = currentCount;
if (currentCount >= targetParts) {
clearInterval(wholeCounter);
}
}, Math.max(50, wholeInterval)); // Ensure interval is at least 50ms
}
}, decimalInterval);
}
});
return card;
}
// Keep the existing FilterController code
const FilterController = {
activeFilters: new Set(['all']),
init() {
const filterBtns = document.querySelectorAll('.filter-btn');
this.addCountBadges();
filterBtns.forEach(btn => {
btn.addEventListener('click', () => {
const genre = btn.dataset.genre;
if (genre === 'all') {
this.activeFilters.clear();
this.activeFilters.add('all');
filterBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
} else {
this.activeFilters.delete('all');
btn.classList.toggle('active');
if (btn.classList.contains('active')) {
this.activeFilters.add(genre);
} else {
this.activeFilters.delete(genre);
}
if (this.activeFilters.size === 0) {
this.activeFilters.add('all');
document.querySelector('[data-genre="all"]').classList.add('active');
}
}
this.filterGames();
this.saveFilters();
});
});
this.loadSavedFilters();
},
addCountBadges() {
const filterBtns = document.querySelectorAll('.filter-btn');
filterBtns.forEach(btn => {
const genre = btn.dataset.genre;
const count = genre === 'all'
? gameData.length
: gameData.filter(game => game.genres.includes(genre)).length;
btn.innerHTML += `<span class="badge">${count}</span>`;
});
},
filterGames() {
const gameCards = document.querySelectorAll('.game-card');
gameCards.forEach(card => {
const gameTitle = card.querySelector('.game-title').textContent;
const game = gameData.find(g => g.title === gameTitle);
const shouldShow = this.activeFilters.has('all') ||
game.genres.some(genre => this.activeFilters.has(genre));
if (shouldShow) {
card.style.display = 'block';
setTimeout(() => {
card.classList.remove('hidden');
card.style.transform = 'scale(1) translateY(0)';
card.style.opacity = '1';
}, 50);
} else {
card.classList.add('hidden');
card.style.transform = 'scale(0.8) translateY(20px)';
card.style.opacity = '0';
setTimeout(() => {
card.style.display = 'none';
}, 500);
}
});
},
saveFilters() {