-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
14835 lines (14835 loc) · 551 KB
/
test.js
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
[
{
"id": 376934,
"slug": "pistol-whip",
"name": "Pistol Whip",
"name_original": "Pistol Whip",
"description": "<p>Inspired by God-mode action movies like John Wick and Equilibrium, Pistol Whip throws you gun-first into an explosive batch of hand-crafted action sequences each set to their own breakneck soundtrack. But unlike traditional music games, Pistol Whip has no line in the sand; you have complete freedom to shoot, melee, and dodge targets to the rhythm YOU see fit.<br />\nFeaturesPair the pulse-pounding pace of an FPS with the flow-state energy of a music game in a cinematic symphony of violence.<br />\nForm your rhythm and find your playstyle, from tactical to musical, then challenge your skill with friends and world leaderboards.<br />\nInfiltrate a fever dream of hand-crafted sequences, from bank heists to android uprisings, each uniquely designed to music.<br />\nTake it over-the-top with a variety of gameplay mods, such as Dual Wield, to enable the ultimate gun kata experience.<br />\nConstant momentum and comfort-first design allows non-stop speed without the fear of motion sickness.<br />\nFeaturing EDM artists from Kannibalen Records, including Apashe, HVDES, and Black Tiger Sex Machine; with more to come...</p>",
"metacritic": null,
"released": "2019-11-07",
"tba": false,
"updated": "2020-01-07T22:38:46",
"background_image": "https://media.rawg.io/media/screenshots/619/6196b2342cec75dcd0dad9f835485a14.jpg",
"background_image_additional": "https://media.rawg.io/media/screenshots/907/907672ae6b91c762cd27a53a88370156.jpg",
"website": "http://pistolwhipvr.com/",
"rating": 0,
"rating_top": 0,
"ratings": [
{
"id": 5,
"title": "exceptional",
"count": 2,
"percent": 50
},
{
"id": 4,
"title": "recommended",
"count": 2,
"percent": 50
}
],
"reactions": {},
"added": 35,
"added_by_status": {
"owned": 28,
"beaten": 1,
"toplay": 1,
"dropped": 2,
"playing": 3
},
"playtime": 2,
"screenshots_count": 12,
"movies_count": 0,
"creators_count": 0,
"achievements_count": 0,
"parent_achievements_count": 0,
"reddit_url": "",
"reddit_name": "",
"reddit_description": "",
"reddit_logo": "",
"reddit_count": 0,
"twitch_count": 0,
"youtube_count": 0,
"reviews_text_count": 0,
"ratings_count": 4,
"suggestions_count": 414,
"alternative_names": [],
"metacritic_url": "",
"parents_count": 0,
"additions_count": 0,
"game_series_count": 0,
"user_game": null,
"reviews_count": 4,
"community_rating": 0,
"saturated_color": "0f0f0f",
"dominant_color": "0f0f0f",
"parent_platforms": [
{
"platform": {
"id": 1,
"name": "PC",
"slug": "pc"
}
},
{
"platform": {
"id": 2,
"name": "PlayStation",
"slug": "playstation"
}
}
],
"platforms": [
{
"platform": {
"id": 4,
"name": "PC",
"slug": "pc",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 200646,
"image_background": "https://media.rawg.io/media/games/2c4/2c4ec7b64079b561667850593d23c417.jpg"
},
"released_at": "2019-11-07",
"requirements": {
"minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li>Requires a 64-bit processor and operating system<br></li><li><strong>OS:</strong> Windows 10 (64-bit)<br></li><li><strong>Processor:</strong> Intel Core i5-4590 or equivalent<br></li><li><strong>Memory:</strong> 8 GB RAM<br></li><li><strong>Graphics:</strong> Geforce GTX 970 or equivalent<br></li><li><strong>DirectX:</strong> Version 11<br></li><li><strong>Storage:</strong> 800 MB available space<br></li><li><strong>Sound Card:</strong> Required<br></li><li><strong>Additional Notes:</strong> Headphones recommended</li></ul>",
"recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li>Requires a 64-bit processor and operating system<br></li><li><strong>OS:</strong> Windows 10 (64-bit)<br></li><li><strong>Processor:</strong> Intel Core i7<br></li><li><strong>Memory:</strong> 8 GB RAM<br></li><li><strong>Graphics:</strong> GeForce GTX 1070 or greater<br></li><li><strong>DirectX:</strong> Version 11<br></li><li><strong>Storage:</strong> 800 MB available space<br></li><li><strong>Sound Card:</strong> Required<br></li><li><strong>Additional Notes:</strong> Headphones recommended</li></ul>"
}
},
{
"platform": {
"id": 18,
"name": "PlayStation 4",
"slug": "playstation4",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 4440,
"image_background": "https://media.rawg.io/media/games/b7d/b7d3f1715fa8381a4e780173a197a615.jpg"
},
"released_at": "2019-11-07",
"requirements": null
}
],
"stores": [
{
"id": 365602,
"url": "https://store.steampowered.com/app/1079800/",
"store": {
"id": 1,
"name": "Steam",
"slug": "steam",
"domain": "store.steampowered.com",
"games_count": 39758,
"image_background": "https://media.rawg.io/media/games/bc0/bc06a29ceac58652b684deefe7d56099.jpg"
}
}
],
"developers": [
{
"id": 3654,
"name": "Cloudhead Games ltd.",
"slug": "cloudhead-games-ltd",
"games_count": 5,
"image_background": "https://media.rawg.io/media/screenshots/8eb/8eb83d5c60df11c5f905be48a6c68752.jpg"
}
],
"genres": [
{
"id": 4,
"name": "Action",
"slug": "action",
"games_count": 79499,
"image_background": "https://media.rawg.io/media/screenshots/19d/19d3effb85e8f40d0b5b004fb5ab5c76.jpg"
},
{
"id": 51,
"name": "Indie",
"slug": "indie",
"games_count": 28288,
"image_background": "https://media.rawg.io/media/games/dd5/dd50d4266915d56dd5b63ae1bf72606a.jpg"
}
],
"tags": [
{
"id": 40847,
"name": "Steam Achievements",
"slug": "steam-achievements",
"language": "eng",
"games_count": 17553,
"image_background": "https://media.rawg.io/media/games/16b/16b1b7b36e2042d1128d5a3e852b3b2f.jpg"
},
{
"id": 40849,
"name": "Steam Cloud",
"slug": "steam-cloud",
"language": "eng",
"games_count": 8234,
"image_background": "https://media.rawg.io/media/games/120/1201a40e4364557b124392ee50317b99.jpg"
},
{
"id": 40850,
"name": "Steam Leaderboards",
"slug": "steam-leaderboards",
"language": "eng",
"games_count": 4001,
"image_background": "https://media.rawg.io/media/games/ac2/ac25b5cef220bf5b8d052e0978451cab.jpg"
},
{
"id": 30,
"name": "FPS",
"slug": "fps",
"language": "eng",
"games_count": 4300,
"image_background": "https://media.rawg.io/media/games/48e/48e63bbddeddbe9ba81942772b156664.jpg"
},
{
"id": 42,
"name": "Great Soundtrack",
"slug": "great-soundtrack",
"language": "eng",
"games_count": 2783,
"image_background": "https://media.rawg.io/media/games/b49/b4912b5dbfc7ed8927b65f05b8507f6c.jpg"
},
{
"id": 136,
"name": "Music",
"slug": "music",
"language": "eng",
"games_count": 12171,
"image_background": "https://media.rawg.io/media/screenshots/0f5/0f585fa72f534f62f9e5da051179f5de.jpg"
},
{
"id": 137,
"name": "On-Rails Shooter",
"slug": "on-rails-shooter",
"language": "eng",
"games_count": 251,
"image_background": "https://media.rawg.io/media/screenshots/d5d/d5d517e6a0cb5c2722256bf21ad295f8.jpg"
},
{
"id": 207,
"name": "Rhythm",
"slug": "rhythm",
"language": "eng",
"games_count": 844,
"image_background": "https://media.rawg.io/media/screenshots/92d/92d83c39071b380ff67aae1e091dcdd3.jpg"
},
{
"id": 31,
"name": "Singleplayer",
"slug": "singleplayer",
"language": "eng",
"games_count": 63929,
"image_background": "https://media.rawg.io/media/games/81b/81b138691f027ed1f8720758daa0d895.jpg"
},
{
"id": 33,
"name": "VR",
"slug": "vr",
"language": "eng",
"games_count": 6514,
"image_background": "https://media.rawg.io/media/games/a01/a01b34c722ceec784817381eb1824fa5.jpg"
},
{
"id": 11669,
"name": "stats",
"slug": "stats",
"language": "eng",
"games_count": 3098,
"image_background": "https://media.rawg.io/media/games/f8c/f8c6a262ead4c16b47e1219310210eb3.jpg"
}
],
"publishers": [
{
"id": 3358,
"name": "Cloudhead Games ltd.",
"slug": "cloudhead-games-ltd",
"games_count": 4,
"image_background": "https://media.rawg.io/media/screenshots/b16/b16628d73a1796b7bcdb2e10be0052da.jpg"
}
],
"esrb_rating": null,
"clip": null,
"description_raw": "Inspired by God-mode action movies like John Wick and Equilibrium, Pistol Whip throws you gun-first into an explosive batch of hand-crafted action sequences each set to their own breakneck soundtrack. But unlike traditional music games, Pistol Whip has no line in the sand; you have complete freedom to shoot, melee, and dodge targets to the rhythm YOU see fit.\nFeaturesPair the pulse-pounding pace of an FPS with the flow-state energy of a music game in a cinematic symphony of violence.\nForm your rhythm and find your playstyle, from tactical to musical, then challenge your skill with friends and world leaderboards.\nInfiltrate a fever dream of hand-crafted sequences, from bank heists to android uprisings, each uniquely designed to music.\nTake it over-the-top with a variety of gameplay mods, such as Dual Wield, to enable the ultimate gun kata experience.\nConstant momentum and comfort-first design allows non-stop speed without the fear of motion sickness.\nFeaturing EDM artists from Kannibalen Records, including Apashe, HVDES, and Black Tiger Sex Machine; with more to come..."
},
{
"id": 64173,
"slug": "hypnospace-outlaw",
"name": "Hypnospace Outlaw",
"name_original": "Hypnospace Outlaw",
"description": "<strong>Greetings Enforcer, and thank you for enlisting in the Hypnospace Patrol Department! As the corporatocracy sleeps, outlaws are out there committing terrible transgressions all across our beloved Hypnospace, and these virtual streets aren't going to police themselves!</strong><br/><br/><strong>Hypnospace Outlaw</strong> is a a '90s internet simulator, that requires you scour the Hypnospace and hunt down wrongdoers, while also checking out a wide variety of weird and wonderful websites, keeping an eye on your work email, and downloading a plethora of apps that may or may not be useful.<br/><br/>As part of your job as a Hypnospace Enforcer, you'll be watching out for copyright infringement, internet bullying and more, with reports and rewards coming direct from the Hypnospace Patrol Department to your inbox. In your spare time, you can customize your HypnOS desktop however you see fit, with a variety of downloads, wallpapers, screen savers and helper bots to keep you company.<br/><br/>So slip on your Hypnospace Headband™, and keep these key directives in mind:<br/><br/><ul><li>Crawl through Cyberspace: Scour the darkest corners of the Web for scumbag users who violate Hypnospace law!<br/></li><li>Dangers and delights: Download groovy GIFS and MIDI files, but watch out for adware, toolbars and hackers!<br/></li><li>Treasure hunting: Do your job to earn Hypnocoins, or ignore your inbox and go hunting for hidden pages, downloads and secrets!<br/></li><li>Relive your childhood: Equip obnoxious screensavers and skins for your desktop, and wiggle your mouse pointer around to make pages load faster!</li></ul>",
"metacritic": null,
"released": "2019-03-11",
"tba": false,
"updated": "2019-09-03T21:24:46",
"background_image": "https://media.rawg.io/media/screenshots/360/36078436e66014b50adf8582811e6951.jpg",
"background_image_additional": "https://media.rawg.io/media/screenshots/60f/60f38c7fab1aede6b234ee1aec131808.jpg",
"website": "http://www.hypnospace.net/",
"rating": 4.41,
"rating_top": 5,
"ratings": [
{
"id": 5,
"title": "exceptional",
"count": 10,
"percent": 58.82
},
{
"id": 4,
"title": "recommended",
"count": 6,
"percent": 35.29
},
{
"id": 1,
"title": "skip",
"count": 1,
"percent": 5.88
}
],
"reactions": {
"9": 1,
"10": 1,
"12": 1
},
"added": 98,
"added_by_status": {
"yet": 6,
"owned": 54,
"beaten": 14,
"toplay": 13,
"dropped": 5,
"playing": 6
},
"playtime": 3,
"screenshots_count": 6,
"movies_count": 0,
"creators_count": 0,
"achievements_count": 13,
"parent_achievements_count": 13,
"reddit_url": "",
"reddit_name": "",
"reddit_description": "",
"reddit_logo": "",
"reddit_count": 0,
"twitch_count": 103,
"youtube_count": 3885,
"reviews_text_count": 1,
"ratings_count": 16,
"suggestions_count": 239,
"alternative_names": [],
"metacritic_url": "",
"parents_count": 0,
"additions_count": 0,
"game_series_count": 0,
"user_game": null,
"reviews_count": 17,
"saturated_color": "0f0f0f",
"dominant_color": "0f0f0f",
"parent_platforms": [
{
"platform": {
"id": 1,
"name": "PC",
"slug": "pc"
}
},
{
"platform": {
"id": 5,
"name": "Apple Macintosh",
"slug": "mac"
}
},
{
"platform": {
"id": 6,
"name": "Linux",
"slug": "linux"
}
}
],
"platforms": [
{
"platform": {
"id": 5,
"name": "macOS",
"slug": "macos",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 46942,
"image_background": "https://media.rawg.io/media/games/198/1988a337305e008b41d7f536ce9b73f6.jpg"
},
"released_at": "2019-03-11",
"requirements": {
"minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Mac OS 10.7+<br></li><li><strong>Processor:</strong> Intel i5 Ivy Bridge<br></li><li><strong>Memory:</strong> 2 GB RAM<br></li><li><strong>Graphics:</strong> Intel Iris Pro Graphics<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>",
"recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Mac OS 10.9+<br></li><li><strong>Processor:</strong> Intel i5 Haswell<br></li><li><strong>Memory:</strong> 4 GB RAM<br></li><li><strong>Graphics:</strong> NVIDIA or AMD dedicated graphics with 1GB VRAM<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>"
}
},
{
"platform": {
"id": 4,
"name": "PC",
"slug": "pc",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 200646,
"image_background": "https://media.rawg.io/media/games/2c4/2c4ec7b64079b561667850593d23c417.jpg"
},
"released_at": "2019-03-11",
"requirements": {
"minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows XP, Vista, 7, 8, 10<br></li><li><strong>Processor:</strong> 1.4GHz processor or faster<br></li><li><strong>Memory:</strong> 2 GB RAM<br></li><li><strong>Graphics:</strong> Integrated graphics should be fine<br></li><li><strong>DirectX:</strong> Version 10<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>",
"recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows XP, Vista, 7, 8, 10<br></li><li><strong>Processor:</strong> 1.4GHz processor or faster<br></li><li><strong>Memory:</strong> 4 GB RAM<br></li><li><strong>Graphics:</strong> NVIDIA or AMD dedicated graphics with 1GB VRAM<br></li><li><strong>DirectX:</strong> Version 11<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>"
}
},
{
"platform": {
"id": 6,
"name": "Linux",
"slug": "linux",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 31290,
"image_background": "https://media.rawg.io/media/games/af7/af7a831001c5c32c46e950cc883b8cb7.jpg"
},
"released_at": "2019-03-11",
"requirements": {
"minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Ubuntu 14.04 / SteamOS<br></li><li><strong>Processor:</strong> Intel i5 Ivy Bridge<br></li><li><strong>Memory:</strong> 2 GB RAM<br></li><li><strong>Graphics:</strong> Intel Iris Pro Graphics<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>",
"recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Ubuntu 14.04 / SteamOS<br></li><li><strong>Processor:</strong> Intel i5 Haswell<br></li><li><strong>Memory:</strong> 4 GB RAM<br></li><li><strong>Graphics:</strong> NVIDIA or AMD dedicated graphics with 1GB VRAM<br></li><li><strong>Storage:</strong> 500 MB available space</li></ul>"
}
}
],
"stores": [
{
"id": 295831,
"url": "http://www.gog.com/game/hypnospace_outlaw",
"store": {
"id": 5,
"name": "GOG",
"slug": "gog",
"domain": "gog.com",
"games_count": 2483,
"image_background": "https://media.rawg.io/media/games/929/9295e55ce69cf5337c567983cf8b4137.jpeg"
}
},
{
"id": 55159,
"url": "https://store.steampowered.com/app/844590/",
"store": {
"id": 1,
"name": "Steam",
"slug": "steam",
"domain": "store.steampowered.com",
"games_count": 39758,
"image_background": "https://media.rawg.io/media/games/bc0/bc06a29ceac58652b684deefe7d56099.jpg"
}
}
],
"developers": [
{
"id": 11335,
"name": "Tendershoot",
"slug": "tendershoot",
"games_count": 2,
"image_background": "https://media.rawg.io/media/screenshots/6fd/6fdb00ba7c672b9e2bde347445bbbfe8.jpg"
},
{
"id": 31823,
"name": "Michael Lasch",
"slug": "michael-lasch",
"games_count": 1,
"image_background": "https://media.rawg.io/media/screenshots/360/36078436e66014b50adf8582811e6951.jpg"
},
{
"id": 31824,
"name": "ThatWhichIs Media",
"slug": "thatwhichis-media",
"games_count": 1,
"image_background": "https://media.rawg.io/media/screenshots/360/36078436e66014b50adf8582811e6951.jpg"
}
],
"genres": [
{
"id": 14,
"name": "Simulation",
"slug": "simulation",
"games_count": 33330,
"image_background": "https://media.rawg.io/media/games/a91/a911f0a91991469e398fa70091507a5b.jpg"
}
],
"tags": [
{
"id": 40847,
"name": "Steam Achievements",
"slug": "steam-achievements",
"language": "eng",
"games_count": 17553,
"image_background": "https://media.rawg.io/media/games/16b/16b1b7b36e2042d1128d5a3e852b3b2f.jpg"
},
{
"id": 141,
"name": "Point & Click",
"slug": "point-click",
"language": "eng",
"games_count": 4203,
"image_background": "https://media.rawg.io/media/games/283/283e7e600366b0da7021883d27159b27.jpg"
},
{
"id": 31,
"name": "Singleplayer",
"slug": "singleplayer",
"language": "eng",
"games_count": 63929,
"image_background": "https://media.rawg.io/media/games/81b/81b138691f027ed1f8720758daa0d895.jpg"
}
],
"publishers": [
{
"id": 16249,
"name": "No More Robots",
"slug": "no-more-robots",
"games_count": 6,
"image_background": "https://media.rawg.io/media/screenshots/cc4/cc4bb179065c693c65621f93655ec641.jpg"
}
],
"esrb_rating": null,
"clip": {
"clip": "https://media.rawg.io/media/stories-640/93a/93a0e73dd8dc38d35308e1476935c2c6.mp4",
"clips": {
"320": "https://media.rawg.io/media/stories-320/241/24184020ea53258f40ef2e5d372d3338.mp4",
"640": "https://media.rawg.io/media/stories-640/93a/93a0e73dd8dc38d35308e1476935c2c6.mp4",
"full": "https://media.rawg.io/media/stories/140/140589412501cfcea76fd96b05fe2def.mp4"
},
"video": "Pb4Jul496QE",
"preview": "https://media.rawg.io/media/stories-previews/6e9/6e95b3c2bc9cd02cd7fd22ab0063cd62.jpg"
},
"description_raw": "Greetings Enforcer, and thank you for enlisting in the Hypnospace Patrol Department! As the corporatocracy sleeps, outlaws are out there committing terrible transgressions all across our beloved Hypnospace, and these virtual streets aren't going to police themselves!\nHypnospace Outlaw is a a '90s internet simulator, that requires you scour the Hypnospace and hunt down wrongdoers, while also checking out a wide variety of weird and wonderful websites, keeping an eye on your work email, and downloading a plethora of apps that may or may not be useful.\nAs part of your job as a Hypnospace Enforcer, you'll be watching out for copyright infringement, internet bullying and more, with reports and rewards coming direct from the Hypnospace Patrol Department to your inbox. In your spare time, you can customize your HypnOS desktop however you see fit, with a variety of downloads, wallpapers, screen savers and helper bots to keep you company.\nSo slip on your Hypnospace Headband™, and keep these key directives in mind:\nCrawl through Cyberspace: Scour the darkest corners of the Web for scumbag users who violate Hypnospace law!\nDangers and delights: Download groovy GIFS and MIDI files, but watch out for adware, toolbars and hackers!\nTreasure hunting: Do your job to earn Hypnocoins, or ignore your inbox and go hunting for hidden pages, downloads and secrets!\nRelive your childhood: Equip obnoxious screensavers and skins for your desktop, and wiggle your mouse pointer around to make pages load faster!"
},
{
"id": 301539,
"slug": "islanders",
"name": "ISLANDERS",
"name_original": "ISLANDERS",
"description": "<p>A quick note from the developers:You want to build beautiful cities without investing hours on end into stressful resource management? Say no more! ISLANDERS should be right up your alley.<br />\nISLANDERS is a minimalist strategy game about building cities on colorful islands. Explore an infinite number of ever-changing new lands, expand your settlements from sprawling villages to vast cities and enjoy the relaxing atmosphere.<br />\nIf you’re thinking about buying ISLANDERS please keep in mind that we are a very passionate but small team of three. This is not a blockbuster experience with hours and hours of content. What we’d like to offer you is a simple game that lets anybody create and explore their own little worlds, while providing enough depth for players who want to challenge themselves. And you can get it at the price of a medium sized pumpkin spice matcha caramel latte.<br />\nPlease don't hesitate to contact us if you have feedback, questions, or problems with the game. We’ll do our best to get back to you as quickly as possible and provide support if needed. Also let us know if you enjoyed the game, because that makes our day!<br />\nThis game offers you:<br />\nIntuitive and rewarding city building gameplay<br />\nEndless amount of procedurally generated islands<br />\nA relaxing atmosphere<br />\nBeautiful, vibrant colors<br />\nGreat for playing every now and then, discovering some new islands and beating your high scoreThis game doesn’t have:<br />\nHelicopters<br />\nGuns<br />\nLootboxes<br />\nA cinematic story<br />\nHuge explosions (not even small ones actually)<br />\nOnline multiplayer<br />\nMicrotransactions<br />\nOrcsWanna know the specifics?<br />\nThe gameplay of ISLANDERS is pretty intuitive. You start with a set of buildings in your inventory that you can place on your island. Placing buildings is rewarded with points. The amount of points you get depends on what surrounds the buildings when you place them. Gather enough points to refill your inventory and unlock new buildings.<br />\nOnce your city is big enough you may choose to travel to the next island (they are generated procedurally, so you can literally keep exploring forever). If you run out of buildings the game ends. This is where you high five yourself for beating the high score, take a proud last glance at the epic city you've built and start just one more round...</p>",
"metacritic": null,
"released": "2019-04-04",
"tba": false,
"updated": "2019-09-17T06:57:51",
"background_image": "https://media.rawg.io/media/screenshots/a62/a62fb9a34ba7d37b87679387beabc970.jpg",
"background_image_additional": "https://media.rawg.io/media/screenshots/782/78234b0314f3ec419c03bf7435fedaa8.jpg",
"website": "",
"rating": 3.71,
"rating_top": 4,
"ratings": [
{
"id": 4,
"title": "recommended",
"count": 45,
"percent": 77.59
},
{
"id": 3,
"title": "meh",
"count": 9,
"percent": 15.52
},
{
"id": 1,
"title": "skip",
"count": 3,
"percent": 5.17
},
{
"id": 5,
"title": "exceptional",
"count": 1,
"percent": 1.72
}
],
"reactions": {
"2": 1,
"7": 1
},
"added": 344,
"added_by_status": {
"yet": 10,
"owned": 248,
"beaten": 24,
"toplay": 37,
"dropped": 19,
"playing": 6
},
"playtime": 2,
"screenshots_count": 8,
"movies_count": 0,
"creators_count": 0,
"achievements_count": 26,
"parent_achievements_count": 26,
"reddit_url": "",
"reddit_name": "",
"reddit_description": "",
"reddit_logo": "",
"reddit_count": 0,
"twitch_count": 107,
"youtube_count": 318096,
"reviews_text_count": 1,
"ratings_count": 57,
"suggestions_count": 205,
"alternative_names": [],
"metacritic_url": "",
"parents_count": 0,
"additions_count": 0,
"game_series_count": 0,
"user_game": null,
"reviews_count": 58,
"saturated_color": "0f0f0f",
"dominant_color": "0f0f0f",
"parent_platforms": [
{
"platform": {
"id": 1,
"name": "PC",
"slug": "pc"
}
},
{
"platform": {
"id": 5,
"name": "Apple Macintosh",
"slug": "mac"
}
},
{
"platform": {
"id": 6,
"name": "Linux",
"slug": "linux"
}
}
],
"platforms": [
{
"platform": {
"id": 4,
"name": "PC",
"slug": "pc",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 200646,
"image_background": "https://media.rawg.io/media/games/2c4/2c4ec7b64079b561667850593d23c417.jpg"
},
"released_at": "2019-04-04",
"requirements": {
"minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows 7, 8 or 10<br></li><li><strong>Processor:</strong> Intel Core i3 2.00 GHz or AMD equivalent<br></li><li><strong>Memory:</strong> 2 GB RAM<br></li><li><strong>Graphics:</strong> Nvidia GeForce GTX950<br></li><li><strong>Storage:</strong> 200 MB available space<br></li><li><strong>Sound Card:</strong> We don't really think you need one. Just humming your favorite tune while playing is perfectly fine.</li></ul>",
"recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows 10<br></li><li><strong>Processor:</strong> Intel Core i5 3.00GHz or AMD equivalent<br></li><li><strong>Memory:</strong> 4 GB RAM<br></li><li><strong>Graphics:</strong> Nvidia GeForce GTX970</li></ul>"
}
},
{
"platform": {
"id": 5,
"name": "macOS",
"slug": "macos",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 46942,
"image_background": "https://media.rawg.io/media/games/198/1988a337305e008b41d7f536ce9b73f6.jpg"
},
"released_at": "2019-04-04",
"requirements": null
},
{
"platform": {
"id": 6,
"name": "Linux",
"slug": "linux",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 31290,
"image_background": "https://media.rawg.io/media/games/af7/af7a831001c5c32c46e950cc883b8cb7.jpg"
},
"released_at": "2019-04-04",
"requirements": null
}
],
"stores": [
{
"id": 302625,
"url": "https://store.steampowered.com/app/1046030/",
"store": {
"id": 1,
"name": "Steam",
"slug": "steam",
"domain": "store.steampowered.com",
"games_count": 39758,
"image_background": "https://media.rawg.io/media/games/bc0/bc06a29ceac58652b684deefe7d56099.jpg"
}
}
],
"developers": [
{
"id": 24296,
"name": "GrizzlyGames",
"slug": "grizzlygames",
"games_count": 2,
"image_background": "https://media.rawg.io/media/screenshots/a62/a62fb9a34ba7d37b87679387beabc970.jpg"
}
],
"genres": [
{
"id": 10,
"name": "Strategy",
"slug": "strategy",
"games_count": 27116,
"image_background": "https://media.rawg.io/media/screenshots/4f4/4f4722571e32954af43a4508607c1748.jpg"
},
{
"id": 40,
"name": "Casual",
"slug": "casual",
"games_count": 24474,
"image_background": "https://media.rawg.io/media/games/bbf/bbf8d74ab64440ad76294cff2f4d9cfa.jpg"
},
{
"id": 51,
"name": "Indie",
"slug": "indie",
"games_count": 28288,
"image_background": "https://media.rawg.io/media/games/dd5/dd50d4266915d56dd5b63ae1bf72606a.jpg"
}
],
"tags": [
{
"id": 13,
"name": "Atmospheric",
"slug": "atmospheric",
"language": "eng",
"games_count": 7031,
"image_background": "https://media.rawg.io/media/games/b7d/b7d3f1715fa8381a4e780173a197a615.jpg"
},
{
"id": 39,
"name": "Building",
"slug": "building",
"language": "eng",
"games_count": 2325,
"image_background": "https://media.rawg.io/media/screenshots/570/5704316c673fab6994db582e0f43f924.jpg"
},
{
"id": 213,
"name": "City Builder",
"slug": "city-builder",
"language": "eng",
"games_count": 683,
"image_background": "https://media.rawg.io/media/games/ce6/ce6c9b58be2ca76688a768cffcb043d1.jpg"
},
{
"id": 165,
"name": "Colorful",
"slug": "colorful",
"language": "eng",
"games_count": 4878,
"image_background": "https://media.rawg.io/media/games/2eb/2eb8f1b4787c3beaa568bc52c0580cba.jpg"
},
{
"id": 112,
"name": "Minimalist",
"slug": "minimalist",
"language": "eng",
"games_count": 4860,
"image_background": "https://media.rawg.io/media/screenshots/c16/c1681d229d4f1408f6aef81168b56e8b.jpeg"
},
{
"id": 196,
"name": "Procedural Generation",
"slug": "procedural-generation",
"language": "eng",
"games_count": 2678,
"image_background": "https://media.rawg.io/media/screenshots/fef/fefb9cd7cedb7bf1c2e69f159edb1272.jpg"
},
{
"id": 138,
"name": "Relaxing",
"slug": "relaxing",
"language": "eng",
"games_count": 3099,
"image_background": "https://media.rawg.io/media/screenshots/dc2/dc2814dc50d61be1ea4fcd5d3c03ddb6.jpg"
},
{
"id": 5,
"name": "Replay Value",
"slug": "replay-value",
"language": "eng",
"games_count": 684,
"image_background": "https://media.rawg.io/media/games/476/476178ef18ab0534771d099f51cdc694.jpg"
},
{
"id": 54,
"name": "Score Attack",
"slug": "score-attack",
"language": "eng",
"games_count": 990,
"image_background": "https://media.rawg.io/media/screenshots/fef/fefee32869b3e8c909f9ec68aa99f78d.jpg"
},
{
"id": 31,
"name": "Singleplayer",
"slug": "singleplayer",
"language": "eng",
"games_count": 63929,
"image_background": "https://media.rawg.io/media/games/81b/81b138691f027ed1f8720758daa0d895.jpg"
},
{
"id": 61,
"name": "Top-Down",
"slug": "top-down",
"language": "eng",
"games_count": 5444,
"image_background": "https://media.rawg.io/media/screenshots/c37/c3739a39b6c595cfeb1301af7604a609.jpg"
},
{
"id": 102,
"name": "Turn-Based",
"slug": "turn-based",
"language": "eng",
"games_count": 2443,
"image_background": "https://media.rawg.io/media/games/66e/66e90c9d7b9a17335b310ceb294e9365.jpg"
},
{
"id": 101,
"name": "Turn-Based Strategy",
"slug": "turn-based-strategy",
"language": "eng",
"games_count": 1459,
"image_background": "https://media.rawg.io/media/screenshots/2d1/2d1569d7a321c0315f340a944dfa1a41.jpg"
},
{
"id": 571,
"name": "3D",
"slug": "3d",
"language": "eng",
"games_count": 16800,
"image_background": "https://media.rawg.io/media/screenshots/4d5/4d558909512d99baeca227b50ff34595.jpg"
},
{
"id": 577,
"name": "Beautiful",
"slug": "beautiful",
"language": "eng",
"games_count": 1228,
"image_background": "https://media.rawg.io/media/screenshots/ea6/ea69355d7ba2f55ea01065202878ccc3.jpg"
},
{
"id": 579,
"name": "Addictive",
"slug": "addictive",
"language": "eng",
"games_count": 689,
"image_background": "https://media.rawg.io/media/screenshots/c0f/c0fd26429b2027114d94c535c0248794.jpg"
}
],
"publishers": [
{
"id": 17990,
"name": "GrizzlyGames",
"slug": "grizzlygames",
"games_count": 2,
"image_background": "https://media.rawg.io/media/screenshots/a62/a62fb9a34ba7d37b87679387beabc970.jpg"
}
],
"esrb_rating": null,
"clip": {
"clip": "https://media.rawg.io/media/stories-640/013/0134c2c769e871c88dfb867eb7d75c2f.mp4",
"clips": {
"320": "https://media.rawg.io/media/stories-320/394/394ca72952ae6647e8bc12c9e60442c9.mp4",
"640": "https://media.rawg.io/media/stories-640/013/0134c2c769e871c88dfb867eb7d75c2f.mp4",
"full": "https://media.rawg.io/media/stories/90b/90b937716dcc85882273a5d1a7ae5cfa.mp4"
},
"video": "M54C9T5BOEU",
"preview": "https://media.rawg.io/media/stories-previews/f12/f127c4c55fa58fda99bdaa06e0761905.jpg"
},
"description_raw": "A quick note from the developers:You want to build beautiful cities without investing hours on end into stressful resource management? Say no more! ISLANDERS should be right up your alley.\nISLANDERS is a minimalist strategy game about building cities on colorful islands. Explore an infinite number of ever-changing new lands, expand your settlements from sprawling villages to vast cities and enjoy the relaxing atmosphere.\nIf you’re thinking about buying ISLANDERS please keep in mind that we are a very passionate but small team of three. This is not a blockbuster experience with hours and hours of content. What we’d like to offer you is a simple game that lets anybody create and explore their own little worlds, while providing enough depth for players who want to challenge themselves. And you can get it at the price of a medium sized pumpkin spice matcha caramel latte.\nPlease don't hesitate to contact us if you have feedback, questions, or problems with the game. We’ll do our best to get back to you as quickly as possible and provide support if needed. Also let us know if you enjoyed the game, because that makes our day!\nThis game offers you:\nIntuitive and rewarding city building gameplay\nEndless amount of procedurally generated islands\nA relaxing atmosphere\nBeautiful, vibrant colors\nGreat for playing every now and then, discovering some new islands and beating your high scoreThis game doesn’t have:\nHelicopters\nGuns\nLootboxes\nA cinematic story\nHuge explosions (not even small ones actually)\nOnline multiplayer\nMicrotransactions\nOrcsWanna know the specifics?\nThe gameplay of ISLANDERS is pretty intuitive. You start with a set of buildings in your inventory that you can place on your island. Placing buildings is rewarded with points. The amount of points you get depends on what surrounds the buildings when you place them. Gather enough points to refill your inventory and unlock new buildings.\nOnce your city is big enough you may choose to travel to the next island (they are generated procedurally, so you can literally keep exploring forever). If you run out of buildings the game ends. This is where you high five yourself for beating the high score, take a proud last glance at the epic city you've built and start just one more round..."
},
{
"id": 58754,
"slug": "division-2",
"name": "Tom Clancy’s The Division 2",
"name_original": "Tom Clancy’s The Division 2",
"description": "<p>Tom Clancy's The Division 2 is the sequel to the 2016 Tom Clancy's The Division. The game is inspired by the Tom Clancy political thriller books.</p>\n<h3>Plot</h3>\n<p>The game is set in the ruins of Washington D.C. in the near future, some seven months after the events of the original game. The smallpox epidemic devastated much of the United States, leaving it with multiple contamination zones. A civil war breaks out among the factions of survivors as the gangs of raiders terrorize the capital. The main characters are the elite members of the Strategic Homeland Division. Their task is to bring law and order back to Washington.</p>\n<h3>Gameplay</h3>\n<p>The player controls his or her Division agent from the third person view. The game is set in an open world modeled after the real Washington D.C., including all of its famous landmarks. Tom Clancy's The Division 2 combines elements of tactical shooters and role-playing games. The agents have customizable abilities, weapons, and tools, and can level up. When they reach level 30, they receive a specialization: Survivalist, Demolitionist, or Sharpshooter. The game also unlocks new co-op missions.</p>\n<h3>Modes</h3>\n<p>Besides the story campaign mode, the game has two multiplayer modes: player versus player and cooperative. Up to eight players can join forces on a raid.</p>",
"metacritic": null,
"released": "2019-03-15",
"tba": false,
"updated": "2019-10-23T14:57:04",
"background_image": "https://media.rawg.io/media/games/f50/f508d531f14694d2bbe172df48defcfd.jpg",
"background_image_additional": "https://media.rawg.io/media/screenshots/23a/23aef534465141a566eceba34270f9b8_W17ZTdg.jpg",
"website": "https://tomclancy-thedivision.ubisoft.com/game/en-us/home",
"rating": 3.89,
"rating_top": 4,
"ratings": [
{
"id": 4,
"title": "recommended",
"count": 169,
"percent": 57.88
},
{
"id": 5,
"title": "exceptional",
"count": 60,
"percent": 20.55
},
{
"id": 3,
"title": "meh",
"count": 48,
"percent": 16.44
},
{
"id": 1,
"title": "skip",
"count": 15,
"percent": 5.14
}
],
"reactions": {
"8": 2,
"11": 1,
"16": 1
},
"added": 1072,
"added_by_status": {
"yet": 38,
"owned": 654,
"beaten": 78,
"toplay": 144,
"dropped": 70,
"playing": 88
},
"playtime": 0,
"screenshots_count": 18,
"movies_count": 0,
"creators_count": 0,
"achievements_count": 71,
"parent_achievements_count": 66,
"reddit_url": "",
"reddit_name": "",
"reddit_description": "",
"reddit_logo": "",
"reddit_count": 0,
"twitch_count": 101,
"youtube_count": 1000000,
"reviews_text_count": 1,
"ratings_count": 291,
"suggestions_count": 660,
"alternative_names": [],
"metacritic_url": "https://www.metacritic.com/game/playstation-4/tom-clancys-the-division-2",
"parents_count": 0,
"additions_count": 0,
"game_series_count": 1,
"user_game": null,
"reviews_count": 292,
"saturated_color": "0f0f0f",
"dominant_color": "0f0f0f",
"parent_platforms": [
{
"platform": {
"id": 1,
"name": "PC",
"slug": "pc"
}
},
{
"platform": {
"id": 2,
"name": "PlayStation",
"slug": "playstation"
}
},
{
"platform": {
"id": 3,
"name": "Xbox",
"slug": "xbox"
}
}
],
"platforms": [
{
"platform": {
"id": 4,
"name": "PC",
"slug": "pc",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 200646,
"image_background": "https://media.rawg.io/media/games/2c4/2c4ec7b64079b561667850593d23c417.jpg"
},
"released_at": "2019-03-15",
"requirements": null
},
{
"platform": {
"id": 18,
"name": "PlayStation 4",
"slug": "playstation4",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 4440,
"image_background": "https://media.rawg.io/media/games/b7d/b7d3f1715fa8381a4e780173a197a615.jpg"
},
"released_at": "2019-03-15",
"requirements": null
},
{
"platform": {
"id": 1,
"name": "Xbox One",
"slug": "xbox-one",
"image": null,
"year_end": null,
"year_start": null,
"games_count": 3030,